aboutsummaryrefslogtreecommitdiffstats
path: root/main/abuild
Commit message (Collapse)AuthorAgeFilesLines
* [various]: unify names of licenses according to SPDXJakub Jirutka2017-12-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit updates $license variable in all APKBUILDs to comply with short names specified by SPDX version 3.0 [1] where possible. It was done using find-and-replace method on substrings inside $license variables. Only license names were updated, not "expressions" specifying relation between the licenses (e.g. "X and Y", "X or Y", "X and (Y or Z)") or exceptions (e.g. "X with exceptions"). Many licenses have a version or multiple variants, e.g. MPL-2.0, BSD-2-Clause, BSD-3-Clause. However, $license in many aports do not contain license version or variant. Since there's no way how to infer this information just from abuild, it were left without the variant suffix or version, i.e. non SPDX compliant. GNU licenses (AGPL, GFDL, GPL, LGPL) are especially complicated. They exist in two variants: -only (formerly e.g. GPL-2.0) and -or-later (formerly e.g. GPL-2.0+). We did not systematically noted distinguish between these variants, so GPL-2.0, GPL2, GPLv2 etc. may mean GPL-2.0-only or GPL-2.0-or-later. Thus GNU licenses without "+" (e.g. GPL2+) were left without the variant suffix, i.e. non SPDX compliant. Note: This commit just fixes format of the license names, no verification has been done if the specified license information is actually correct! [1]: https://spdx.org/licenses/
* main/abuild: add support for provider_priorityJakub Jirutka2017-12-302-2/+44
|
* main/*: fix homepage url and source from http:// to https://Jakub Jirutka2017-11-191-1/+1
| | | | | | | Most of these updates is based on data from https://repology.org/, detection based on permanent redirect from http:// to https://. $source urls are updated when they contain $url as substring.
* main/abuild: helps to actually add the patch, i supposeWilliam Pitcock2017-11-101-0/+38
|
* main/abuild: fix rootbld testsuite runningWilliam Pitcock2017-11-101-2/+4
|
* main/abuild: rebuild against libressl-2.6Natanael Copa2017-11-091-1/+1
|
* main/abuild: add env option to require testsCarlo Landmeter2017-10-272-2/+37
|
* main/abuild: upgrade to 3.1.0Natanael Copa2017-10-252-60/+3
|
* main/abuild: checksums, duhWilliam Pitcock2017-10-211-1/+2
|
* main/abuild: enable command: provider generation for command-not-foundWilliam Pitcock2017-10-212-1/+57
|
* main/abuild: upgrade to 3.0.2Natanael Copa2017-09-282-41/+3
|
* main/abuild: use full version, do not strip standalone elf imagesTimo Teräs2017-09-262-4/+42
| | | | ref: https://github.com/alpinelinux/aports/pull/1714
* main/abuild: upgrade to 3.0.1Natanael Copa2017-09-191-2/+2
|
* main/abuild: upgrade to 3.0.0Natanael Copa2017-09-194-135/+3
|
* main/abuild: backport arch check fixNatanael Copa2017-07-252-2/+31
|
* main/abuild: prevent forging of user nameKaarle Ritvanen2017-07-202-2/+50
|
* abuild: backport sanitycheck of secfixes commentNatanael Copa2017-07-202-2/+57
|
* main/abuild: upgrade to 3.0.0_rc4Natanael Copa2017-07-171-2/+2
|
* main/abuild: upgrade to 3.0.0_rc3Kaarle Ritvanen2017-07-177-334/+11
|
* main/abuild: add !checkroot optionJakub Jirutka2017-06-222-2/+33
|
* main/abuild: modernize abuildJakub Jirutka2017-06-221-14/+12
|
* main/abuild: add missing dep perl-module-build-tiny to -cpan subpkgJakub Jirutka2017-04-191-2/+2
| | | | | | | | | | | | | Fixes error: $ apkbuild-cpan create Protocol::WebSocket Wrote perl-protocol-websocket/APKBUILD >>> perl-protocol-websocket: Updating the sha512sums in APKBUILD... >>> perl-protocol-websocket: Checking sha512sums... Protocol-WebSocket-0.20.tar.gz: OK >>> perl-protocol-websocket: Unpacking /var/cache/distfiles/Protocol-WebSocket-0.20.tar.gz... Can't locate Module/Build/Tiny.pm in @INC (you may need to install the Module::Build::Tiny module) (@INC contains: /usr/local/lib/perl5/site_perl /usr/local/share/perl5/site_perl /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/core_perl /usr/share/perl5/core_perl .) at Build.PL line 9. BEGIN failed--compilation aborted at Build.PL line 9.
* main/abuild: newapkbuild remove explicit return 1Carlo Landmeter2017-04-192-2/+139
|
* main/abuild: rebuild against libressl 2.5Natanael Copa2017-04-181-1/+1
|
* main/abuild: fix checksumsWilliam Pitcock2017-04-081-1/+2
|
* main/abuild: add support for lzip source packagesWilliam Pitcock2017-04-082-2/+35
|
* main/abuild: set -e fixNatanael Copa2017-04-042-2/+61
|
* main/abuild: add the actual patchWilliam Pitcock2017-03-271-0/+39
|
* main/abuild: wrap check() with fakeroot, pointed out by @jirutkaWilliam Pitcock2017-03-271-2/+4
|
* main/abuild: checksums of courseWilliam Pitcock2017-03-271-1/+2
|
* main/abuild: hint to pkgconf that we are a dependency generator and don't ↵William Pitcock2017-03-272-1/+28
| | | | want full SAT when generating dependencies
* main/abuild: upgrade to 3.0.0_rc2Natanael Copa2017-03-244-473/+3
|
* main/abuild: rebuild to fix depends in subpackagesNatanael Copa2017-03-211-1/+1
|
* main/abuild: fix runpartNatanael Copa2017-03-212-2/+66
|
* main/abuild: fix abuild -ANatanael Copa2017-03-2010-277/+32
|
* main/abuild: upgrade to 3.0.0_rc1Natanael Copa2017-03-201-26/+8
|
* main/abuild: improve guidance when no check() function is definedWilliam Pitcock2017-02-282-2/+29
|
* main/abuild: backport check() supportWilliam Pitcock2017-02-252-2/+353
|
* main/abuild: fix abumpNatanael Copa2017-02-172-2/+30
| | | | we need reset md5/sha256 sums when running abump
* main/abuild: fix cross compile triplet for armhfWilliam Pitcock2017-02-142-16/+29
|
* main/abuild: preserve xattr when creating -dbgTimo Teräs2017-02-092-2/+59
|
* main/abuild: backport use-only-sha512 commitNatanael Copa2017-02-092-12/+38
| | | | this reduces clutter in the APKBUILD
* main/abuild: add patch to workaround filesystem bugsG.J.R. Timmer2017-02-082-1/+23
|
* main/abuild: add ppc/ppc64 triplet definitionsWilliam Pitcock2017-01-242-4/+41
|
* main/abuild: pass --arch whenever sysroot is usedNatanael Copa2016-12-212-4/+70
|
* main/abuild: properly detect failure of installing dependenciesTimo Teräs2016-10-312-4/+44
|
* main/abuild: fix arch for subpackagesNatanael Copa2016-10-261-3/+1
|
* main/abuild: upgrade to 2.29.0Natanael Copa2016-10-242-1852/+5
|
* main/abuild: use libresslNatanael Copa2016-10-101-2/+2
|
* main/abuild: rebuild against libresslNatanael Copa2016-10-101-2/+2
|