1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/testing/mailutils/APKBUILD
Jakub Jirutka 63f5e7d295 [various]: unify names of licenses according to SPDX
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/
2017-12-30 21:05:50 +01:00

77 lines
2 KiB
Text

# Contributor: Shiz <hi@shiz.me>
# Maintainer: Shiz <hi@shiz.me>
pkgname=mailutils
pkgver=3.2
pkgrel=1
pkgdesc="GNU swiss army knife of electronic mail handling"
url="https://mailutils.org/"
arch="all"
license="GPL-3.0-or-later"
replaces="mailx"
depends_dev="$pkgname-libs=$pkgver-r$pkgrel"
makedepends="readline-dev libtool"
checkdepends="autoconf"
subpackages="$pkgname-dev $pkgname-doc $pkgname-libs $pkgname-servers $pkgname-mh"
source="https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz
disable-koi8-r-test.patch"
builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr
make
}
check() {
cd "$builddir"
# Exclude imap4d tests as they require chdir("/root") which won't work.
sed -i 's/$(IMAP4D_DIR)/# $(IMAP4D_DIR)/g' Makefile
make check
}
package() {
cd "$builddir"
# re-enable imap4d subdirectory for install
sed -i 's/# $(IMAP4D_DIR)/$(IMAP4D_DIR)/g' Makefile
make DESTDIR="$pkgdir" install
cd "$pkgdir"
rm usr/lib/charset.alias
# No need for these to be suid/sgid root.
chmod u-s usr/sbin/maidag
chmod g-s usr/bin/dotlock
}
servers() {
pkgdesc="$pkgdesc (servers)"
mkdir -p "$subpkgdir"/usr/sbin
local server; for server in pop3d imap4d comsatd; do
mv "$pkgdir"/usr/sbin/$server "$subpkgdir"/usr/sbin/
done
}
libs() {
pkgdesc="$pkgdesc (libraries)"
mkdir -p "$subpkgdir"/usr
mv "$pkgdir"/usr/lib "$subpkgdir"/usr/
}
mh() {
pkgdesc="$pkgdesc (MH compatibility)"
mkdir -p "$subpkgdir"/usr/bin \
"$subpkgdir"/usr/share/$pkgname
mv "$pkgdir"/usr/bin/mu-mh "$subpkgdir"/usr/bin/
mv "$pkgdir"/usr/share/$pkgname/mh "$subpkgdir"/usr/share/$pkgname/
rmdir -p "$pkgdir"/usr/share/$pkgname || true
}
sha512sums="5528799ba1bf7b8eaf3c0e2fe436aeb0be03ccb85788eff7ab6f860da9a03d00f86a4ebcf6839c0a164c6c6d1a0cfe38ec8c848db45376d958325dadba13549e mailutils-3.2.tar.gz
d0d78bba10d3ce039bb00657a570fb9411fabf448548994860285701939ae52afd15c007daa85bb18662a67153dda86069afe240b430fbe1b28a45755108f477 disable-koi8-r-test.patch"