aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-12-30 19:04:30 +0100
committerJ0WI <J0WI@users.noreply.github.com>2018-06-15 00:31:08 +0200
commite567641fef9f2671442a827cb933a94058f88849 (patch)
tree1c9ac707e79081b6bfa37b9ae72cde7db2ed92b7
parent5dd38577de1a4383b24e4b02943d001885729cc9 (diff)
downloadalpine_aports-e567641fef9f2671442a827cb933a94058f88849.tar.bz2
alpine_aports-e567641fef9f2671442a827cb933a94058f88849.tar.xz
alpine_aports-e567641fef9f2671442a827cb933a94058f88849.zip
[various]: unify names of licenses according to SPDX
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/
-rw-r--r--community/openjdk7/APKBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/community/openjdk7/APKBUILD b/community/openjdk7/APKBUILD
index 4f72787a9a..2b86618041 100644
--- a/community/openjdk7/APKBUILD
+++ b/community/openjdk7/APKBUILD
@@ -10,7 +10,7 @@ pkgrel=0
10pkgdesc="OpenJDK 7 via IcedTea" 10pkgdesc="OpenJDK 7 via IcedTea"
11url="http://icedtea.classpath.org/" 11url="http://icedtea.classpath.org/"
12arch="all" 12arch="all"
13license="GPL2 with Classpath" 13license="GPL-2.0 with Classpath"
14depends="$pkgname-jre java-cacerts" 14depends="$pkgname-jre java-cacerts"
15options="sover-namecheck" 15options="sover-namecheck"
16makedepends="bash findutils tar zip file paxmark gawk util-linux libxslt 16makedepends="bash findutils tar zip file paxmark gawk util-linux libxslt