37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
# Template file for 'python-stevedore'
|
|
pkgname=python-stevedore
|
|
version=1.2.0
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="stevedore-${version}"
|
|
build_style=python-module
|
|
python_versions="2.7 3.4"
|
|
hostmakedepends="python-setuptools python3.4-setuptools python-pbr python3.4-pbr"
|
|
depends="python-six"
|
|
pycompile_module="stevedore"
|
|
short_desc="Manage dynamic plugins for Python2 applications"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://git.openstack.org/cgit/openstack/stevedore"
|
|
license="Apache-2.0"
|
|
distfiles="${PYPI_SITE}/s/stevedore/stevedore-${version}.tar.gz"
|
|
checksum=3f70db9052c26e66dac61cb73d8c6f5211373983d39872addab617c759db4b45
|
|
|
|
pre_build() {
|
|
# remove dependency on argparse; it's in python>=2.7,>=3.2 stdlib
|
|
sed -i '/argparse/d' requirements.txt
|
|
|
|
# remove dependency on pbr; it's not a runtime dependency
|
|
sed -i '/pbr/d' requirements.txt
|
|
}
|
|
|
|
python3.4-stevedore_package() {
|
|
noarch=yes
|
|
depends="python3.4-six"
|
|
pycompile_version="3.4"
|
|
pycompile_module="stevedore"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3.4
|
|
}
|
|
}
|