mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 07:02:29 +01: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
2.2 KiB
Plaintext
62 lines
2.2 KiB
Plaintext
# Automatically generated by apkbuild-cpan, template 2
|
|
# Contributor: Timo Teräs <timo.teras@iki.fi>
|
|
# Maintainer: Timo Teräs <timo.teras@iki.fi>
|
|
pkgname=netdisco
|
|
_pkgreal=App-Netdisco
|
|
_pkgver=2.036012_003
|
|
pkgver=${_pkgver/_/p}
|
|
pkgrel=0
|
|
pkgdesc="An open source web-based network management tool."
|
|
url="http://search.cpan.org/dist/App-Netdisco/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
cpandepends="perl-dancer-plugin-passphrase perl-data-printer perl-plack perl-ldap
|
|
perl-file-sharedir perl-starman perl-socket6 perl-json-xs perl-netaddr-mac
|
|
perl-anyevent perl-uri perl-dancer-plugin-dbic perl-template-plugin-csv
|
|
perl-try-tiny perl-snmp-info perl-list-moreutils perl-dbix-class
|
|
perl-anyevent-dns-etchosts perl-daemon-control perl-file-slurper perl-moo
|
|
perl-io-socket-ssl perl-role-tiny perl-algorithm-cron perl-sereal
|
|
perl-template-plugin-number-format perl-json perl-dbix-class-helpers
|
|
perl-dancer-plugin-auth-extensible perl-sql-translator perl-path-class
|
|
perl-template-toolkit perl-url-encode perl-dancer perl-plack-middleware-reverseproxy
|
|
perl-namespace-clean perl-cgi-expand perl-html-parser perl-net-dns
|
|
perl-dancer-session-cookie perl-yaml-libyaml perl-netaddr-ip perl-aliased
|
|
perl-guard perl-mce perl-plack-middleware-expires perl-dbd-pg"
|
|
# perl-app-local-lib-helper perl-app-cpanminus
|
|
cpanmakedepends=""
|
|
cpancheckdepends="perl-env-path"
|
|
depends="perl-term-ui perl-archive-extract $cpandepends"
|
|
makedepends="perl-dev perl-module-build $cpanmakedepends"
|
|
checkdepends="$cpancheckdepends"
|
|
subpackages="$pkgname-doc"
|
|
source="http://search.cpan.org/CPAN/authors/id/O/OL/OLIVER/$_pkgreal-$_pkgver.tar.gz
|
|
"
|
|
builddir="$srcdir/$_pkgreal-$_pkgver"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
|
|
cd "$builddir"
|
|
export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
|
|
perl Build.PL installdirs=vendor
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
|
|
./Build
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
./Build install destdir="$pkgdir"
|
|
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
./Build test
|
|
}
|
|
|
|
sha512sums="4c0f5dcd6f6174f5531399f1bc6aafb3a650e4abe4ff97c39fdeb6ce982e7a7c95cd205e53f871b56aafa98a9cd4d5b6812aea8415e3ef5a2ca06c1f9576ae3f App-Netdisco-2.036012_003.tar.gz"
|