* update python-cmd2 to 2.4.3-3

This commit is contained in:
Alexander Baldeck 2024-05-10 18:12:07 +02:00
parent fc8d62abb4
commit 0c95cc17f7

View File

@ -5,31 +5,31 @@
pkgname=python-cmd2
pkgver=2.4.3
_commit=031832a76b7a9e25d708153085d18d5366ff318d
pkgrel=2
pkgrel=3
pkgdesc="A tool for building interactive command line apps"
arch=(any)
url="https://github.com/python-cmd2/cmd2"
license=('MIT')
depends=('python-attrs' 'python-colorama' 'python-pyperclip' 'python-wcwidth')
makedepends=('git' 'python-setuptools-scm')
checkdepends=('python-pytest-cov' 'python-pytest-mock' 'python-pytest-runner' 'python-pytest-xdist'
'vi')
makedepends=('git' 'python-setuptools-scm' 'python-build' 'python-installer' 'python-wheel')
checkdepends=('python-pytest-cov' 'python-pytest-mock' 'python-pytest-xdist' 'vi')
source=("git+https://github.com/python-cmd2/cmd2.git#commit=$_commit")
sha512sums=('SKIP')
build() {
cd cmd2
python setup.py build
python -m build --wheel --no-isolation
}
check() {
cd cmd2
python setup.py pytest
PYTHONPATH="$PWD/cmd2" pytest
}
package() {
cd cmd2
python setup.py install --root="$pkgdir" --optimize=1
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}
# vim:set ts=2 sw=2 et: