mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
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/
62 lines
1.5 KiB
Plaintext
62 lines
1.5 KiB
Plaintext
# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
|
|
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
|
|
pkgname=firejail
|
|
pkgver=0.9.52
|
|
pkgrel=1
|
|
pkgdesc="Linux namespaces and seccomp-bpf sandbox"
|
|
url="https://firejail.wordpress.com/"
|
|
arch="all"
|
|
license="GPL-2.0"
|
|
depends="bash"
|
|
makedepends="linux-headers"
|
|
checkdepends="expect"
|
|
options="suid"
|
|
subpackages="$pkgname-doc $pkgname-bash-completion:bashcomp:noarch"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/netblue30/$pkgname/archive/$pkgver.tar.gz
|
|
includes.patch
|
|
"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
|
|
find "$builddir" -name Makefile.in -exec sed -i -r \
|
|
-e '/CFLAGS/s: (-O2|-ggdb) : :g' \
|
|
-e '1iCC=@CC@' {} +
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--enable-busybox-workaround
|
|
make
|
|
}
|
|
|
|
bashcomp() {
|
|
pkgdesc="Bash completions for $pkgname"
|
|
depends="bash"
|
|
install_if="$pkgname=$pkgver-r$pkgrel bash"
|
|
|
|
mkdir -p "$subpkgdir"/usr
|
|
mv "$pkgdir"/usr/share "$subpkgdir"/usr/
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="1aca0e210a29ea4c38b82027549b6dcc9c0d50e2bf9f15bd449c6c70b96a4974e1a557ad2ea40a9caefc078ae3f6afafa62d06652fe871b7597d57d24c1705ca firejail-0.9.52.tar.gz
|
|
cfc48e8c773fb4ee9b94cbb84c5b86ff0eca69351f37f105b5b314b8404a0c10749c205d5e7ef90e65ae61b81f5c73f87f112ad68a651f745bfdf3048aa327e6 includes.patch"
|