vp-build/srcpkgs/python-future/template

44 lines
1.3 KiB
Bash

# Template file for 'python-future'
pkgname=python-future
version=0.17.1
revision=1
noarch=yes
wrksrc="future-${version}"
build_style=python-module
pycompile_module="_dummy_thread _markupbase _thread builtins
copyreg future html http libfuturize libpasteurize past queue reprlib
socketserver tkinter winreg xmlrpc"
hostmakedepends="python-setuptools python3-setuptools"
depends="python-setuptools"
short_desc="Clean single-source support for Python 3 and 2 (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://python-future.org/"
license="MIT"
distfiles="${PYPI_SITE}/f/future/future-${version}.tar.gz"
checksum=67045236dcfd6816dc439556d009594abf643e5eb48992e36beac09c2ca659b8
alternatives="
future:futurize:/usr/bin/futurize2
future:pasteurize:/usr/bin/pasteurize2"
post_install() {
vlicense LICENSE.txt
}
python3-future_package() {
alternatives="
future:futurize:/usr/bin/futurize3
future:pasteurize:/usr/bin/pasteurize3"
noarch=yes
pycompile_module="_dummy_thread _markupbase _thread builtins
copyreg future html http libfuturize libpasteurize past queue reprlib
socketserver tkinter winreg xmlrpc"
depends="python3-setuptools"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/bin/*3
vmove usr/lib/python3*
vlicense LICENSE.txt
}
}