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/
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=makepasswd
|
|
pkgver=0.5.3
|
|
pkgrel=3
|
|
pkgdesc="Generates (pseudo-)random passwords of a desired length"
|
|
url="http://people.defora.org/~khorben/projects/makepasswd/"
|
|
arch="all"
|
|
license="GPL-3.0"
|
|
depends=""
|
|
makedepends="libxslt docbook-xsl libressl-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="http://ftp.defora.org/pub/projects/makepasswd/$pkgname-$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
make || return 1
|
|
cd doc
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
install -D -p -m 755 src/makepasswd "$pkgdir"/usr/bin/makepasswd
|
|
install -D -p -m 644 doc/makepasswd.1 \
|
|
"$pkgdir"/usr/share/man/man1/$pkgname.1 || return 1
|
|
}
|
|
|
|
md5sums="f9303ba52592555a45b11e35779ca11f makepasswd-0.5.3.tar.gz"
|
|
sha256sums="e632d31b45919be41b4ab29634e20926b2bdbba4086a8817e311fb68dd17c036 makepasswd-0.5.3.tar.gz"
|
|
sha512sums="9b0c7ac44a81ab900d97d403e7f088756fc92bbd516b83391a23fa0c13f1c18137fd47ff8faa418c46bc8dfb11d3ea43d84c5f268dd6409c2ed3431afa536a4a makepasswd-0.5.3.tar.gz"
|