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/
47 lines
1.5 KiB
Plaintext
47 lines
1.5 KiB
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
pkgname=bvi
|
|
pkgver=1.4.0
|
|
pkgrel=1
|
|
pkgdesc="Display-oriented editor for binary files based on vi"
|
|
url="http://bvi.sourceforge.net"
|
|
arch="all"
|
|
license="GPL-2.0"
|
|
depends=""
|
|
makedepends="ncurses-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.src.tar.gz
|
|
fix-implicit.patch"
|
|
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--datadir=/usr/share/doc \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
|
|
mkdir -p "$pkgdir"/usr/share/doc/$pkgname/
|
|
install -Dm644 CHANGES README CREDITS \
|
|
"$pkgdir"/usr/share/doc/$pkgname/ || return 1
|
|
}
|
|
|
|
md5sums="aa83eb8b2b6b0bb6cdd8e6beef12b775 bvi-1.4.0.src.tar.gz
|
|
dc0499a696dd0419e2df0c743dad4cfe fix-implicit.patch"
|
|
sha256sums="015a3c2832c7c097d98a5527deef882119546287ba8f2a70c736227d764ef802 bvi-1.4.0.src.tar.gz
|
|
8a9ff0895291e9ccfb0cc85867964c9f7bbbe5fdfb8a3e58ab809ac6408e42ff fix-implicit.patch"
|
|
sha512sums="119cfc7350f81c324e77243f948cfb91cd9a3122fef307616e4756a99732f69131aed2a26ebe48048698b9c211a0214255f3e6605ad2cbf479a14a4a0f88923c bvi-1.4.0.src.tar.gz
|
|
b2cb59d82939202df5b12f640182d619cbec25b22aaba0dd9853ee75c7bc285c8f2366d311ebf795e8f78b6daf828545494993f84925fdf4f6d2c12796d9bb32 fix-implicit.patch"
|