summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-08-05abuild: rename makedepends_host virtual packageOliver Smith1-2/+2
With a recent change in apk [1], virtual packages of the same name will upgrade each other. Adjust abuild to this by not using the same virtual package name for two types of dependencies. This fixes the way crosscompilers are built in postmarketOS [2], which is essentially the same as running this on Alpine's gcc aport: $ cd aports/main/gcc $ C_TARGET_ARCH=armhf CTARGET=armv6-alpine-linux-musleabihf \ BOOTSTRAP=nobuildbase CBUILDROOT=/ abuild -r ... >>> gcc-armhf: Installing for host: (1/24) Upgrading .makedepends-gcc-armhf (20190714.104731 -> 20190714.104741) (2/24) Purging binutils-armhf (2.31.1-r2) ... [1] apk-tools.git 37fbafcd928c466c82c892a7868d686d710e5d07 ("add: make virtual packages upgradeable (ref #9957)") [2] https://gitlab.com/postmarketOS/pmaports/blob/master/cross/gcc-armhf/APKBUILD Fixes: https://gitlab.alpinelinux.org/alpine/apk-tools/issues/10649
2019-07-30add missing backslash on rmdir commandLeo1-1/+1
2019-07-17abuild: remove empty dirs in main packageNatanael Copa1-0/+6
clean up empty dirs
2019-07-17abuild: add SOURCE_DATE_EPOCH supportkpcyrd2-2/+17
2019-07-17change ~ to /home/pdietlPete Dietl1-2/+2
2019-07-17abuild.in: fixup flags and usage textPete Dietl1-3/+3
2019-07-17Better use license.lst in abuild sanitycheckKeith Maxwell1-1/+1
Before this change an invalid licence= in an APKBUILD will pass `abuild sanitycheck`. '/usr/share/spdx/license.lst' contains one licence per line. `grep -x` will match partial lines whereas `grep -w` will only match whole lines. An simple demonstration is with 'GPL-3.0' which is not a valid SPDX licence identifier. 'GPL-3.0-only' and 'GPL-3.0-or-later' are valid licences. ``` $ grep --help BusyBox v1.30.1 (2019-04-26 06:26:16 UTC) multi-call binary. Usage: grep [-HhnlLoqvsriwFE] [-m N] [-A/B/C N] PATTERN/-e PATTERN.../-f FILE [FILE]... Search for PATTERN in FILEs (or stdin) ✂ -w Match whole words only -x Match whole lines only ✂ $ grep -w -F GPL-3.0 /usr/share/spdx/license.lst GPL-3.0-only GPL-3.0-or-later $ grep -x -F GPL-3.0 /usr/share/spdx/license.lst $ ```
2019-07-17abuild-fetch: use local insecure variabletcely1-3/+3
2019-07-17abuild-fetch: when http:// was used, ignore https:// problemstcely1-1/+2
2019-07-17abuild-fetch: add -k (insecure as in curl) optiontcely1-1/+11
2019-07-17newapkbuild: make python packages only depend on setuptoolsNatanael Copa1-1/+1
They normally don't need the python3-dev.
2019-07-17newapkbuild: add py3-setuptools to python apkbuildRuss1-1/+1
Seeing as the default python build/check/package apkbuild functions call `setup.py` and that relies on `py3-setuptools`, perhaps it should be added to the makedepends. Inspiration from https://github.com/alpinelinux/aports/pull/7641#pullrequestreview-234326397
2019-07-17make default_static depend on depends_staticLeo2-1/+3
keeps it in line with other default_ functions.
2019-07-17abuild.in: make is_x_package functions reliant on being given a nameLeo1-2/+2
2019-07-08Fix condition check for adding static libraries to -dev package.Leo1-1/+1
This was the wrong way, we only want to add the static library to the -dev package when there isn't a -static package.
2019-06-20abuild-sudo: don't allow --keys-dirMax Rees1-3/+15
Not allowing --allow-untrusted is obviously a good idea, but it can be trivially bypassed if --keys-dir is allowed: $ abuild-apk add foo-1-r0.apk ERROR: foo-1-r0.apk: UNTRUSTED signature $ abuild-apk --allow-untrusted add foo-1-r0.apk abuild-apk: --allow-untrusted: not allowed option $ cp -rp /etc/apk/keys /tmp/keys $ cp untrusted.pub /tmp/keys $ abuild-apk --keys-dir /tmp/keys add foo-1-r0.apk (1/1) Installing foo (1-r0) OK: 4319 MiB in 806 packages If both --allow-untrusted and --keys-dir are not allowed, then it should no longer be possible for an unprivileged member of the abuild group to add an untrusted package. $ abuild-apk --keys-dir /tmp/keys add foo-1-r0.apk abuild-apk: --keys-dir: not allowed option
2019-06-14==== release 3.4.0 ====v3.4.0Natanael Copa1-1/+1
2019-06-12==== release 3.4.0_rc5 ====v3.4.0_rc5Natanael Copa1-1/+1
2019-06-12apkbuild-cpan.in: add OR to licenses to indicate perl_5 GPL or artistic is a ↵Timothy Legge1-1/+1
choice
2019-06-12abuild usage fix: fetch does not verify sourcesOliver Smith1-1/+1
Replace text in usage description of fetch that claims to verify sources with a suggestion to use 'abuild fetch verify', which will actually verify them. 'abuild fetch' alone will not verify sources, as it only executes the fetch() function.
2019-06-12APKBUILD.5: match install_if example to abuild.inKeith Maxwell1-3/+3
This change makes the example in the description of install_if in the APKBUILD man page match abuild.in:1791.
2019-06-12newapkbuild: use current directory for cmakeRuss1-1/+1
2019-06-12newapkbuild: quote pkgname and pkgvertcely1-2/+2
These are strings after all and should be quoted even if not strictly necessary because of tradition excluding spaces from package names.
2019-06-12newapkbuild.in: add default check() for meson packages.Leo1-0/+6
2019-06-12Cosmetic: newapkbuild: comment for check sectionsOliver Smith1-0/+1
Add a '# Check sections' comment, for consistency with the equally commented build and package sections.
2019-06-12newapkbuild: fix empty function regressionOliver Smith1-0/+27
Since the obsolete 'cd "$builddir"' statements have been removed in [1], build(), check() and package() can generate empty functions if no build system is specified or if there is no default for the given build system. newapkbuild will then fail, as it tries to parse the script it generated: $ cd /home/pmos && newapkbuild test /usr/bin/abuild: /home/pmos/test/APKBUILD: line 18: syntax error: unexpected "}" $ cat test/APKBUILD ... build() { } ... Fix this by placing ":" in functions that would be empty. [1]: f83d19ce79ab9f2dcc5238346a910cd18ae0f330
2019-05-03==== release 3.4.0_rc4 ====v3.4.0_rc4Natanael Copa1-1/+1
2019-05-03abuild: fix -openrc to work with multiple subpackagesNatanael Copa1-1/+1
allow a single APKBUILD have multiple -openrc subpackages.
2019-04-30abuild.in: fix warning with gawk-5.0Leo1-1/+1
awk: cmd. line:1: warning: regexp escape sequence `\#' is not a known regexp operator
2019-04-30==== release 3.4.0_rc3 ====v3.4.0_rc3Natanael Copa1-1/+1
2019-04-30abuild: cleanup default_dbgNatanael Copa1-20/+18
Run the loop in a subshell via a pipe so we dont need a subshell for each iteration. Use `if ...; then` to make code slightly more readable. Fix a whitespace before tab while at it.
2019-04-30abuild: default_dbg: do not trigger trap with test failuretcely1-0/+1
Resolves alpinelinux/abuild#71
2019-04-29abuild.in: remove duplicate options_has callLeo1-1/+1
2019-04-29abuild: default_dbg: eliminate side effectstcely1-17/+18
- do not overwrite variables srcdir is very important for abuild operation - quoted various paths - use a sub-shell to contain directory changing Resolves alpinelinux/abuild#58
2019-04-29==== release 3.4.0_rc2 ====v3.4.0_rc2Natanael Copa1-1/+1
2019-04-29abuild-clean: add option to make files writable before cleanupKevin Daudt1-0/+3
Some projects might leave files which are not writable for the current user. The cleanup process then fails and leaves files / directories behind. This can easily be fixed by making everything writable before removing the files. Add the option 'chmod-clean' which does just that.
2019-04-29abuild: change word choice in commenttcely1-1/+1
2019-04-29abuild: fix whitespace before EOLNatanael Copa1-1/+1
2019-04-29abuild: provide a default_static() and static() functionsLeo1-2/+37
- Also check for static archives and warn on lack of static subpackage
2019-04-29newapkbuild: remove obsolete cd statementsIkke1-3/+0
Since `$builddir` is officially supported and abuild automatically cd's to `$builddir`, it does not need to be part of the template anymore.
2019-04-29Revert "abuild: replace command -v with which to fix build issues"Mike Sullivan1-1/+1
This reverts commit 57f2830739e31f9c73d2edaf5103502fbdae6822. https://github.com/alpinelinux/aports/pull/7203 fixes the original problem
2019-04-29apkbuild-cpan.in: Update licenses to spdx format and remove redundant ↵Timothy Legge1-9/+4
directory change
2019-04-29abuild-fetch: enable curl certificate verificationtcely1-2/+2
2019-04-29APKBUILD.5: sort depends_* descriptionstcely1-2/+2
2019-04-29functions: adjust armhf tripletLuca Weiss1-1/+1
From what I could find, it was changed to -musleabihf during the Alpine 3.6 release cycle but this function was never updated to reflect that
2019-04-25Revert "abuild: unset depends for subpackages"Natanael Copa1-1/+0
Apparently there are many packages that does soemthing like: subpackages="$pkgname-foo:_foo" _foo() { depends="$depends something-else" } and thus depend on the previous behavior. We need to revert and plan this better. This reverts commit 8fbbffd201a28a06804c7f6d3a2b5cd948c6ce07.
2019-04-09APKBUILD.5: document depends_* variables for -doc and -openrcSören Tempel1-0/+4
2019-04-09abuild: add depends_libs variable to default_libs()Sören Tempel2-0/+3
Other subpackage such as -dev, -doc and even -openrc allow adjusting depends of the subpackage through such a variable. This is, for instance, useful to remove a dependency of the origin package from the -libs subpackage. While at it document it in APKBUILD(5).
2019-04-05==== release 3.4.0_rc1 ====v3.4.0_rc1Natanael Copa1-1/+1
2019-04-03get and use pkgdesc from cpan api data if the module has no metadata files ↵Timothy Legge1-1/+2
(returnes unknown)