diff options
author | Meitar M <meitarm@gmail.com> | 2019-07-12 01:51:40 +0000 |
---|---|---|
committer | Meitar M <meitarm@gmail.com> | 2019-07-12 01:51:40 +0000 |
commit | ca6baeedd791f557c5aaf7433329b1fc6ac6c73a (patch) | |
tree | 3438c2d84e8c8b7efc73b005ed9236e2092b62b2 /Makefile | |
parent | Add LeapChat. (diff) | |
parent | Merge pull request #1735 from benabbottnz/patch-1 (diff) | |
download | awesome-selfhosted-ca6baeedd791f557c5aaf7433329b1fc6ac6c73a.tar.gz awesome-selfhosted-ca6baeedd791f557c5aaf7433329b1fc6ac6c73a.zip |
Merge branch 'upstream-master'
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 18 |
1 files changed, 14 insertions, 4 deletions
@@ -4,6 +4,8 @@ all: checks checks: nolicenselanguage nofullstop longdescriptions syntaxerrors +monthly: checks awesome_bot check_github_commit_dates contrib + noexternallink: @echo -e "\nLines with no source/demo/other link:" @sed -n -e '/BEGIN SOFTWARE LIST/,/END SOFTWARE LIST/ p' README.md | egrep '^ *\* ' | egrep --color=always '[a-z\.] `' @@ -21,17 +23,25 @@ longdescriptions: @echo -e "\nDescriptions exceeding 250 chars:" @! sed -n -e '/BEGIN SOFTWARE LIST/,/END SOFTWARE LIST/ p' README.md | egrep --only-matching '\) - [Aa-Zz|.|\(|\)|/| |,|-]*\s\(\[' README.md | grep '.\{257\}' -listlicenses: - @echo -e "\nList of licenses:" - @sed -n -e '/BEGIN SOFTWARE LIST/,/END SOFTWARE LIST/ p' README.md | egrep --only-matching '([Aa0-Zz9]|\s|\.|-)*` `' README.md | sort --unique - syntaxerrors: @echo -e "\nSyntax errors:" @! sed -n -e '/BEGIN SOFTWARE LIST/,/END SOFTWARE LIST/ p' README.md | egrep '\)\(|``|\)`' +################################# + contrib: @mv .github/.mailmap . && printf "|Commits | Author |\n| :---: | --- |\n" > AUTHORS.md && git shortlog -sne | sed -r 's/^\s*([[:digit:]]*?)\s*?(.*?)/|\1|\2|/' >> AUTHORS.md && mv .mailmap .github/.mailmap +awesome_bot: + # https://github.com/dkhamsing/awesome_bot + awesome_bot --allow-redirect -f README.md + +check_github_commit_dates: + python3 tests/check-github-commit-dates.py + +################################# + + add: @#add a new entry @printf 'Software name: ' ;\ |