Import of pkgsrc-2015Q2

This commit is contained in:
2015-08-30 02:56:09 -07:00
committed by Lionel Sambuc
parent 4af1cdf7a9
commit f641581404
15409 changed files with 267784 additions and 121624 deletions

View File

@@ -1,5 +1,12 @@
#! /bin/sh
${PKG_INFO} | sort | mail -s "`hostname` `${UNAME} -s`-`${UNAME} -p`-`${UNAME} -r`" agc-pkgsurvey@pkgsrc.org
${PKG_INFO} -e '*' | while read pkg; do
path=`${PKG_INFO} -Q PKGPATH "$pkg"`
automatic=`${PKG_INFO} -Q automatic "$pkg"`
if [ -z "$automatic" ]; then
automatic=no
fi
echo "$path $pkg $automatic"
done | sort | mail -s "`hostname` `${UNAME} -s`-`${UNAME} -p`-`${UNAME} -r`" pkgsurvey1.0@pkgsrc.org
exit 0