void-packages/srcpkgs/python-virtualenv-clone/template
Alessio Sergi 217e7d31f2 srcpkgs: remove python3.4-* transitional dummy packages
After more than a year the switch to python3 packages, it is time to say
them goodbye. So long, and thanks for all the fish.
2017-12-20 11:29:51 +01:00

34 lines
1 KiB
Bash

# Template file for 'python-virtualenv-clone'
pkgname=python-virtualenv-clone
version=0.2.6
revision=4
noarch=yes
wrksrc="${pkgname#*-}-${version}"
build_style=python-module
hostmakedepends="python-setuptools python3-setuptools"
depends="python-setuptools"
pycompile_module="clonevirtualenv.py"
short_desc="Script to clone virtualenvs (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://github.com/edwardgeorge/virtualenv-clone"
license="MIT"
distfiles="${PYPI_SITE}/v/${pkgname#*-}/${pkgname#*-}-${version}.tar.gz"
checksum=6b3be5cab59e455f08c9eda573d23006b7d6fb41fae974ddaa2b275c93cc4405
alternatives="virtualenv-clone:virtualenv-clone:/usr/bin/virtualenv-clone2"
post_install() {
vlicense LICENSE
}
python3-virtualenv-clone_package() {
noarch=yes
depends="python3-setuptools"
pycompile_module="clonevirtualenv.py"
short_desc="${short_desc/Python2/Python3}"
alternatives="virtualenv-clone:virtualenv-clone:/usr/bin/virtualenv-clone3"
pkg_install() {
vmove usr/bin/virtualenv-clone3
vmove usr/lib/python3*
vlicense LICENSE
}
}