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: Sat, 07 Mar 2020 14:30:26
Message-Id: 1583591399.ef173e6c95a284f5dc9e961f15dd2f820b22bc7d.mgorny@gentoo
1 commit: ef173e6c95a284f5dc9e961f15dd2f820b22bc7d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 7 14:19:35 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 7 14:29:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef173e6c
7
8 dev-python/pygit2: Bump to 1.1.1
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.1.1.ebuild | 43 +++++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/dev-python/pygit2/Manifest b/dev-python/pygit2/Manifest
17 index 423def97f73..012ff3ed79a 100644
18 --- a/dev-python/pygit2/Manifest
19 +++ b/dev-python/pygit2/Manifest
20 @@ -2,3 +2,4 @@ DIST pygit2-0.28.2.tar.gz 496469 BLAKE2B 1173401d4555f6f40eaf5a27d9c0e83214b66af
21 DIST pygit2-1.0.2.tar.gz 501736 BLAKE2B c8f1a7e4a3257af42d97b0fae8e14f26968e2be535e74863c97363e77e37774d929fa239bbb46982bd398a3c2032f3b3122bd42aa41760d3827a18b7b0b22663 SHA512 c76bf8ce2847ec8915201a714f076488a0dda4a790762293c02709b8b88a9a2b898f97e61565cf41cd11b10bebe2e1d76b5643ff2e86f9bf6a9517c87a988769
22 DIST pygit2-1.0.3.tar.gz 501720 BLAKE2B ddfe228bb50df08c1b5e880f58be6b0ae111a10235b695ce93ef04b685507bda90cdccdacefd5400807cd19bc9c63b49061c2da73c89641fe9641c52a4ed16ab SHA512 debf4018e6daa938f44cf22f2acec1f850156e30ac44052e2edb8257f86a60453428356851cc495ae234df9cdbee922a6a7ad7886c9a6e3746b7315c71f0a3df
23 DIST pygit2-1.1.0.tar.gz 2992715 BLAKE2B c6eea4404eb69cad5c5f6560f48d12cb5a0cabd31dbf3471cd9ac0f5aac9c01cf6a3464b80734d3bf836277dafa9c2bf46d1e8ff35747893507385fbcca923d7 SHA512 ee4391dbc3df3450e0630fa521a16913247d6757498b957a06698d56205bca3d8656ad3463d9ed49b8a2d5ff77315363d9341361acfcc09badab19c51c55d9a3
24 +DIST pygit2-1.1.1.tar.gz 217896 BLAKE2B 0f1a6ea37d0622259b07553253177f7097ba16912306e5dd007a02a238503f879df3eea5b23d197ffee43f83b1409999fec2094d73fe38b30b8e349d37a84ec3 SHA512 e57600f1eb53647106cdc703d8adcdff7742bde8d3d95d8a879275ec1ac4a4a569d6f7da68a9bf49e82f491980e19abf96e55029f3fbae52371632e6bd3b2ab3
25
26 diff --git a/dev-python/pygit2/pygit2-1.1.1.ebuild b/dev-python/pygit2/pygit2-1.1.1.ebuild
27 new file mode 100644
28 index 00000000000..9b39d97782d
29 --- /dev/null
30 +++ b/dev-python/pygit2/pygit2-1.1.1.ebuild
31 @@ -0,0 +1,43 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python3_{6,7,8} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python bindings for libgit2"
41 +HOMEPAGE="https://github.com/libgit2/pygit2 https://pypi.org/project/pygit2/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="GPL-2-with-linking-exception"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="test"
48 +RESTRICT="!test? ( test )"
49 +
50 +RDEPEND="
51 + =dev-libs/libgit2-0.99*
52 + dev-python/cached-property[${PYTHON_USEDEP}]
53 + >=dev-python/cffi-1.0:=[${PYTHON_USEDEP}]
54 +"
55 +DEPEND="${RDEPEND}
56 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
57 +
58 +src_prepare() {
59 + distutils-r1_src_prepare
60 +
61 + # unconditionally prevent it from using network
62 + sed -i -e '/def no_network/a \
63 + return True' test/utils.py || die
64 +
65 + # we need to move them away to prevent pytest from forcing '..'
66 + # for imports
67 + mkdir hack || die
68 + mv test hack/ || die
69 + ln -s hack/test test || die
70 +}
71 +
72 +python_test() {
73 + pytest -vv hack/test || die
74 +}