diff options
Diffstat (limited to 'python-asteval/PKGBUILD')
-rw-r--r-- | python-asteval/PKGBUILD | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/python-asteval/PKGBUILD b/python-asteval/PKGBUILD deleted file mode 100644 index 07d59556d..000000000 --- a/python-asteval/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# Contributor: Francois Boulogne <fboulogne at april dot org> -# Maintainer: Erich Eckner <arch at eckner dot net> - -pkgname='python-asteval' -_pkgname="${pkgname#*-}" -pkgver=0.9.25 -pkgrel=60 -pkgdesc='Minimal Python AST Evaluator' -arch=('any') -url='https://newville.github.io/asteval/' -license=('MIT') -depends=( - 'python<3.11' - 'python>=3.10') -checkdepends=( - 'python-nose' - 'python-pytest') -makedepends=( - 'python-setuptools') -source=( - "git+https://github.com/newville/${_pkgname}?commit=${pkgver}") -sha512sums=('SKIP') - -build() { - cd "$srcdir/${_pkgname}" - python setup.py build -} - -check() { - cd "$srcdir/${_pkgname}" - nosetests3 tests -} - -package(){ - cd "$srcdir/${_pkgname}" - python setup.py install --root="$pkgdir/" --optimize=1 -} |