diff options
author | Erwin Lansing <erwin@FreeBSD.org> | 2012-10-19 14:49:25 +0000 |
---|---|---|
committer | Erwin Lansing <erwin@FreeBSD.org> | 2012-10-19 14:49:25 +0000 |
commit | 5624d82eb2d4c89368953cae9f6d79f9f1e678e9 (patch) | |
tree | 4dcc7d51e705abde891d021e0605421db5183b52 | |
parent | 3f8ef66a18a62d9e0261e4d266216b5cc663a58d (diff) | |
download | ports-5624d82eb2d4c89368953cae9f6d79f9f1e678e9.tar.gz ports-5624d82eb2d4c89368953cae9f6d79f9f1e678e9.zip |
Sync with the version that's currently running on pointyhat:
- be less verbose to be more friendly to running from cron
- I've been running this script for several years now,
not Kris
- Send me a copy of the output for debugging
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=306125
-rw-r--r-- | Tools/scripts/check-latest-link | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Tools/scripts/check-latest-link b/Tools/scripts/check-latest-link index b72141e926af..84ebc358aca2 100644 --- a/Tools/scripts/check-latest-link +++ b/Tools/scripts/check-latest-link @@ -25,7 +25,6 @@ CATEGORIES=$(make -V SUBDIR) for cat in ${CATEGORIES}; do cd ${PORTSDIR}/${cat} dirs=$(make -V SUBDIR) - echo "==> ${cat}" 1>&2 make "PORTSDIR=${PORTSDIR}" "CATEGORY=${cat}" "DIRS=${dirs}" -k -j3 -f - << "EOF" all: ${DIRS:S/$/.portinfo/} @@ -55,7 +54,9 @@ maint=$(awk '{print $2}' < .latest_full | sort -ui | tr '\n' ',') echo echo echo "Thanks," - echo "Kris \"Annoying Reminder Guy II\" Kennaway" + echo "Erwin \"Annoying Reminder Guy III\" Lansing" + echo + echo printf "%-20s %-30s %-20s\n" "LATEST_LINK" "PORTNAME" "MAINTAINER" echo "==========================================================================" @@ -71,6 +72,8 @@ if [ "${NOMAIL}" = "0" ]; then for i in ${maint}; do mail -s "Ports with duplicate LATEST_LINKs" $i < .latest_mail done + # Copy to erwin@ + mail -s "Ports with duplicate LATEST_LINKs" erwin@FreeBSD.org < .latest_mail else cat .latest_mail fi |