mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
26 lines
767 B
Text
26 lines
767 B
Text
# Maintainer: opal hart <opal@wowana.me>
|
|
pkgname=py3-keyring
|
|
_pkgname="${pkgname#py3-}"
|
|
pkgver=19.2.0
|
|
pkgrel=2
|
|
pkgdesc="Access the system keyring service from Python"
|
|
url="https://github.com/jaraco/keyring"
|
|
arch="noarch"
|
|
license="GPL-3.0-only"
|
|
depends="python3 py3-setuptools py3-entrypoints py3-secretstorage"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py check
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="1fe423f2a7e5331a9d1b37624f4d88b60f77c2cb2c8f8b0808a2f90f43eb9533faa533068e0d8f75b4bdddba2d160f5fac2500c93760fde64fbdb269f8668b0f keyring-19.2.0.tar.gz"
|