From 2322f5ce55150d5994a3dc1766e256b0f87fb2ff Mon Sep 17 00:00:00 2001 From: nodiscc Date: Sun, 16 Jul 2023 17:49:15 +0200 Subject: [PATCH] tools/makefile: add make authors target (update AUTHORS file) - update documentation --- .github/.mailmap | 12 ------------ Makefile | 5 +++++ README.md | 2 ++ 3 files changed, 7 insertions(+), 12 deletions(-) delete mode 100644 .github/.mailmap diff --git a/.github/.mailmap b/.github/.mailmap deleted file mode 100644 index 854bc2bf9a..0000000000 --- a/.github/.mailmap +++ /dev/null @@ -1,12 +0,0 @@ -Kickball -Andrew Rylatt Andrew Rylatt -Andrew Rylatt -Andrew Rylatt -Andrew Rylatt -n8225 -Thomas Dalichow <2012-02-05.github.com@thomasdalichow.de> -Keith Thibodeaux Keith Thibodeaux -Madhu GB Madhu GB -Miguel Piedrafita -Pavel Lobashov Pavel Lobashov -Stefan Bohacek Stefan Bohacek diff --git a/Makefile b/Makefile index e1bffd15a8..5587448b69 100644 --- a/Makefile +++ b/Makefile @@ -39,6 +39,11 @@ url_check: install source .venv/bin/activate && \ hecat --config .hecat/url-check.yml +.PHONY: authors # update the AUTHORS file +authors: + printf "Commits|Author\n-------|---------------------------------------------------\n" > AUTHORS + git shortlog -sne >> AUTHORS + .PHONY: help # generate list of targets with descriptions help: @grep '^.PHONY: .* #' Makefile | sed 's/\.PHONY: \(.*\) # \(.*\)/\1 \2/' | expand -t20 diff --git a/README.md b/README.md index 5ceb987cd8..07e7ef70d2 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,8 @@ import import data from original list at https://github.com/awesome update_metadata update metadata from project repositories/API awesome_lint check data against awesome-selfhosted guidelines export export markdown singlepage document from yaml data +url_check check URLs for dead links or other connection problems +authors update the AUTHORS file help generate list of targets with descriptions ```