2011-05-11 06:17:43 +00:00
|
|
|
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
|
|
pkgname=vanessa_logger
|
2013-11-30 09:58:58 +00:00
|
|
|
pkgver=0.0.10
|
2024-09-20 22:55:06 +02:00
|
|
|
pkgrel=4
|
2011-05-11 06:17:43 +00:00
|
|
|
pkgdesc="Logging library"
|
2024-09-20 22:55:06 +02:00
|
|
|
url="https://projects.horms.net/projects/vanessa/"
|
2011-05-11 06:17:43 +00:00
|
|
|
arch="all"
|
[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 19:04:30 +01:00
|
|
|
license="LGPL-2.0-or-later"
|
2011-05-11 06:17:43 +00:00
|
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
2024-09-20 22:55:06 +02:00
|
|
|
source="https://projects.horms.net/projects/vanessa/download/vanessa_logger/$pkgver/vanessa_logger-$pkgver.tar.bz2
|
2020-09-24 06:10:34 +00:00
|
|
|
fix-standard.patch
|
|
|
|
"
|
2023-11-30 16:55:40 +01:00
|
|
|
options="!check"
|
2011-05-11 06:17:43 +00:00
|
|
|
|
|
|
|
prepare() {
|
2020-09-24 06:10:34 +00:00
|
|
|
update_config_sub
|
|
|
|
default_prepare
|
2011-05-11 06:17:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2013-07-30 08:51:11 +00:00
|
|
|
./configure \
|
|
|
|
--build=$CBUILD \
|
|
|
|
--host=$CHOST \
|
|
|
|
--prefix=/usr \
|
2011-05-11 06:17:43 +00:00
|
|
|
--sysconfdir=/etc \
|
|
|
|
--mandir=/usr/share/man \
|
2020-09-24 06:10:34 +00:00
|
|
|
--infodir=/usr/share/info
|
|
|
|
make
|
2011-05-11 06:17:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2020-09-24 06:10:34 +00:00
|
|
|
make DESTDIR="$pkgdir" install
|
2011-05-11 06:17:43 +00:00
|
|
|
}
|
|
|
|
|
2013-11-30 09:58:58 +00:00
|
|
|
sha512sums="38accb1563485b8f1ab0fbfc424336df71d6ac9c0baee669000a0ff8f0b5c3475d0bd3e5629c831ab30e7920877026dd2d55309247dd4940339a852da61a35fa vanessa_logger-0.0.10.tar.bz2
|
2013-10-09 07:55:59 +00:00
|
|
|
0b8c52668f7789073984e3573a3c3b675b9027eea31f8185345f6baca0a5dfb22397858b342eb5069a20d07b8e7a4c9c4f4bd257bbad7cd692c39b8f606c4ac5 fix-standard.patch"
|