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