Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygit2/
Date: Tue, 22 Feb 2022 18:55:15
Message-Id: 1645556103.668832ca444a7765deb364ff2f5df892306d2ab0.mgorny@gentoo
1 commit: 668832ca444a7765deb364ff2f5df892306d2ab0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 22 18:01:10 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 22 18:55:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=668832ca
7
8 dev-python/pygit2: Bump to 1.9.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pygit2/Manifest | 1 +
13 dev-python/pygit2/pygit2-1.9.0.ebuild | 47 +++++++++++++++++++++++++++++++++++
14 2 files changed, 48 insertions(+)
15
16 diff --git a/dev-python/pygit2/Manifest b/dev-python/pygit2/Manifest
17 index 9553e6420ad3..cddd4b2024ef 100644
18 --- a/dev-python/pygit2/Manifest
19 +++ b/dev-python/pygit2/Manifest
20 @@ -1,2 +1,3 @@
21 DIST pygit2-1.7.1.tar.gz 281791 BLAKE2B 51f7f23752acf0abf6000f2262019db7503506267f0f5306bd53e0e15378447d2da564818c1b6efccc4759587aba6b4d7b142c760e4e2796445cd6056e949825 SHA512 a6232039b6364c7a0905aba20f7e27b43892b7067fa95fdd464438869453360ecdb885f2012cdf0eb0734c91dc79b60db894d1d0fee81922b9fb3cf920950937
22 DIST pygit2-1.8.0.tar.gz 290516 BLAKE2B 3ec0035c5d9b7d15b62fdd15303f126ce005f99b632c2fb2a4a0294dac38458893d3fde137905862ede0286b2fb28d507c21092fe1a1178c3369b6b2fb07ee08 SHA512 f027331e1c0eae477048ac80b077361473dbddf2f137b0c6ebc0062a4b026e7fffd1fd7f6850f049dbbadb175a146b60eec87baf96f634e580a2d2237e40844c
23 +DIST pygit2-1.9.0.gh.tar.gz 312349 BLAKE2B 067074d58887597cdce9b7bbebb96a8ec8629c4dc42c87c2a0a9a23849bc2e8e36763273c7d883ccfadbc9f71a3b4b5612a9a7b58e3cfb39475e568d85cbdc64 SHA512 8934f1099004a536b78973f74efc8854cbfb736369a0592c382fbc1325409105640235a2b3ce4602ad0dce863cb9ffd34b2359c9840d2abdadb55e2a43df18f9
24
25 diff --git a/dev-python/pygit2/pygit2-1.9.0.ebuild b/dev-python/pygit2/pygit2-1.9.0.ebuild
26 new file mode 100644
27 index 000000000000..89ada6d61a8a
28 --- /dev/null
29 +++ b/dev-python/pygit2/pygit2-1.9.0.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python bindings for libgit2"
42 +HOMEPAGE="
43 + https://github.com/libgit2/pygit2/
44 + https://pypi.org/project/pygit2/"
45 +SRC_URI="
46 + https://github.com/libgit2/pygit2/archive/v${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +LICENSE="GPL-2-with-linking-exception"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +
54 +DEPEND="
55 + =dev-libs/libgit2-1.4*:=
56 +"
57 +BDEPEND="
58 + >=dev-python/cffi-1.9.1:=[${PYTHON_USEDEP}]
59 +"
60 +RDEPEND="
61 + ${DEPEND}
62 + ${BDEPEND}
63 +"
64 +
65 +distutils_enable_tests pytest
66 +
67 +src_prepare() {
68 + distutils-r1_src_prepare
69 +
70 + # unconditionally prevent it from using network
71 + sed -i -e '/has_network/s:True:False:' test/utils.py || die
72 +}
73 +
74 +src_test() {
75 + rm -r pygit2 || die
76 + distutils-r1_src_test
77 +}