python-regex: fix pycompile_module, add python3 flavor
This commit is contained in:
parent
ddd3a7ea6c
commit
5020929f0c
|
@ -1,15 +1,23 @@
|
|||
# Template file for 'python-regex'
|
||||
pkgname=python-regex
|
||||
version=2017.06.23
|
||||
revision=1
|
||||
wrksrc=regex-$version
|
||||
revision=2
|
||||
wrksrc="regex-${version}"
|
||||
build_style=python-module
|
||||
hostmakedepends="python"
|
||||
makedepends="python-devel"
|
||||
short_desc="Improved python re implementation"
|
||||
pycompile_module="_regex_core.py regex.py test_regex.py"
|
||||
hostmakedepends="python-devel python3-devel"
|
||||
makedepends="python-devel python3-devel"
|
||||
short_desc="Alternative regular expression module (Python2)"
|
||||
maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
||||
license="PSF"
|
||||
homepage="https://pypi.python.org/pypi/regex/"
|
||||
distfiles="${PYPI_SITE}/r/regex/regex-$version.tar.gz"
|
||||
pycompile_module=regex
|
||||
checksum=808fde10fef1c8aa17a79a1cf9c923c9ccac443be9c6a9bb25622269f6eb647a
|
||||
|
||||
python3-regex_package() {
|
||||
short_desc="${short_desc/Python2/Python3}"
|
||||
pycompile_module="_regex_core.py regex.py test_regex.py"
|
||||
pkg_install() {
|
||||
vmove usr/lib/python3*
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
python-regex
|
Loading…
Reference in New Issue