summaryrefslogtreecommitdiff
path: root/abuild.in
AgeCommit message (Collapse)AuthorFilesLines
2019-08-02abuild, abuild-keygen: drop echo -n as wellMax Rees1-2/+2
2019-07-21dash is my god now. and it hungers for quotes around local var= expansions.Max Rees1-55/+55
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-20abuild, abump: use type(1) portablyMax Rees1-6/+10
2019-07-20abuild: use case instead of grep for normalize_target_pathMax Rees1-1/+3
2019-07-20Initial removal of bashismsMax Rees1-13/+20
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-06abuild: continue faking POSIX support for nowA. Wilcox1-2/+2
2019-03-06abuild: OpenRC scripts are noarchA. Wilcox1-1/+1
2019-03-06abuild: force pax format to error out *early* with bb tarA. Wilcox1-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-05abuild: replace command -v with which to fix build issuesMike Sullivan1-1/+1
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-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-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-03abuild: run build actions via runpartNatanael Copa1-11/+5
So we make sure chdir $builddir happens when it should.
2018-10-03abuild: do not run check in fakeroot by defaultNatanael Copa1-6/+6
Only run check in fakeroot if options="checkroot" is set. This makes options="!checkroot" the default. I expect most checks work as non-root, and if a testsuite requires root, it will likely fail in fakeroot too. Fakeroot has also shown lower performance for parallel builds.
2018-10-03abuild: print version of built package earlyNatanael Copa1-1/+1
instead of printing abuild version, print package version. This is to avoid confuse the abuild version with the package version.
2018-10-03abuild: chdir to $builddir if it existsNatanael Copa1-0/+6
chdir to $builddir before running prepare, build, package or check.
2018-10-03abuild: fix regression. run buildNatanael Copa1-1/+2
fix regression introduced in def219994d2dff3c2bd47eee76826dc79e042b2f
2018-10-03abuild: require package() functionNatanael Copa1-20/+5
make a missing function for package() a hard error. this means we never run build in fakeroot.
2018-10-03abuild: fix checksum updateNatanael Copa1-3/+7
Fix case where 1) checksum is a single line and 2) there is a variable under the checksum that should be kept. For example: sha512sum="...." keepthis="..." Previously the `keepthis` variable would have been removed. ref https://github.com/alpinelinux/abuild/pull/41
2018-10-03move logic of curl's http range error to abuild-fetchNatanael Copa1-12/+1
Move the logic of deleting partial downloads to abuild-fetch, which knows if it is curl or wget that was executed.
2018-10-03Fix: incomplete partfile gets renamed to distfileOliver Smith1-1/+12
Abuild-fetch uses curl (fallback to wget) to download files. They are saved with a ".part" extension first, so they can be resumed if necessary. When the download is through, the ".part" extension gets removed. However, when the server does not support resume of downloads (e.g. GitHub's on the fly generated tarballs), then the ".part" extension got removed anyway. Abuild aborts in that case. But when running a third time, the distfile exists and it is assumed that this is the full download. Changes: * abuild-fetch: * Only remove the ".part" extension, when curl/wget exit with 0 * Pass the exit code from curl/wget as exit code of abuild-fetch * Wherever abuild-fetch would return an exit code on its own, the codes have been changed to be > 200 (so they don't collide with curl's as of now 92 exit codes) * Remove undocumented feature of downloading multiple source URLs at a time. This doesn't match with the usage description, was not used in abuild at all and it would have made it impossible to pass the exit code. * abuild: * After downloading, when curl is installed and abuild-fetch has 33 as exit code (curl's HTTP range error), then delete the partfile and try the download again.
2018-05-31abuild: fix race when strippingNatanael Copa1-0/+4
scanelf may pick up tempfiles created by strip or setfattr since it runs in spearate process and pipes the out to a subshell. This causes a race and may lead to the while loop attempt to strip seomthing that no longer exists. We fix that by test if file exists before try manipulate it. We could have written he file list to a temp file first, but this way we benefit from multiple cores working in parallel.
2018-04-25abuild: Fix usage info about package commandJonathan Sieber1-1/+1
abuild package misleadingly stated that it will create packages in $REPODIR (suggesting that it actually creates apks).
2018-04-22abuild.in: don't fail if git describe failsSören Tempel1-1/+1
`git describe` by default looks for tags, but `git clone` does not clone tags by default which causes failures on travis currently. Also redirect `git describe` errors to /dev/null while being here.
2018-04-17abuild: fix unxz with threadingNatanael Copa1-1/+5
busybox unxz does not support --threads/-T option
2018-04-17abuild: simplify optional git usageNatanael Copa1-11/+5
set git=true if git is missing so all git commands are ignored. This simplifies the code a bit
2018-04-15abuild: add multithread decommpressing supportCarlo Landmeter1-3/+5
2018-04-11abuild: allow SPDX license operatorsCarlo Landmeter1-0/+2
valid operators are AND OR WITH
2018-04-11Make file missing in source var explicit.Manuel Tiago Pereira1-1/+1
I've forgot to add a patch file to the source variable in an APKBUILD, altought I did add it to the sums variable. The error message made it seem that I've forgot to add the file to the source directory, which led me to check if my build system was missing the files for some reason. Only after reading the `abuild.in` file did I understood what happened. Hopefully this change makes the message clearer and more helpful.
2018-04-11Fix a few typosJonathan Neuschäfer1-2/+2
2018-04-11abuild: check license for valid SPDX license identifiersCarlo Landmeter1-0/+16
licenses will be checked against the license.lst file provided by the spdx-licenses-list package when installed except when explicitly disabled by the !spdx options flag.
2018-03-20Don't print 'git: not found' errorsOliver Smith1-6/+13
abuild, as packaged in Alpine Linux, does not depend on git. But when you use it without git, it will print out errors like the following: /usr/bin/abuild: line 2554: git: not found With this commit, it saves the git_path in the beginning (just like abuild_path). Later in the code it does not try to run git if that variable is empty. Notably `abuild rootbld` is already checking whether `abuild-rootbld` is installed, and that subpackage of `abuild` does already depend on `git`. So no additional check was added before using `git ` inside `rootbld`. Fixes #32
2018-03-16abuild: Change -f (force) to not ignore checksums/init scriptsOliver Smith1-5/+3
The force flag used to skip the following functions, without any documentation in the help (-h) output: * verify (checksum verification) * initdcheck (check if the init scripts are openrc scripts) * check_arch (check if the target architecture is in "arch=") * check_libc (check if the target libc is masked in the options) This was counter-intuitive and could even be dangerous (when one relies on the checksum verification to prevent man-in-the-middle attacks, but always uses the -f flag). With this commit, it only skips check_arch and check_libc besides the package up to date check and the help output mentions this.
2018-03-11abuild: set arch for -openrc subpackage to noarchSören Tempel1-1/+1
2018-03-11abuild: add postcheck for -openrc subpackageSören Tempel1-0/+10
2018-03-11abuild.in: ensure that $triggers is not in $sourceSören Tempel1-0/+5
Since we already check that $install is not in $source is does make sense to also check that $triggers is not in $source.
2018-03-08rootbld: if networking is enabled, copy resolv.conf into the build rootWilliam Pitcock1-0/+4
2018-02-20abuild: fix typoNatanael Copa1-1/+1
2018-01-02abuild: add sanitycheck of providesNatanael Copa1-0/+12
provides cannot contain the pkgname or apk will be very unhappy.