mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
36 lines
1.2 KiB
Text
36 lines
1.2 KiB
Text
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Contributor: Pierre-Gildas MILLON <pgmillon@gmail.com>
|
|
# Maintainer: Drew DeVault <sir@cmpwn.com>
|
|
pkgname=py3-pygit2
|
|
_pkgname=pygit2
|
|
pkgver=1.2.0
|
|
pkgrel=0
|
|
pkgdesc="Python bindings for libgit2"
|
|
url="https://github.com/libgit2/pygit2"
|
|
arch="all"
|
|
license="GPL-2.0 WITH GCC-exception-2.0"
|
|
depends="py3-cffi py3-six"
|
|
makedepends="python3-dev py3-setuptools libgit2-dev"
|
|
checkdepends="py3-pytest py3-hypothesis py3-cached-property"
|
|
source="https://pypi.io/packages/source/p/$_pkgname/$_pkgname-$pkgver.tar.gz
|
|
skip-failing-test-on-s390x.patch
|
|
"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
replaces="py-pygit" # Backward compat
|
|
provides="py-pygit=$pkgver-r$pkgrel" # Backward compat
|
|
|
|
build() {
|
|
python3 setup.py build_ext --inplace
|
|
}
|
|
|
|
check() {
|
|
pytest-3
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="44ed29f8d10f4f784e6192b79f6a3924d64b22297cf335e9d005be578c3e0c77999855db802f71d2fcb5c053593ea2e9711e2cd191b3e185ec01c0d49e2ae1c6 pygit2-1.2.0.tar.gz
|
|
1bd1ed146ebfae659c20aa641f795606a32e485fab13a71db12345082a18a9de9f0129d8375ffb6bf8616c906c59d0b25fb440e1f00bcd56e3e10b9aac3363fd skip-failing-test-on-s390x.patch"
|