Date: Fri, 19 Oct 2012 14:49:25 +0000 (UTC) From: Erwin Lansing <erwin@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306125 - head/Tools/scripts Message-ID: <201210191449.q9JEnPU1015439@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@FreeBSD.org < .latest_mail else cat .latest_mail fi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210191449.q9JEnPU1015439>