summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ==== release 3.4.0 ====v3.4.0Natanael Copa2019-06-141-1/+1
|
* ==== release 3.4.0_rc5 ====v3.4.0_rc5Natanael Copa2019-06-121-1/+1
|
* apkbuild-cpan.in: add OR to licenses to indicate perl_5 GPL or artistic is a ↵Timothy Legge2019-06-121-1/+1
| | | | choice
* abuild usage fix: fetch does not verify sourcesOliver Smith2019-06-121-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.
* APKBUILD.5: match install_if example to abuild.inKeith Maxwell2019-06-121-3/+3
| | | | | This change makes the example in the description of install_if in the APKBUILD man page match abuild.in:1791.
* newapkbuild: use current directory for cmakeRuss2019-06-121-1/+1
|
* newapkbuild: quote pkgname and pkgvertcely2019-06-121-2/+2
| | | | These are strings after all and should be quoted even if not strictly necessary because of tradition excluding spaces from package names.
* newapkbuild.in: add default check() for meson packages.Leo2019-06-121-0/+6
|
* Cosmetic: newapkbuild: comment for check sectionsOliver Smith2019-06-121-0/+1
| | | | | Add a '# Check sections' comment, for consistency with the equally commented build and package sections.
* newapkbuild: fix empty function regressionOliver Smith2019-06-121-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
* ==== release 3.4.0_rc4 ====v3.4.0_rc4Natanael Copa2019-05-031-1/+1
|
* abuild: fix -openrc to work with multiple subpackagesNatanael Copa2019-05-031-1/+1
| | | | allow a single APKBUILD have multiple -openrc subpackages.
* abuild.in: fix warning with gawk-5.0Leo2019-04-301-1/+1
| | | | awk: cmd. line:1: warning: regexp escape sequence `\#' is not a known regexp operator
* ==== release 3.4.0_rc3 ====v3.4.0_rc3Natanael Copa2019-04-301-1/+1
|
* abuild: cleanup default_dbgNatanael Copa2019-04-301-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.
* abuild: default_dbg: do not trigger trap with test failuretcely2019-04-301-0/+1
| | | | Resolves alpinelinux/abuild#71
* abuild.in: remove duplicate options_has callLeo2019-04-291-1/+1
|
* abuild: default_dbg: eliminate side effectstcely2019-04-291-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
* ==== release 3.4.0_rc2 ====v3.4.0_rc2Natanael Copa2019-04-291-1/+1
|
* abuild-clean: add option to make files writable before cleanupKevin Daudt2019-04-291-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.
* abuild: change word choice in commenttcely2019-04-291-1/+1
|
* abuild: fix whitespace before EOLNatanael Copa2019-04-291-1/+1
|
* abuild: provide a default_static() and static() functionsLeo2019-04-291-2/+37
| | | | - Also check for static archives and warn on lack of static subpackage
* newapkbuild: remove obsolete cd statementsIkke2019-04-291-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.
* Revert "abuild: replace command -v with which to fix build issues"Mike Sullivan2019-04-291-1/+1
| | | | | | This reverts commit 57f2830739e31f9c73d2edaf5103502fbdae6822. https://github.com/alpinelinux/aports/pull/7203 fixes the original problem
* apkbuild-cpan.in: Update licenses to spdx format and remove redundant ↵Timothy Legge2019-04-291-9/+4
| | | | directory change
* abuild-fetch: enable curl certificate verificationtcely2019-04-291-2/+2
|
* APKBUILD.5: sort depends_* descriptionstcely2019-04-291-2/+2
|
* functions: adjust armhf tripletLuca Weiss2019-04-291-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
* Revert "abuild: unset depends for subpackages"Natanael Copa2019-04-251-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.
* APKBUILD.5: document depends_* variables for -doc and -openrcSören Tempel2019-04-091-0/+4
|
* abuild: add depends_libs variable to default_libs()Sören Tempel2019-04-092-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).
* ==== release 3.4.0_rc1 ====v3.4.0_rc1Natanael Copa2019-04-051-1/+1
|
* get and use pkgdesc from cpan api data if the module has no metadata files ↵Timothy Legge2019-04-031-1/+2
| | | | (returnes unknown)
* abuild: -openrc should not inherit dependstcely2019-04-031-0/+1
|
* Add default_cleanup_srcdirChloe Kudryavtsev2019-04-031-1/+9
| | | | | | | | | | | | | | | | | | | | In some cases, a simple rm -rf is not sufficent to clean srcdir. One such case is the new go module system, that marks everything as read-only - thus only letting root rm -rf it without a chmod. There is a command intended to clean them - `go clean -modcache`. However, for that to work, GOPATH must be defined and existent. Running chmod for all srcdir cleanups makes no sense, nor does enforcing root, or putting global overrides just for go. This patch allows overriding what happens on `cleanup srcdir`, by overriding cleanup_srcdir, and allows the use of default_cleanup_srcdir. In our go example, it might be used as such: cleanup_srcdir() { go clean -modcache default_cleanup_srcdir }
* Make clean() use cleanup()Chloe Kudryavtsev2019-04-031-3/+2
| | | | Avoid DRY issues, and increase consistency.
* abuild: unset depends for subpackagesNatanael Copa2019-03-211-0/+1
| | | | make sure that subpackages does not inherit main package's depends.
* apkbuild-cpan: use $pkgver in source urlNatanael Copa2019-03-211-1/+1
| | | | replace litteral version string with $pkgver in source url
* apkbuild-cpan: include modules that used to be part of coreNatanael Copa2019-03-211-1/+2
| | | | | | we need to check if a given module currently is a part of core. Modules which have a first_release may have been removed later, for example Module::Build.
* apkbuild-cpan: remove prepare function from APKBUILDNatanael Copa2019-03-211-36/+6
| | | | | | | the generation of Makefile is comparable with running configure, which we normally do in the build() function, not in prepare. also fix some whitespace damamge.
* apkbuild-cpan.in fix issue with version checkTimothy Legge2019-03-201-2/+2
|
* apkbuild-cpan.in fix issues with update, recreate, etcTimothy Legge2019-03-201-7/+12
|
* Many of setings should come from module not release apiTimothy Legge2019-03-201-7/+8
|
* Fix for issue with apkbuild-cpan upgradeTimothy Legge2019-03-201-2/+2
|
* Updates for metacpanTimothy Legge2019-03-201-13/+13
|
* abuild-sudo: remove unused variableRobert Hencke2019-03-141-1/+1
| | | | This prevents clang from issuing a warning here.
* ==== release 3.3.1 ====v3.3.1Natanael Copa2019-03-051-1/+1
|
* abuild-tar.static: fix undefined reference errorsOliver Smith2019-03-051-1/+2
| | | | | Link against the same libs as abuild-tar and fix the order of the CC arguments.
* abuild-sign: actually catch errors while signingAndrei Belov2019-03-051-2/+3
|