34 lines
1.1 KiB
Bash
34 lines
1.1 KiB
Bash
# Template file for 'python-zope.interface'
|
|
pkgname=python-zope.interface
|
|
version=5.2.0
|
|
revision=1
|
|
wrksrc="${pkgname#*-}-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
makedepends="python-devel python3-devel"
|
|
depends="python-setuptools"
|
|
short_desc="Zope interfaces for Python2"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
license="ZPL-2.1"
|
|
homepage="https://github.com/zopefoundation/zope.interface"
|
|
changelog="https://raw.githubusercontent.com/zopefoundation/zope.interface/master/CHANGES.rst"
|
|
distfiles="${PYPI_SITE}/z/zope.interface/zope.interface-${version}.tar.gz"
|
|
checksum=8251f06a77985a2729a8bdbefbae79ee78567dddc3acbd499b87e705ca59fe24
|
|
|
|
post_install() {
|
|
# zope.interface provides the zope namespace
|
|
for py_sitelib in $py2_sitelib $py3_sitelib; do
|
|
vinstall src/zope/__init__.py 644 ${py_sitelib}/zope
|
|
done
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
|
|
python3-zope.interface_package() {
|
|
depends="python3-setuptools"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
}
|