mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
26 lines
868 B
Text
26 lines
868 B
Text
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Maintainer:
|
|
pkgname=py3-zope-exceptions
|
|
_pkgname=zope.exceptions
|
|
pkgver=4.3
|
|
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/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="348c8edb0246bb2035ca5c1bcfaca7d3be2525157e2c9267a59a061c8ba749b364428e3d6a3aa3f967306abd0a319e4d6fa935b7fc35fff3bb53960015505695 zope.exceptions-4.3.tar.gz"
|