Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-08-23 | replace deprecated `...` syntax with $(...) in shell scripts | Jakub Jirutka | 1 | -2/+2 | |
2016-08-23 | indent heredocs when possible | Jakub Jirutka | 1 | -12/+12 | |
2016-08-20 | add .editorconfig and fix code formatting | Jakub Jirutka | 1 | -1/+0 | |
2015-09-28 | abump: ability to override abuild command | Eivind Uggedal | 1 | -1/+3 | |
2014-10-30 | abump: fix bumping repo/name-<version> | Natanael Copa | 1 | -0/+1 | |
2014-10-30 | abump: die if version is missing | Natanael Copa | 1 | -0/+3 | |
2014-03-31 | fix permissions | Natanael Copa | 1 | -0/+0 | |
2013-10-25 | functions: rename abuild_ver to program_version | Natanael Copa | 1 | -2/+2 | |
2013-10-25 | functions: rename prog to program | Natanael Copa | 1 | -3/+4 | |
2013-07-26 | abump: error out on first faild package | Natanael Copa | 1 | -7/+11 | |
If some package fails, then stop processing the rest. This is so we don't risk test build the rest for the packages against wrong lib. For example, if 'abump libfoo-2.0 foo-2.0' fails on libfoo, we don't want testbuild foo-2.0, which might end with success against libfoo-1. We also echo the list of packages that was not bumped, so its easy to copy/paste next run. | |||||
2013-07-22 | abump: print what packages failed | Natanael Copa | 1 | -3/+9 | |
2013-07-19 | abump: fix the -f/--fixes option | Natanael Copa | 1 | -1/+1 | |
2013-07-10 | abump: fix set -e issue | Natanael Copa | 1 | -12/+13 | |
It appears that when the subshell has a ||, the 'set -e' within subshell gets invalidated. This will work as expected: ( set -e; false; echo "should not get here" ) While this will not work as expected: ( set -e; false; echo "should not get here" ) || false We resolve it by using $? to detect the status of subshell. We also let the exitcode indicate how many packages that failed. While here we also refactor it so most of the loop happens within the subshell. This lets us set (or increase) rc variable once, and it reduces number of forks which gives slightly better performance. | |||||
2013-07-10 | Revert "abump: verify APKBUILD's version" | Natanael Copa | 1 | -6/+0 | |
We actually want be able to re-run abump without needing reset the pkgver in case we had to fix things. This reverts commit 8198ded868d4b7b98f8d06a2f0f0d90eaf2ad9da. Conflicts: abump.in | |||||
2013-07-09 | abump: add missing " | Natanael Copa | 1 | -1/+1 | |
2013-07-09 | various: s/echo/msg/, s/echo/error/, tweak error messages | Dubiousjim | 1 | -5/+5 | |
2013-07-09 | abump: verify that we're in git tree | Dubiousjim | 1 | -0/+1 | |
2013-07-09 | abump: verify APKBUILD's version | Dubiousjim | 1 | -0/+6 | |
2013-07-09 | abump: refactor verification of APKBUILD | Dubiousjim | 1 | -9/+14 | |
* includes renaming pkgname, pkgver | |||||
2013-07-09 | abump, functions: refactor (and verify) calculation of APKBUILD path | Dubiousjim | 1 | -1/+11 | |
2013-07-09 | abump: tweak upgrade/cvelist | Dubiousjim | 1 | -8/+5 | |
2013-07-09 | abump: move loop inside do_bump, refine locals, introduce subshell | Dubiousjim | 1 | -33/+33 | |
2013-07-09 | various: use long options, rework usages | Dubiousjim | 1 | -17/+36 | |
2013-07-09 | various: move conf-loading and i/o to functions | Dubiousjim | 1 | -10/+13 | |
2013-07-08 | various: add descriptions, attribution, license | Dubiousjim | 1 | -0/+6 | |
2013-02-14 | abump: add option -f to set "fixes" in commit message | Natanael Copa | 1 | -4/+12 | |
2012-02-14 | abump: add -s option for security updates | Natanael Copa | 1 | -6/+12 | |
2011-09-30 | abump: add -k option to keep existing built packages | Natanael Copa | 1 | -3/+8 | |
2010-11-19 | abump: add usage and support for recursive abuild | Natanael Copa | 1 | -2/+23 | |
2010-11-19 | abump: install with make install | Natanael Copa | 1 | -0/+40 | |