summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* abuild: verify: only check strongest checksum which is presentTimo Teräs2013-07-191-1/+2
|
* abuild: set CARCH and CLIBC always, guess from CHOST if not setTimo Teräs2013-07-191-5/+23
|
* abuild: use versioned depends for -dev subpackageNatanael Copa2013-07-161-2/+2
|
* ==== release 2.15.0 ====v2.15.0Natanael Copa2013-07-121-1/+1
|
* ap: switch to lua 5.2Natanael Copa2013-07-122-3/+5
|
* 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
* build: make sure functions.sh gets generated at build timeNatanael Copa2013-07-101-2/+2
|
* abump: add missing "Natanael Copa2013-07-091-1/+1
|
* functions: msg should always return successNatanael Copa2013-07-091-2/+6
| | | | Otherwise abuild-sign will end with error
* functions: also honor .abuild file at gitbaseDubiousjim2013-07-091-0/+2
| | | | | This permits introducing branch-specific modifications to abuild.conf settings. Any settings there override /etc/abuild.conf and $HOME/.abuild/abuild.conf.
* various: fancier readconfig, permit env overridesDubiousjim2013-07-094-24/+71
|
* apkgrel, functions: refactor calculation of APKBUILD's pathDubiousjim2013-07-092-3/+23
|
* various: s/echo/msg/, s/echo/error/, tweak error messagesDubiousjim2013-07-096-18/+16
|
* apkgrel: handle missing pkgrel in do_addDubiousjim2013-07-091-1/+4
|
* apkgrel: tweaks to loops, add quotesDubiousjim2013-07-091-3/+3
|
* apkgrel: show_plain, show_prettyDubiousjim2013-07-091-2/+18
|
* apkgrel: --clean-git enhancementsDubiousjim2013-07-091-2/+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-092-1/+23
|
* abump: tweak upgrade/cvelistDubiousjim2013-07-091-8/+5
|
* abump: move loop inside do_bump, refine locals, introduce subshellDubiousjim2013-07-091-33/+33
|
* abuild-sign: fix a race conditionDubiousjim2013-07-091-1/+1
|
* abuild-sign: wrap cd in a subshell, use set -eDubiousjim2013-07-091-2/+5
|
* abuild-sign: make vars localDubiousjim2013-07-091-0/+2
|
* abuild-sign: reformat error outputDubiousjim2013-07-091-7/+9
|
* abuild_keygen: several tweaksDubiousjim2013-07-091-9/+6
| | | | | | | | * make vars local * refactor calculation of default_name * make non_interactive=1 * tweak error message * tweak sed command
* various: use long options, rework usagesDubiousjim2013-07-096-93/+167
|
* Makefile: remove distDubiousjim2013-07-091-13/+1
| | | | as discussed in http://lists.alpinelinux.org/alpine-devel/3122.html
* various: move conf-loading and i/o to functionsDubiousjim2013-07-098-101/+128
|
* abuild-sign: refactorDubiousjim2013-07-091-22/+25
|
* abuild-keygen: refactorDubiousjim2013-07-091-58/+61
|
* various: tweak opening comments, whitespaceDubiousjim2013-07-085-14/+6
| | | | Also remove incomplete efforts at listing "Depends on: ..."
* various: add descriptions, attribution, licenseDubiousjim2013-07-084-0/+27
|
* abuild-sudo, abuild-tar: cosmetic changesDubiousjim2013-07-082-3/+3
|
* remove unused filesDubiousjim2013-07-085-597/+0
| | | | as discussed in http://lists.alpinelinux.org/alpine-devel/3122.html
* abuild: also look in /lib for .a files for -dev subpackageNatanael Copa2013-07-081-1/+1
|
* build: honor CPPFLAGSTimo Teräs2013-07-051-2/+2
|
* abuild: automatically replace the config.sub with our versionNatanael Copa2013-07-024-5/+3372
| | | | | | | introduce post_unpack that by default will search for config.sub and config.guess and replace those if found. we ship our own version of those files
* abuild: whitespace fixes. use longopts for apkNatanael Copa2013-07-021-31/+32
|
* abuild: explicitly use so:depends when croscompilingNatanael Copa2013-07-021-1/+2
|
* abuild: crosscompile support for stripNatanael Copa2013-07-021-1/+1
|
* abuild: check for more common spell errorsNatanael Copa2013-07-021-3/+10
| | | | check for pkguser, pkggroup, subpackage
* ==== release 2.14.3 ====v2.14.3Natanael Copa2013-05-291-1/+1
|
* abuild-sudo: also look for adduser/group in /usr/sbinNatanael Copa2013-05-291-0/+4
| | | | seems like it moved in recent busybox. we need to support both variants
* abuild-sudo: print error message if execv failsNatanael Copa2013-05-291-1/+1
|
* buildrepo: avoid using 'i' as loop variableNatanael Copa2013-04-261-6/+6
| | | | some apkbuilds use it in global context
* ==== release 2.14.2 ====v2.14.2Natanael Copa2013-04-231-1/+1
|