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/
64 lines
2.5 KiB
Plaintext
64 lines
2.5 KiB
Plaintext
# Contributor: Valery Kartel <valery.kartel@gmail.com>
|
|
# Contributor: Carlo Landmeter <clandmeter at gmail>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=mdadm
|
|
pkgver=4.0
|
|
pkgrel=0
|
|
pkgdesc="a tool for managing Linux Software RAID arrays"
|
|
url="http://neil.brown.name/blog/mdadm"
|
|
arch="all"
|
|
license="GPL-2.0"
|
|
depends=
|
|
makedepends="groff linux-headers"
|
|
subpackages="$pkgname-doc $pkgname-udev::noarch $pkgname-misc::noarch"
|
|
source="http://www.kernel.org/pub/linux/utils/raid/$pkgname/$pkgname-$pkgver.tar.gz
|
|
$pkgname.initd
|
|
$pkgname.confd
|
|
$pkgname-raid.initd
|
|
"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
install -Dm644 $pkgname.conf-example "$pkgdir"/etc/$pkgname.conf || return 1
|
|
install -Dm644 "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname
|
|
install -Dm755 "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
|
|
install -Dm755 "$srcdir"/$pkgname-raid.initd "$pkgdir"/etc/init.d/$pkgname-raid
|
|
}
|
|
|
|
udev() {
|
|
pkgdesc="$pkgdesc (udev rules)"
|
|
install_if="udev $pkgname=$pkgver-r$pkgrel"
|
|
|
|
mkdir -p "$subpkgdir"
|
|
mv "$pkgdir"/lib "$subpkgdir"/ || return 1
|
|
}
|
|
|
|
misc() {
|
|
pkgdesc="$pkgdesc (misc scripts)"
|
|
depends="$pkgname bash"
|
|
|
|
cd "$builddir"
|
|
install -Dm755 misc/mdcheck "$subpkgdir"/usr/sbin/mdcheck
|
|
install -Dm755 misc/syslog-events "$subpkgdir"/usr/sbin/handle-mdadm-events
|
|
}
|
|
|
|
md5sums="0b5c862f794dfe8952feceb8bd4f8eb2 mdadm-4.0.tar.gz
|
|
d6ac75406869e44d671c7b5c293676d7 mdadm.initd
|
|
16d2b8eb2e17184357db503470fdd8eb mdadm.confd
|
|
81b05eca507200f0759cc7481adde280 mdadm-raid.initd"
|
|
sha256sums="fa96ed39dd0c3d4451f42678768c07f70bd20670e80e68c60214a147e50a10dd mdadm-4.0.tar.gz
|
|
bd59ba77c053c4bf2b73319cdac7b734a22b8174efb8f2574825e4d2bc6fef2e mdadm.initd
|
|
9d3df571c3478aa83edb1d97231c5da5b2a8653232120df6d283605a8dfbb505 mdadm.confd
|
|
acab80b9362602b44b7a24dc645ce5a453e764b68e5eae5c376824a09e92d9cf mdadm-raid.initd"
|
|
sha512sums="032218da3e2054571b52c276ada1d9b052c473ed65660c5b58d3105841d5e2e124c573b882b668fb92b512d87f94e6f3bca3b0ce0c09a92696e9cc2f86c9f1d3 mdadm-4.0.tar.gz
|
|
ca5f4e3ff5b284102b44e818d11622e1889066e3d18edce2d62c1a44ee8f4cfdc0979121c0462a916c638423c5ebc706c46aa996a7c4f68e030589adc62803f4 mdadm.initd
|
|
7d45bf489ef93a4f217ffcf72311eb661b8de7fbf63a5344697252c0d3a684b0123ff60efa5f218da4eb4cda7c88d91c2ef3625d5e44a588e3e1210cb60b0ab9 mdadm.confd
|
|
37022593ba090eb0690669b99d6386152242c017c1e608cea7b5420b7a6f754b377e916e4f81e2abf9941e791db78b5820e63db0e706d5de8b35e796678e921c mdadm-raid.initd"
|