summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-08-02abuild, abuild-keygen: drop echo -n as wellMax Rees2-3/+3
2019-08-02Merge branch 'bashisms' into 'master'A. Wilcox9-86/+107
POSIX me harder See merge request adelie/abuild!3
2019-07-21dash is my god now. and it hungers for quotes around local var= expansions.Max Rees4-58/+58
2019-07-20normalize_target_path: It was ||, not &&...Max Rees1-1/+2
2019-07-20abuild: use command(1) portablyMax Rees1-2/+2
According to POSIX, the "command -v" form of command(1) accepts only a single argument (command_name). Some shells will check additional arguments, but not dash.
2019-07-20tests: cd "$OLDPWD" even on failure in newapkbuild_simple_testMax Rees1-0/+1
2019-07-20abuild, abump: use type(1) portablyMax Rees2-8/+17
2019-07-20abuild: use case instead of grep for normalize_target_pathMax Rees1-1/+3
2019-07-20Initial removal of bashismsMax Rees5-20/+28
2019-03-06Add documentation for the repositoryA. Wilcox3-0/+176
2019-03-06Take -k out into the backyard and shoot itv3.3.1+adelieLuis Ressel1-2/+2
2019-03-06abuild: command -v is the only portable solutionA. Wilcox1-1/+1
2019-03-06abuild: slightly cleaner way to deduce pigz presenceA. Wilcox1-1/+1
2019-03-06checkapk: Use tar(1) portablyA. Wilcox1-1/+1
2019-03-06functions: Add m68k tripletA. Wilcox1-0/+2
2019-03-06functions: Add the SPARC architecture tripletsA. Wilcox1-1/+5
2019-03-06Add rudimentary test suite for abuild and newapkbuildA. Wilcox13-3/+336
2019-03-06abuild: continue faking POSIX support for nowA. Wilcox1-2/+2
2019-03-06functions: Add all four MIPS variants properlyA. Wilcox1-3/+7
2019-03-06Add initial manpage draftsA. Wilcox1-4/+7
2019-03-06newapkbuild: add man pageA. Wilcox1-1/+1
2019-03-06newapkbuild: add default check to CMake and RelWithDebugInfo typeA. Wilcox1-1/+6
2019-03-06functions.sh: add pmmx archA. Wilcox1-3/+5
2019-03-06Makefile: remove stale .o files tooA. Wilcox1-0/+1
This was causing build issues when sharing ~/abuild between arches.
2019-03-06functions.sh: initial support for MIPS and MIPS32A. Wilcox1-0/+4
2019-03-06abuild: OpenRC scripts are noarchA. Wilcox1-1/+1
2019-03-06and remove abuild-gzsplit from indexA. Wilcox1-0/+0
2019-03-06abuild: force pax format to error out *early* with bb tarA. Wilcox2-2/+2
2019-03-06abuild: require tests alwaysA. Wilcox1-3/+1
2019-03-06abuild: do not add busybox dep if package has triggersA. Wilcox1-1/+1
2019-03-06abuild: more tar portability fixesA. Wilcox1-6/+2
2019-03-06functions.sh: Use Adélie triplets and add P3 supportA. Wilcox1-18/+12
2019-03-05==== release 3.3.1 ====v3.3.1Natanael Copa1-1/+1
2019-03-05abuild-tar.static: fix undefined reference errorsOliver Smith1-1/+2
Link against the same libs as abuild-tar and fix the order of the CC arguments.
2019-03-05abuild-sign: actually catch errors while signingAndrei Belov1-2/+3
2019-03-05abuild: replace command -v with which to fix build issuesMike Sullivan1-1/+1
2019-02-25Allow forcing of colored outputCarlo Landmeter1-1/+3
In some cases (ie drone ci) there is no tty available but its still possible to display colors in the webui.
2019-02-22abuild: add support for pkg-config prefix pcprefixNatanael Copa1-2/+12
Fix issue when two -dev packages provides same pkg-config wil but with different versions. For example libressl-dev and openssl-dev both ships libssl.pc and libcrypto.pc, which resulted in automatic provides of pc:libssl and pc:libcrypto. apk would end up picking libressl-dev over openssl-dev for packages that had automatic pc:libssl depends (for example libssl2-dev), when openssl-dev was the one that was used during build. To fix this we add support for a pcprefix so we can set pcprefix="libressl:" in libressl APKBUILD which makes libressl-dev provide pc:libressl:libssl. This is similar to what we do with sonameprefix. We do not yet automatically detect when the prefixed variant should be used so for now we will have to explicitly add libressl-dev. ref #9959
2019-01-23==== release 3.3.0 ====v3.3.0Natanael Copa1-1/+1
2019-01-10abuild: replace $0 with $abuild_path, add $forceroot where missingDisassembler1-6/+6
2019-01-10abuild: use pigz to compress control.tar.gz and manpagesNatanael Copa1-2/+3
2019-01-10abuild-sign: fall back to libressl if openssl is missingNatanael Copa1-1/+2
openssl binary may be missing while migrating system from libressl to openssl. Make sure we can always sign the backage if either is there.
2019-01-09==== release 3.3.0_pre2 ====v3.3.0_pre2Natanael Copa1-1/+1
2019-01-09abuild: avoid add depends to itselfNatanael Copa1-1/+3
packages should never depend on themselves which does not make sense. This may happen if main package depends on a subpackage, then the subpackages will inherit the global depends and the subpackage ends up depend on itself. Fix abuild to avoid this.
2018-12-02abuild: fix typoCarlo Landmeter1-1/+1
2018-11-08abuild.in: add multithreaded compressionTiago Ilieve1-1/+2
The 'Compressing data' step takes a significant amount of time when packaging software with huge binaries, like Kubernetes. This can certainly be shortened using multithreaded compression, like 'pigz'.
2018-11-08abuild: print build start, end date and elapsed timeTimo Teräs1-1/+5
2018-10-11abuild-rmtemp: Do not follow symbolic linksSören Tempel1-1/+1
Symbolic links might point to files outside of the chroot and thus might delete files outside the chroot. This allows deletion of arbitrary directories on the host from a malicious APKBUILD. Following hard links shouldn't be a problem since hard links (usually) cannot refer to directories and since remove(3) removes the link, not the file it points to it shouldn't cause a problem. I noticed this because alpine-baselayout creates /var/run as a symlink to /run. Therefore causing /run to be deleted on the host when using abuild-rmtemp which in turn causes a bunch of software to no longer function properly (including OpenRC).
2018-10-03==== release 3.3.0_pre1 ====v3.3.0_pre1Natanael Copa1-1/+1
2018-10-03abuild: run build actions via runpartNatanael Copa1-11/+5
So we make sure chdir $builddir happens when it should.