mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +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/
58 lines
1.6 KiB
Plaintext
58 lines
1.6 KiB
Plaintext
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=repmgr
|
|
pkgver=3.3.2
|
|
pkgrel=3
|
|
pkgdesc="Replication Manager for PostgreSQL"
|
|
url="http://www.repmgr.org/"
|
|
arch="all"
|
|
license="GPL-3.0"
|
|
depends="postgresql-client"
|
|
makedepends="postgresql-dev"
|
|
pkgusers="postgres"
|
|
subpackages="$pkgname-doc $pkgname-daemon"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/2ndQuadrant/$pkgname/archive/v$pkgver.tar.gz
|
|
repmgr.conf.patch
|
|
repmgrd.initd"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
options="!checkroot"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
make USE_PGXS=1
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
./repmgr --version
|
|
./repmgrd --version
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
|
|
make USE_PGXS=1 DESTDIR="$pkgdir" install
|
|
|
|
install -D -m 640 -o postgres -g postgres \
|
|
repmgr.conf.sample "$pkgdir"/etc/repmgr.conf
|
|
|
|
cd "$pkgdir"
|
|
|
|
mkdir -p usr/share/doc/$pkgname
|
|
cp "$builddir"/*.md "$builddir"/docs/*.md usr/share/doc/$pkgname/
|
|
}
|
|
|
|
daemon() {
|
|
pkgdesc="A management and monitoring daemon for PostgreSQL Replication Manager"
|
|
depends="$pkgname"
|
|
|
|
mkdir -p "$subpkgdir"/usr/bin
|
|
mv "$pkgdir"/usr/bin/repmgrd "$subpkgdir"/usr/bin/
|
|
|
|
install -D -m 755 "$srcdir"/repmgrd.initd "$subpkgdir"/etc/init.d/repmgrd
|
|
}
|
|
|
|
sha512sums="98fba8fc0d9074e496c66762dbec45734fe279f39c9c51adb3e66dca929ac37f66a609789c8c658545856fd81f5afc5b35f6b5e389e52bce8c04ce8c52acd8dd repmgr-3.3.2.tar.gz
|
|
235a17d54ccce9e23b59919c0406fc3618f722e4f7559af6102c561668319a47beca7b70a9564432cb45bbbee091de9fc748935e7c771f1c84cfd40ab6e401a7 repmgr.conf.patch
|
|
4ea90fc4b07898235eb3fd441a9f9857d2309e8c124e8e274ddcb44750db7aa2f59f03ac284ecba9150c1e17a8ae173cc5f493abfdc2b66cac3444802379c6e0 repmgrd.initd"
|