mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-07 06:17:14 +02:00
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
# Contributor: Pierre-Gildas MILLON <pgmillon@gmail.com>
|
|
# Maintainer:
|
|
pkgname=py-pygit2
|
|
_pkgname=pygit2
|
|
pkgver=0.25.0
|
|
pkgrel=2
|
|
pkgdesc="Python bindings for libgit2"
|
|
url="https://github.com/libgit2/pygit2"
|
|
arch="all"
|
|
license="GPLv2"
|
|
_pydepends="py-cffi py-six"
|
|
makedepends="$_pydepends python2-dev python3-dev py-setuptools
|
|
libgit2-dev libssh2-dev libressl-dev"
|
|
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/libgit2/$_pkgname/archive/v${pkgver}.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build || return 1
|
|
python3 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_py2() {
|
|
replaces="$pkgname"
|
|
depends="${_pydepends//py-/py2-}"
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
depends="${_pydepends//py-/py3-}"
|
|
_py python3
|
|
}
|
|
|
|
_py() {
|
|
local python="$1"
|
|
pkgdesc="$pkgdesc (for $python)"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
cd "$builddir"
|
|
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
|
}
|
|
|
|
md5sums="0893c90d1c840ccf7dc79835470c1894 py-pygit2-0.25.0.tar.gz"
|
|
sha256sums="488dff456921b2763d68b6e8df3101b0c54dc00822548b090b6ee6e05c909416 py-pygit2-0.25.0.tar.gz"
|
|
sha512sums="5619b09d3bf7aca6ccab2c29d2b220ec6942ba9190b4d52c058bcc29036ff10e20ed869c6ebc8131dccba07205699c7d567c0db538e54db64bdb058c3a0ca080 py-pygit2-0.25.0.tar.gz"
|