mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +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/
71 lines
2.0 KiB
Plaintext
71 lines
2.0 KiB
Plaintext
# Maintainer: Timo Teräs <timo.teras@iki.fi>
|
|
_luaversions="5.2 5.3"
|
|
pkgname=lua-cqueues-pushy
|
|
pkgver=0.20170807
|
|
_commitid=043bee0c149eaff9efdf9a8bc771c7e6b7897021
|
|
pkgrel=0
|
|
pkgdesc="Framework for logic control (based on cqueues)"
|
|
url="https://github.com/rameplayerorg/lua-cqueues-pushy"
|
|
arch="all"
|
|
license="GPL-2.0"
|
|
install=""
|
|
depends=""
|
|
makedepends="linux-headers"
|
|
subpackages=""
|
|
for _i in $_luaversions; do
|
|
makedepends="$makedepends lua$_i-dev"
|
|
subpackages="$subpackages lua$_i-cqueues-pushy:split_${_i/./_}"
|
|
done
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/rameplayerorg/$pkgname/archive/$_commitid.tar.gz
|
|
cqpushy.initd
|
|
"
|
|
|
|
_sdir="$srcdir"/$pkgname-$_commitid
|
|
|
|
prepare() {
|
|
local i
|
|
cd "$_srcdir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
for _v in $_luaversions; do
|
|
cp -r "$_sdir" "$srcdir"/build-$_v
|
|
done
|
|
}
|
|
|
|
build() {
|
|
for _v in $_luaversions; do
|
|
cd "$srcdir"/build-$_v
|
|
make LUA_VERSION=$_v
|
|
done
|
|
}
|
|
|
|
package() {
|
|
for _v in $_luaversions; do
|
|
cd "$srcdir"/build-$_v
|
|
make LUA_VERSION=$_v install DESTDIR="$pkgdir" || return 1
|
|
done
|
|
install -m755 -D "$srcdir"/cqpushy.initd \
|
|
"$pkgdir"/etc/init.d/cqpushy || return 1
|
|
}
|
|
|
|
_split() {
|
|
local _ver=$1
|
|
pkgdesc="$pkgdesc - Lua $_ver"
|
|
depends="lua$_ver-cqueues>=20150616 lua$_ver-struct lua$_ver-posix lua$_ver-ldbus lua$_ver-socket lua$_ver-cjson lua$_ver-penlight"
|
|
install_if="lua$_ver $pkgname=$pkgver-r$pkgrel"
|
|
|
|
mkdir -p "$subpkgdir"/usr/share/lua "$subpkgdir"/usr/lib/lua
|
|
mv "$pkgdir"/usr/share/lua/$_ver "$subpkgdir"/usr/share/lua
|
|
mv "$pkgdir"/usr/lib/lua/$_ver "$subpkgdir"/usr/lib/lua
|
|
}
|
|
|
|
for _i in $_luaversions; do
|
|
eval "split_${_i/./_}() { _split $_i; }"
|
|
done
|
|
|
|
sha512sums="2be6ac7284ed230e940118f36f20ae41c137a1879eb45a44acc69a3edcf822e628bd7381a1a0747ec68c774d7e2da0c151b8e9831990bb198aff18f97e8572ee lua-cqueues-pushy-0.20170807.tar.gz
|
|
9599db364c3a2e77a7fee61304182961cb6132ce9cb58e9b6837312f52a582e838fdb54eb932c3204b558e3db7228a0412870d0a02125d1017f3402155647bd0 cqpushy.initd"
|