1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 19:25:25 +03:00
aports/testing/mongo-php7-library/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

35 lines
1.3 KiB
Text

# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
_php=php7
pkgname=mongo-${_php}-library
_realname=mongo-php-library
pkgver=1.0.3
pkgrel=0
pkgdesc="High-level abstraction around the lower-level drivers for PHP"
url="https://github.com/mongodb/mongo-php-library"
arch="noarch"
license="Apache-2.0"
makedepends="$depends_dev mongo-${_php}-driver"
subpackages="$pkgname-doc"
options="!check"
source="$_realname-$pkgver.tar.gz::https://github.com/mongodb/$_realname/archive/$pkgver.tar.gz"
builddir="$srcdir"/$_realname-$pkgver
build() {
cd "$builddir"
return 0
}
package() {
cd "$builddir"
mkdir -p "$pkgdir"/usr/share/doc/mongo-${_php}-library/docs
mkdir -p "$pkgdir"/usr/lib/${_php}/vendor/mongodb/mongodb
mv src/* "$pkgdir"/usr/lib/${_php}/vendor/mongodb/mongodb
mv tests "$pkgdir"/usr/lib/${_php}/vendor/mongodb/mongodb/
mv docs/* "$pkgdir"/usr/share/doc/mongo-${_php}-library/docs
mv LICENSE README.md RELEASE-* "$pkgdir"/usr/share/doc/mongo-${_php}-library
}
md5sums="07efdeeb10ef196705e055b93129afcb mongo-php-library-1.0.3.tar.gz"
sha256sums="74873f2bc6b24087fe3a91b48323eec9e0f09e7f913fe2107e141914ee408bd0 mongo-php-library-1.0.3.tar.gz"
sha512sums="c4cf0c4e13572302ce1cd6b224762b009a06077ed3113cb68ed2a18298a8994c7c90a07b8a158dc9f53d52375aac0e9f1697f63faa1fbc2c1ecc71834a992492 mongo-php-library-1.0.3.tar.gz"