summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorErwin Lansing <erwin@FreeBSD.org>2012-10-19 14:49:25 +0000
committerErwin Lansing <erwin@FreeBSD.org>2012-10-19 14:49:25 +0000
commit5624d82eb2d4c89368953cae9f6d79f9f1e678e9 (patch)
tree4dcc7d51e705abde891d021e0605421db5183b52 /Tools
parent- Update to 0.15.0 (diff)
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
Diffstat (limited to 'Tools')
-rw-r--r--Tools/scripts/check-latest-link7
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