Index: user/cperciva/freebsd-update-build/scripts/print-supported.sh =================================================================== --- user/cperciva/freebsd-update-build/scripts/print-supported.sh (nonexistent) +++ user/cperciva/freebsd-update-build/scripts/print-supported.sh (revision 293367) @@ -0,0 +1,14 @@ +#!/bin/sh + +export TZ=UTC +now=$(date +%s) + +cd /usr/freebsd-update-server || exit 1 +find scripts -type f -name build.conf | while read conf ; do + rel=$(expr "$conf" : 'scripts/\([0-9][0-9]*\.[0-9][0-9]*-[A-Z0-9-]*\)/.*') + eol=$(. $conf ; echo $EOL) + expr "$eol" : '[0-9][0-9]*' >/dev/null || continue + [ $eol -gt $now ] || continue + p=$(find patches/"$rel" -type f | cut -d/ -f3- | cut -d- -f1 | sort -n | tail -1) + echo $(date -j -r $eol +'%Y-%m-%d %H:%M:%S UTC') "$rel${p:+-p$p}" +done | sort -t" " -k4 -rn Property changes on: user/cperciva/freebsd-update-build/scripts/print-supported.sh ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property