blob: 7fecd52df4fa76aa367a0c12deee7e46b736b10c (
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
39
40
|
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py3-zope-component
_pkgname=zope.component
pkgver=4.6
pkgrel=0
pkgdesc="Zope Component Architecture"
# Tests install outside python modules via bdist_wheel which fails
options="!check"
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="725ff3775ebd867e21fc9ad5bd7fef4c293358169c12f098009fe0c13090953d3fe3e99fda5821d35293125c84bc17c156fbb54f1eb71d4a4fdfd330e2bccac0 zope.component-4.6.tar.gz"
|