python-pexpect: drop package

This commit is contained in:
Đoàn Trần Công Danh 2020-09-20 19:53:49 +07:00
parent fb13dc231b
commit 78b14ae2c4
3 changed files with 28 additions and 42 deletions

View file

@ -1,41 +0,0 @@
# Template file for 'python-pexpect'
pkgname=python-pexpect
version=4.7.0
revision=2
archs=noarch
wrksrc="pexpect-${version}"
build_style=python-module
pycompile_module="pexpect"
hostmakedepends="python-setuptools python3-setuptools"
depends="python-ptyprocess"
checkdepends="python3-pytest python3-ptyprocess mdocml"
short_desc="Python2 module for spawning child applications and controlling them"
maintainer="Alessio Sergi <al3hex@gmail.com>"
license="ISC"
homepage="https://pexpect.readthedocs.io/"
distfiles="${PYPI_SITE}/p/pexpect/pexpect-${version}.tar.gz"
checksum=9e2c1fd0e6ee3a49b28f95d4b33bc389c89b20af6a1255906e90ff1262ce62eb
do_check() {
# the mdcocml is for test
# REPLWrapTestCase.test_pager_as_cat
python3 -m pytest
}
post_install() {
# drop asyncio stuff from python2
# https://github.com/pexpect/pexpect/issues/290
rm -f ${DESTDIR}/usr/lib/python2*/site-packages/pexpect/_async.py
vlicense LICENSE
}
python3-pexpect_package() {
archs=noarch
depends="python3-ptyprocess"
pycompile_module="pexpect"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/lib/python3*
vlicense LICENSE
}
}

View file

@ -1 +0,0 @@
python-pexpect

View file

@ -0,0 +1,28 @@
# Template file for 'python3-pexpect'
pkgname=python3-pexpect
version=4.7.0
revision=3
wrksrc="pexpect-${version}"
build_style=python3-module
hostmakedepends="python3-setuptools"
depends="python3-ptyprocess"
checkdepends="python3-pytest python3-ptyprocess mdocml"
short_desc="Python3 module for spawning child applications and controlling them"
maintainer="Orphaned <orphan@voidlinux.org>"
license="ISC"
homepage="https://pexpect.readthedocs.io/"
distfiles="${PYPI_SITE}/p/pexpect/pexpect-${version}.tar.gz"
checksum=9e2c1fd0e6ee3a49b28f95d4b33bc389c89b20af6a1255906e90ff1262ce62eb
do_check() {
# the mdcocml is for test
# REPLWrapTestCase.test_pager_as_cat
python3 -m pytest
}
post_install() {
# drop asyncio stuff from python2
# https://github.com/pexpect/pexpect/issues/290
rm -f ${DESTDIR}/usr/lib/python3*/site-packages/pexpect/_async.py
vlicense LICENSE
}