54 lines
1.4 KiB
Bash
54 lines
1.4 KiB
Bash
# Template file for 'python-Pyro4'
|
|
pkgname=python-Pyro4
|
|
version=4.40
|
|
revision=1
|
|
wrksrc="${pkgname#*-}-${version}"
|
|
noarch=yes
|
|
build_style=python-module
|
|
python_versions="2.7 3.4"
|
|
pycompile_module="Pyro4"
|
|
hostmakedepends="python-setuptools python3.4-setuptools"
|
|
depends="python-setuptools python-serpent"
|
|
short_desc="Distributed Object Middleware (IPC/RPC) for Python2"
|
|
maintainer="Markus Berger <pulux@pf4sh.de>"
|
|
license="MIT"
|
|
homepage="http://pythonhosted.org/Pyro4/"
|
|
distfiles="${PYPI_SITE}/P/Pyro4/Pyro4-${version}.tar.gz"
|
|
checksum=00423d3710f60b2da146075a59e17bfa837f556ed2c8acafe05bc209dcaac3e9
|
|
|
|
pre_build() {
|
|
cp -a ${wrksrc} /tmp/${pkgname#*-}-2.7
|
|
cp -a ${wrksrc} /tmp/${pkgname#*-}-3.4
|
|
mv /tmp/${pkgname#*-}-{2.7,3.4} ${wrksrc}
|
|
|
|
cd ${pkgname#*-}-3.4
|
|
for f in check-config flameserver httpgateway ns{,c} test-echoserver; do
|
|
sed -i "s,\(pyro4-${f}\) =,\13 =," setup.py
|
|
done
|
|
}
|
|
do_build() {
|
|
for pyver in $python_versions; do
|
|
cd ${wrksrc}/${pkgname#*-}-${pyver}
|
|
python${pyver} setup.py build
|
|
done
|
|
}
|
|
do_install() {
|
|
for pyver in $python_versions; do
|
|
cd ${wrksrc}/${pkgname#*-}-${pyver}
|
|
python${pyver} setup.py install --root=${DESTDIR}
|
|
done
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3.4-Pyro4_package() {
|
|
noarch=yes
|
|
depends="python-setuptools python3.4-serpent"
|
|
pycompile_version="3.4"
|
|
pycompile_module="Pyro4"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
pkg_install() {
|
|
vmove usr/bin/*3
|
|
vmove usr/lib/python3.4
|
|
vlicense LICENSE
|
|
}
|
|
}
|