2021-08-09 12:57:32 +00:00

41 lines
946 B
Plaintext

# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=py3-gitpython
pkgver=3.1.20
pkgrel=0
pkgdesc="Python3 Git Library"
url="https://github.com/gitpython-developers/GitPython"
arch="noarch"
license="BSD-3-Clause"
depends="
git
py3-gitdb2
py3-typing-extensions
python3
"
makedepends="py3-setuptools"
checkdepends="
py3-pytest
py3-pytest-cov
py3-pytest-sugar
"
source="https://github.com/gitpython-developers/GitPython/archive/$pkgver/GitPython-$pkgver.tar.gz"
builddir="$srcdir/GitPython-$pkgver"
build() {
python3 setup.py build
}
check() {
# There are more tests but they require a specific git configuration
pytest test/test_config.py
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="
a3f74158d476c1b4b3a36a0ec080f80ed518908d21528925f002e33c861c66ca39a9f335c7eb2d7518d1161639931ea01fc2a6c1d07332a059ea3be47051de24 GitPython-3.1.20.tar.gz
"