aports/community/java-snappy/APKBUILD
Jakub Jirutka 63f5e7d295 [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/
2017-12-30 21:05:50 +01:00

70 lines
2.6 KiB
Plaintext

# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=java-snappy
_pkgname=snappy-java
pkgver=1.1.2.6
_libver=${pkgver%.*}
pkgrel=1
pkgdesc="Snappy compressor/decompressor for Java"
url="https://github.com/xerial/snappy-java"
arch="all"
license="Apache-2.0"
depends="openjdk8-jre-base"
makedepends="bash openjdk8 perl snappy-dev>=$_libver"
subpackages="$pkgname-native"
source="$pkgname-$pkgver.tar.gz::https://github.com/xerial/$_pkgname/archive/$pkgver.tar.gz
0001-unbundle-snappy.patch
add-linux-aarch64-support.patch
"
builddir="$srcdir/$_pkgname-$pkgver"
prepare() {
default_prepare || return 1
cd "$builddir"
# Get rid of bundled native binaries.
rm -r src/main/resources/org/xerial/snappy/native
# To load libsnappyjava.so from java.library.path.
cat > src/main/resources/org-xerial-snappy.properties <<-EOF
org.xerial.snappy.use.systemlib=true
EOF
}
build() {
cd "$builddir"
JAVA_HOME="/usr/lib/jvm/default-jvm" make || return 1
msg "Downloading SBT and then building JAR (this will take few minutes)..."
JVM_OPTS="-Xms256m -Xmx256m -Xss2m" \
./sbt -no-share -sbt-launch-dir project/.sbt/launchers package
}
package() {
depends="$depends $pkgname-native"
install -m644 -D "$builddir"/target/$_pkgname-*.jar \
"$pkgdir"/usr/share/java/$_pkgname-$pkgver.jar || return 1
ln -sf $_pkgname-$pkgver.jar "$pkgdir"/usr/share/java/$_pkgname.jar
}
native() {
local soname="libsnappyjava.so"
install -m755 -D "$builddir"/target/$soname \
"$subpkgdir"/usr/lib/$soname.$_libver || return 1
ln -sf $soname.$_libver "$subpkgdir"/usr/lib/$soname
}
md5sums="8938dc2d64ec7405581faa454bdf8ed2 java-snappy-1.1.2.6.tar.gz
1bf623f419c1103bce8a76ef129e974b 0001-unbundle-snappy.patch
2c4aa1f420e29f55c77a98d4fb7bba9a add-linux-aarch64-support.patch"
sha256sums="404fa39e5337f08b5c80b20b45096af805b5abb3ded126ef63e43ba4538e8d6e java-snappy-1.1.2.6.tar.gz
d624485186c880d7a7ede00b81e70ae345b9f429a218dd49bb85d3a9fb837cfe 0001-unbundle-snappy.patch
3ed5fd2840bb0d41744cb2f803d50fe376b5424c7f6f6bb4b21902541fa69dc7 add-linux-aarch64-support.patch"
sha512sums="647c7942249fd08d402538da5442bbbbd6a3fc2d6173999253ebcf270e8dea5135a2c702c12ea1f170e3e187f0092270d9d7db28593c438c58a7eb9dd2ca157c java-snappy-1.1.2.6.tar.gz
23aa84f1bee4f2a419402912e17ee04259f37a41a2eac9a6cc271d7a87899778a196b9bbcced856335bb56ea905bd6448f4ef39da9cbd8c83882506651e13a9c 0001-unbundle-snappy.patch
4575f146a2a25284381978e8e6de920c904bc8055e4814821b68668fd74c2beef77efa33486a3564896ce0010c1d70d71b936f6623edc74fb27c14c9647ab416 add-linux-aarch64-support.patch"