summaryrefslogtreecommitdiff
path: root/dev-python/pygit2/pygit2-1.9.1.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-03-23 08:56:56 +0100
committerMichał Górny <mgorny@gentoo.org>2022-03-23 09:58:40 +0100
commit010ba39b8a74c3c2a12911e963c5b00a243a095f (patch)
treebea5fb8891c4d67ab7d3517287f7b798e0c455e1 /dev-python/pygit2/pygit2-1.9.1.ebuild
parent7322a74b6310b7aa497b232b1772d6dac217880a (diff)
downloadgentoo-010ba39b8a74c3c2a12911e963c5b00a243a095f.tar.gz
gentoo-010ba39b8a74c3c2a12911e963c5b00a243a095f.tar.bz2
gentoo-010ba39b8a74c3c2a12911e963c5b00a243a095f.zip
dev-python/pygit2: Bump to 1.9.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pygit2/pygit2-1.9.1.ebuild')
-rw-r--r--dev-python/pygit2/pygit2-1.9.1.ebuild47
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-python/pygit2/pygit2-1.9.1.ebuild b/dev-python/pygit2/pygit2-1.9.1.ebuild
new file mode 100644
index 000000000000..89ada6d61a8a
--- /dev/null
+++ b/dev-python/pygit2/pygit2-1.9.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python bindings for libgit2"
+HOMEPAGE="
+ https://github.com/libgit2/pygit2/
+ https://pypi.org/project/pygit2/"
+SRC_URI="
+ https://github.com/libgit2/pygit2/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="GPL-2-with-linking-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+ =dev-libs/libgit2-1.4*:=
+"
+BDEPEND="
+ >=dev-python/cffi-1.9.1:=[${PYTHON_USEDEP}]
+"
+RDEPEND="
+ ${DEPEND}
+ ${BDEPEND}
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ distutils-r1_src_prepare
+
+ # unconditionally prevent it from using network
+ sed -i -e '/has_network/s:True:False:' test/utils.py || die
+}
+
+src_test() {
+ rm -r pygit2 || die
+ distutils-r1_src_test
+}