initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

24
python-typed-ast/PKGBUILD Normal file
View File

@@ -0,0 +1,24 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=python-typed-ast
pkgver=1.5.4
pkgrel=1
pkgdesc="AST with PEP 484 type comments support"
arch=('i686' 'x86_64')
url="https://github.com/python/typed_ast"
license=('Apache-2.0' 'Python')
depends=('python')
makedepends=('python-setuptools')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/python/typed_ast/archive/${pkgver}.tar.gz")
sha512sums=('264abb6742ff3bf5680655250fad7793dc346d70c6093d25364e01583b1962df8878cbd9ae088d5552b5b3bd5433de027f21b9db655ffaf66f6fe12a66caba40')
build(){
cd "typed_ast-$pkgver"
python setup.py build
}
package(){
cd "typed_ast-$pkgver"
python setup.py install --prefix="usr/" --root="$pkgdir/" --optimize=1 --skip-build
install -Dm644 LICENSE -t $pkgdir/usr/share/licenses/$pkgname
}