58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
# Template file for 'python-virtualenv'
|
|
pkgname=python-virtualenv
|
|
version=12.0.7
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="virtualenv-${version}"
|
|
build_style=python-module
|
|
python_versions="2.7 3.4"
|
|
hostmakedepends="python-setuptools python3.4-setuptools"
|
|
depends="python-setuptools"
|
|
pycompile_module="virtualenv.py"
|
|
short_desc="Virtual Python2 environment builder"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://virtualenv.pypa.io/"
|
|
license="MIT"
|
|
distfiles="${PYPI_SITE}/v/virtualenv/virtualenv-${version}.tar.gz"
|
|
checksum=d681db1766cdc8aa1b37eb18252c264b775f971166c2bf658a9618c1f3d28741
|
|
|
|
post_extract() {
|
|
cp -a ${wrksrc} /tmp/virtualenv-2.7
|
|
cp -a ${wrksrc} /tmp/virtualenv-3.4
|
|
mv /tmp/virtualenv-{2.7,3.4} ${wrksrc}
|
|
}
|
|
pre_build() {
|
|
cd ${wrksrc}/virtualenv-3.4
|
|
sed -i 's,virtualenv=,virtualenv3=,' setup.py
|
|
sed -i 's,#!/usr/bin/env python,&3.4,' virtualenv.py
|
|
}
|
|
do_build() {
|
|
cd ${wrksrc}/virtualenv-2.7
|
|
python setup.py build
|
|
|
|
cd ${wrksrc}/virtualenv-3.4
|
|
python3.4 setup.py build
|
|
}
|
|
do_install() {
|
|
cd ${wrksrc}/virtualenv-2.7
|
|
python setup.py install --root=${DESTDIR}
|
|
vlicense LICENSE.txt
|
|
|
|
cd ${wrksrc}/virtualenv-3.4
|
|
python3.4 setup.py install --root=${DESTDIR}
|
|
}
|
|
|
|
python3.4-virtualenv_package() {
|
|
noarch=yes
|
|
depends="python3.4-setuptools"
|
|
pycompile_version="3.4"
|
|
pycompile_module="virtualenv.py"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
pkg_install() {
|
|
vmove usr/bin/virtualenv-3.4
|
|
vmove usr/bin/virtualenv3
|
|
vmove usr/lib/python3.4
|
|
vlicense ${wrksrc}/LICENSE.txt
|
|
}
|
|
}
|