37 lines
901 B
Bash
37 lines
901 B
Bash
# Template file for 'python-parse'
|
|
pkgname=python-parse
|
|
version=1.9.0
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="parse-${version}"
|
|
build_style=python-module
|
|
pycompile_module="parse.py"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python"
|
|
short_desc="Parse strings using the format() syntax (Python2)"
|
|
maintainer="Eivind Uggedal <eivind@uggedal.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/r1chardj0n3s/parse"
|
|
distfiles="${PYPI_SITE}/p/parse/parse-${version}.tar.gz"
|
|
checksum=9dd6048ea212cd032a342f9f6aa2b7bc222f7407c7e37bdc2777fecd36897437
|
|
|
|
do_check() {
|
|
python2 setup.py test
|
|
python3 setup.py test
|
|
}
|
|
|
|
post_install() {
|
|
sed -n '/Copyright/,/SOFTWARE\./p' parse.py >LICENSE
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-parse_package() {
|
|
noarch=yes
|
|
depends="python3"
|
|
pycompile_module="parse.py"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE
|
|
}
|
|
}
|