2021-06-14 19:51:53 +00:00
|
|
|
# Description: Run a subprocess in a pseudo terminal
|
|
|
|
# URL: https://github.com/pexpect/ptyprocess
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2023-04-02 19:22:09 +02:00
|
|
|
# Depends on: python3-build python3-flit-core python3-installer
|
2021-06-14 19:51:53 +00:00
|
|
|
|
|
|
|
name=python3-ptyprocess
|
|
|
|
version=0.7.0
|
|
|
|
release=1
|
|
|
|
source=(https://pypi.io/packages/source/p/ptyprocess/ptyprocess-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ptyprocess-$version
|
2022-07-10 18:06:19 +02:00
|
|
|
|
2023-04-02 19:22:09 +02:00
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
|
|
/usr/bin/python3 -m installer --compile-bytecode 0 --destdir=$PKG dist/*.whl
|
2021-06-14 19:51:53 +00:00
|
|
|
}
|