diff options
Diffstat (limited to 'abump.in')
-rwxr-xr-x | abump.in | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -26,10 +26,16 @@ do_bump() { fi msg="$section/$pkgname: $upgrade to ${pkgver}${cve}" + if [ -n "$fixes" ]; then + msg="$msg + +fixes #${fixes#\#} +" + fi echo "$msg" - + ( . ./APKBUILD; type package | grep -q function ) || die "package() missing" - + sed -i -e "s/^pkgver=.*/pkgver=$pkgver/" \ -e "s/^pkgrel=.*/pkgrel=0/" \ APKBUILD @@ -42,19 +48,21 @@ do_bump() { usage() { echo "$program - utility to bump pkgver in APKBUILDs" - echo "usage: $program [-hR] [-s CVE-1,CVE-2,...]" + echo "usage: $program [-hR] [-s CVE-1,CVE-2,...] [-f ISSUE]" echo "" echo " -h show this help" echo " -R run abuild with -R for recursive building" echo " -k keep existing packages" echo " -s security update" + echo " -f fixes ISSUE" exit 0 } keep= recursive="-r" -while getopts "hkRs:" opt; do +while getopts "f:hkRs:" opt; do case $opt in + f) fixes="${OPTARG}";; h) usage;; k) keep="-k";; R) recursive="-R";; |