summaryrefslogtreecommitdiffstats
path: root/abump.in
Commit message (Collapse)AuthorAgeFilesLines
* replace deprecated `...` syntax with $(...) in shell scriptsJakub Jirutka2016-08-231-2/+2
|
* indent heredocs when possibleJakub Jirutka2016-08-231-12/+12
|
* add .editorconfig and fix code formattingJakub Jirutka2016-08-201-1/+0
|
* abump: ability to override abuild commandEivind Uggedal2015-09-281-1/+3
|
* abump: fix bumping repo/name-<version>Natanael Copa2014-10-301-0/+1
|
* abump: die if version is missingNatanael Copa2014-10-301-0/+3
|
* fix permissionsNatanael Copa2014-03-311-0/+0
|
* functions: rename abuild_ver to program_versionNatanael Copa2013-10-251-2/+2
|
* functions: rename prog to programNatanael Copa2013-10-251-3/+4
|
* abump: error out on first faild packageNatanael Copa2013-07-261-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.
* abump: print what packages failedNatanael Copa2013-07-221-3/+9
|
* abump: fix the -f/--fixes optionNatanael Copa2013-07-191-1/+1
|
* abump: fix set -e issueNatanael Copa2013-07-101-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.
* Revert "abump: verify APKBUILD's version"Natanael Copa2013-07-101-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
* abump: add missing "Natanael Copa2013-07-091-1/+1
|
* various: s/echo/msg/, s/echo/error/, tweak error messagesDubiousjim2013-07-091-5/+5
|
* abump: verify that we're in git treeDubiousjim2013-07-091-0/+1
|
* abump: verify APKBUILD's versionDubiousjim2013-07-091-0/+6
|
* abump: refactor verification of APKBUILDDubiousjim2013-07-091-9/+14
| | | | * includes renaming pkgname, pkgver
* abump, functions: refactor (and verify) calculation of APKBUILD pathDubiousjim2013-07-091-1/+11
|
* abump: tweak upgrade/cvelistDubiousjim2013-07-091-8/+5
|
* abump: move loop inside do_bump, refine locals, introduce subshellDubiousjim2013-07-091-33/+33
|
* various: use long options, rework usagesDubiousjim2013-07-091-17/+36
|
* various: move conf-loading and i/o to functionsDubiousjim2013-07-091-10/+13
|
* various: add descriptions, attribution, licenseDubiousjim2013-07-081-0/+6
|
* abump: add option -f to set "fixes" in commit messageNatanael Copa2013-02-141-4/+12
|
* abump: add -s option for security updatesNatanael Copa2012-02-141-6/+12
|
* abump: add -k option to keep existing built packagesNatanael Copa2011-09-301-3/+8
|
* abump: add usage and support for recursive abuildNatanael Copa2010-11-191-2/+23
|
* abump: install with make installNatanael Copa2010-11-191-0/+40