python-pexpect: update to 3.3; add python3.4 subpkg
Fix license.
This commit is contained in:
parent
1363a2532d
commit
69c480c322
|
@ -1,17 +1,38 @@
|
|||
# Template file for 'python-pexpect'
|
||||
pkgname=python-pexpect
|
||||
version=3.0
|
||||
version=3.3
|
||||
revision=1
|
||||
noarch=yes
|
||||
wrksrc="${pkgname/python-}-${version}"
|
||||
build_style=python-module
|
||||
hostmakedepends="python"
|
||||
makedepends="python-devel"
|
||||
noarch=yes
|
||||
pycompile_module="screen.py pxssh.py ANSI.py FSM.py fdpexpect.py pyexpect"
|
||||
python_versions="2.7 3.4"
|
||||
hostmakedepends="python-devel python3.4-devel"
|
||||
makedepends="${hostmakedepends}"
|
||||
depends="python"
|
||||
short_desc="Python module for spawning child applications and controlling them"
|
||||
pycompile_module="screen.py pxssh.py ANSI.py FSM.py fdpexpect.py pyexpect"
|
||||
short_desc="Python2 module for spawning child applications and controlling them"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
homepage="http://pexpect.readthedocs.org/en/latest/"
|
||||
license="MIT"
|
||||
distfiles="http://pypi.python.org/packages/source/p/${pkgname/python-/}/${pkgname/python-/}-${version}.tar.gz"
|
||||
checksum=1d6cee0fa5ab212f9ddac9852bab0df5fff11a173ed1bfde9346d5c8aa42d14c
|
||||
homepage="http://pexpect.readthedocs.org/"
|
||||
license="ISC"
|
||||
distfiles="https://pypi.python.org/packages/source/p/${pkgname/python-/}/${pkgname/python-/}-${version}.tar.gz"
|
||||
checksum=dfea618d43e83cfff21504f18f98019ba520f330e4142e5185ef7c73527de5ba
|
||||
|
||||
pre_build() {
|
||||
sed -i '1d' pexpect/FSM.py
|
||||
}
|
||||
|
||||
post_install() {
|
||||
vlicense LICENSE
|
||||
}
|
||||
|
||||
python3.4-pexpect_package() {
|
||||
noarch=yes
|
||||
depends="python3.4"
|
||||
pycompile_version="3.4"
|
||||
pycompile_module="screen.py pxssh.py ANSI.py FSM.py fdpexpect.py pyexpect"
|
||||
short_desc="${short_desc/Python2/Python3.4}"
|
||||
pkg_install() {
|
||||
vmove usr/lib/python3.4
|
||||
vlicense ${wrksrc}/LICENSE
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
python-pexpect
|
Loading…
Reference in New Issue