aports/testing/ucspi-tcp/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

47 lines
1.8 KiB
Plaintext

# Contributor: Francesco Colista <francesco.colista@gmail.com>
# Maintainer: Johannes Findeisen <you@hanez.org>
pkgname=ucspi-tcp
pkgver=0.88
pkgrel=0
pkgdesc="Easy-to-use command-line tools for building TCP client-server applications."
url="http://cr.yp.to/ucspi-tcp.html"
arch="all"
license="Public-Domain"
depends=""
makedepends=""
source="http://cr.yp.to/$pkgname/$pkgname-$pkgver.tar.gz
ucspi-tcp-0.88.a_record.patch
ucspi-tcp-0.88.errno.patch
"
builddir="$srcdir"/$pkgname-$pkgver
build() {
cd "$builddir"
echo "${CC:-"gcc"} ${CFLAGS}" > conf-cc
echo "${CC:-"gcc"} ${LDFLAGS}" > conf-ld
echo "/usr" > conf-home
make || return 1
}
package() {
local f
cd "$builddir"
mkdir -p "$pkgdir"/usr/bin
for f in tcpserver tcprules tcprulescheck argv0 recordio tcpclient \
*\@ tcpcat mconnect mconnect-io addcr delcr fixcrio rblsmtpd; do
cp $f "$pkgdir"/usr/bin/$f
done
}
md5sums="39b619147db54687c4a583a7a94c9163 ucspi-tcp-0.88.tar.gz
554ec0eb60f619667efde3fb5325310d ucspi-tcp-0.88.a_record.patch
759a11fafff188d9580be6498a028095 ucspi-tcp-0.88.errno.patch"
sha256sums="4a0615cab74886f5b4f7e8fd32933a07b955536a3476d74ea087a3ea66a23e9c ucspi-tcp-0.88.tar.gz
5101354eb86d8e11edefd7b83df4e9c274a55b845f4cb2ce36dda912aced56f4 ucspi-tcp-0.88.a_record.patch
3a4c0d8770c5716f749450a12b678b2282a06e43360478ce9c1d25bd3890e816 ucspi-tcp-0.88.errno.patch"
sha512sums="44efbd477dacf31d39fc970e2d2f74526dc815b905742f6127f0d5c80928ecc7e743089eaab0492386a58d5b97905113fbe8bbc7214ae179b7be27966b7566c7 ucspi-tcp-0.88.tar.gz
643514c57570fc0b4e817b07e6d26e831cec5b4657c3d1b9948bd90267fe370a340b911897d575eb94192e24ba71a03ac68ceb2774ef7c0e7ff819c5b4285bc3 ucspi-tcp-0.88.a_record.patch
86b58807e5d2dcd4ab15a4c0f62baaa0988aa4c6b49b522fa1721da5dcab32b1ceb9bde6c07b2a7340471ed5932af5a9c160e345805626b16fd9b1bad55be0eb ucspi-tcp-0.88.errno.patch"