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-greenlet/PKGBUILD Normal file
View File

@@ -0,0 +1,24 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=python-greenlet
pkgver=1.1.1
pkgrel=2
pkgdesc="Lightweight in-process concurrent programming"
license=('Expat' 'Python')
arch=('i686' 'x86_64')
url='https://pypi.org/project/greenlet/'
depends=('python')
makedepends=('python-setuptools')
source=("https://files.pythonhosted.org/packages/source/g/greenlet/greenlet-${pkgver}.tar.gz")
sha512sums=('156ad7dfcb73764818d5f6176b5c80dc5a3ac532db5af5ffe654033a5e336d35a9e9edadb3b37fa9bf5fc338f706baf3693dcfb550598d8f17f042f5a27b86f9')
build() {
cd greenlet-$pkgver
python setup.py build
}
package() {
cd greenlet-$pkgver
python setup.py install -O1 --root="$pkgdir"
install -Dm0644 LICENSE.PSF -t "$pkgdir"/usr/share/licenses/$pkgname
}