mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
33 lines
987 B
Plaintext
33 lines
987 B
Plaintext
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=dzonegit
|
|
pkgver=0.15
|
|
pkgrel=4
|
|
pkgdesc="Git hooks to manage a repository of DNS zones"
|
|
url="https://github.com/oskar456/dzonegit"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="bind-tools git python3"
|
|
makedepends="py3-gpep517 py3-setuptools py3-pytest-runner py3-wheel"
|
|
checkdepends="py3-pytest py3-pytest-runner"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://github.com/oskar456/dzonegit/archive/v$pkgver/dzonegit-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
gpep517 build-wheel --wheel-dir .dist --output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
python3 -m venv --clear --without-pip --system-site-packages .testenv
|
|
.testenv/bin/python3 -m installer .dist/*.whl
|
|
.testenv/bin/python3 -m pytest
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" .dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
698403132c2e07917041f9cee0c5056cde4fa334c46cb91c3b48e6085a649df0a5be05cef7eac19bdf6fe9bda83542e9290f5bbdbd675df1a1f9b9d9388d70d1 dzonegit-0.15.tar.gz
|
|
"
|