1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 11:15:13 +03:00
aports/community/py3-zope-exceptions/APKBUILD
2023-02-27 00:30:41 +00:00

28 lines
911 B
Text

# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Justin Berthault <justin.berthault@zaclys.net>
pkgname=py3-zope-exceptions
_pyname=zope.exceptions
pkgver=4.6
pkgrel=0
pkgdesc="Zope Exceptions"
# Cyclic dep zope.testrunner needs zope.exceptions to run, but zope.exceptions
# needs zope.testrunner on its test dependencies
options="!check"
url="https://github.com/zopefoundation/zope.exceptions"
arch="noarch"
license="ZPL-2.1"
depends="python3 py3-zope-interface py3-setuptools"
source="https://files.pythonhosted.org/packages/source/${_pyname:0:1}/$_pyname/$_pyname-$pkgver.tar.gz"
builddir="$srcdir/$_pyname-$pkgver"
build() {
python3 setup.py build
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
d28a4434b27f6611040b290dcece26c1880982853092c89d5a8d74093cb9339a62834d7c3949d5ea28c4d3fc01c6f36180df22031cded6e4c963acfff65c2ec4 zope.exceptions-4.6.tar.gz
"