mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-10 18:59:17 +02:00
37 lines
908 B
Text
37 lines
908 B
Text
# Contributor: Jonas <spameier+alpine@proton.me>
|
|
# Maintainer: Jonas <spameier+alpine@proton.me>
|
|
pkgname=py3-winacl
|
|
_pyname=winacl
|
|
pkgver=0.1.9
|
|
pkgrel=1
|
|
pkgdesc="ACL/ACE/Security Descriptor manipulation library in pure Python"
|
|
url="https://github.com/skelsec/winacl"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="
|
|
py3-cryptography
|
|
python3
|
|
"
|
|
makedepends="
|
|
py3-gpep517
|
|
py3-wheel
|
|
py3-setuptools
|
|
"
|
|
subpackages="$pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/skelsec/winacl/archive/refs/tags/$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pyname-$pkgver"
|
|
options="!check" # no tests provided
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" .dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
d7906d05c3b7a9bf07ea007a5f07427acf33b093cf1f30465c0c9a5ca4b7e65761dd405a59b756cab296edb84cdd318307b9620bb8d38dfca00145c84adfcafa py3-winacl-0.1.9.tar.gz
|
|
"
|