mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
42 lines
1.2 KiB
Text
42 lines
1.2 KiB
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-zope-component
|
|
_pyname=zope.component
|
|
pkgver=5.1.0
|
|
pkgrel=1
|
|
pkgdesc="Zope Component Architecture"
|
|
# Tests install outside python modules via bdist_wheel which fails
|
|
options="!check"
|
|
url="https://pypi.org/project/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="$_pyname-$pkgver.tar.gz::https://github.com/zopefoundation/zope.component/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pyname-$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 --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
6fac757f13dbffc6d1b8aa7bef7d196b59d70f7aa78a4a5ed7260179e263819e6bb9b82cb9cf7e31ab3d33c7d49fdb32ecbbcfe2a76696e7ebbd8c1dbb38b987 zope.component-5.1.0.tar.gz
|
|
"
|