aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-zope-component/APKBUILD
blob: c2bfb79ce21e73289c59320730a33a7a8b2a8388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py3-zope-component
_pkgname=zope.component
pkgver=4.5
pkgrel=3
pkgdesc="Zope Component Architecture"
url="https://pypi.python.org/pypi/zope.component"
arch="noarch"
license="ZPL-2.1"
depends="
	py3-setuptools
	py3-zope-deferredimport
	py3-zope-deprecation
	py3-zope-event
	py3-zope-hookable
	py3-zope-interface
	"
checkdepends="python3-dev libffi-dev" # Required because pypi downloads dependencies for testing
source="$_pkgname-$pkgver.tar.gz::https://github.com/zopefoundation/zope.component/archive/$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver

replaces="py-zope-component" # Backwards compatibility
provides="py-zope-component=$pkgver-r$pkgrel" # Backwards compatibility

build() {
	python3 setup.py build
}

check() {
	python3 setup.py test
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="cca873bcb62b6eb60825c55fa8fe9704e505c9bec90f851921545d543c23e3995cc9d70ab9e7b8cc6b37853bbcffd09c93891f675ff113e68b56e23d8b28c912  zope.component-4.5.tar.gz"