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

View File

@@ -0,0 +1,25 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
_name=setuptools_scm
pkgname=tauthon-setuptools-scm
pkgver=5.0.2
pkgrel=1
pkgdesc="Handles managing your python package versions in scm metadata"
arch=('any')
url="https://github.com/pypa/setuptools_scm"
license=('Expat')
depends=('tauthon-setuptools')
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz")
sha512sums=('1e92d03e2d8473425c146a885eb641e98895c43afebcd3c66c1455ace2d81f187b87681072f8aacc5e8be166577f00138cc7c53e4b7d77cb1b598f835b72b010')
build() {
cd $_name-$pkgver
tauthon setup.py build
tauthon setup.py egg_info
}
package() {
cd $_name-$pkgver
tauthon setup.py install --root "$pkgdir" --optimize=1 --skip-build
install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
}