mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-30 13:02:27 +01:00
30 lines
858 B
Plaintext
30 lines
858 B
Plaintext
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Maintainer: Leo <thinkabit.ukim@gmail.com>
|
|
pkgname=py3-gitpython
|
|
pkgver=3.0.3
|
|
pkgrel=0
|
|
pkgdesc="Python3 Git Library"
|
|
options="!check" # Tests require a specific git configuration
|
|
url="https://github.com/gitpython-developers/GitPython"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="python3 py3-gitdb2"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-ddt py3-nose"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/gitpython-developers/GitPython/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/GitPython-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
nosetests
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="6584ab1de1893c153e5a913b47131cb19047ce884634fb0211c1948375727996638bed4c7b031082bbaffd2352ade008b3ea6c0209db935205172c2f4be38eb6 py3-gitpython-3.0.3.tar.gz"
|