adding notes, added bugtracker info, etc.

This commit is contained in:
brent s
2016-06-25 17:29:16 -04:00
parent 1e2a81d298
commit c2a38e43cb
45 changed files with 55 additions and 44 deletions

11
notes Normal file
View File

@@ -0,0 +1,11 @@
to do updates on ALL pkgbuilds (meta stuff), you'll want to increment the pkgrel:
for i in $(find ./ -type f -name PKGBUILD);
do
PKGVER=$(egrep '^pkgrel=' ${i} | cut -f2 -d"=" | sed -e "s/'//g" -e 's/"//g' -e 's/[[:space:]]*//g')
PKGVER=$((PKGVER+1))
sed -i -e "s/^pkgrel=.*$/pkgrel=${PKGVER}/g" ${i}
done
similar loops can help with e.g. adding PGP keys, etc.