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,24 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=python-fastimport
pkgver=0.9.8
pkgrel=2
pkgdesc="VCS fastimport / fastexport parser"
arch=('any')
url=https://github.com/jelmer/python-fastimport
license=('GPL-2')
depends=('python')
makedepends=('git-legacy' 'python-setuptools')
source=("http://deb.debian.org/debian/pool/main/p/python-fastimport/python-fastimport_${pkgver}.orig.tar.gz")
sha512sums=('5d195b641cf6138fdbc6c75781a4a6d3699e3ada9743bbe4c4264879b2da2f8a2e995e7cc3955a5241e9c7a7f24f8114474a0a30907f86e2e335e2be4669f588')
build() {
cd fastimport-${pkgver}
python setup.py build
}
package() {
cd fastimport-${pkgver}
python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
}