svn commit: r306125 - head/Tools/scripts

Erwin Lansing erwin at FreeBSD.org
Fri Oct 19 14:49:26 UTC 2012


Author: erwin
Date: Fri Oct 19 14:49:25 2012
New Revision: 306125
URL: http://svn.freebsd.org/changeset/ports/306125

Log:
  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

Modified:
  head/Tools/scripts/check-latest-link

Modified: head/Tools/scripts/check-latest-link
==============================================================================
--- head/Tools/scripts/check-latest-link	Fri Oct 19 14:26:05 2012	(r306124)
+++ head/Tools/scripts/check-latest-link	Fri Oct 19 14:49:25 2012	(r306125)
@@ -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 
   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 at FreeBSD.org < .latest_mail
 else
   cat .latest_mail
 fi


More information about the svn-ports-all mailing list