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, 01 Feb 2020 05:59:38
Message-Id: 1580536769.56ff2c5a07d92d50546e52d98d438c9da28270f1.mgorny@gentoo
1 commit: 56ff2c5a07d92d50546e52d98d438c9da28270f1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 1 05:54:47 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 1 05:59:29 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56ff2c5a
7
8 dev-python/pygit2: Remove redundant version
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.1.ebuild | 42 -----------------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/dev-python/pygit2/Manifest b/dev-python/pygit2/Manifest
17 index 8964524e3c3..fd615a3257b 100644
18 --- a/dev-python/pygit2/Manifest
19 +++ b/dev-python/pygit2/Manifest
20 @@ -1,4 +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 DIST pygit2-1.0.3.tar.gz 501720 BLAKE2B ddfe228bb50df08c1b5e880f58be6b0ae111a10235b695ce93ef04b685507bda90cdccdacefd5400807cd19bc9c63b49061c2da73c89641fe9641c52a4ed16ab SHA512 debf4018e6daa938f44cf22f2acec1f850156e30ac44052e2edb8257f86a60453428356851cc495ae234df9cdbee922a6a7ad7886c9a6e3746b7315c71f0a3df
25
26 diff --git a/dev-python/pygit2/pygit2-1.0.1.ebuild b/dev-python/pygit2/pygit2-1.0.1.ebuild
27 deleted file mode 100644
28 index 920c961be99..00000000000
29 --- a/dev-python/pygit2/pygit2-1.0.1.ebuild
30 +++ /dev/null
31 @@ -1,42 +0,0 @@
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.28*
52 - >=dev-python/cffi-1.0:=[${PYTHON_USEDEP}]
53 -"
54 -DEPEND="${RDEPEND}
55 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
56 -
57 -src_prepare() {
58 - distutils-r1_src_prepare
59 -
60 - # unconditionally prevent it from using network
61 - sed -i -e '/def no_network/a \
62 - return True' test/utils.py || die
63 -
64 - # we need to move them away to prevent pytest from forcing '..'
65 - # for imports
66 - mkdir hack || die
67 - mv test hack/ || die
68 - ln -s hack/test test || die
69 -}
70 -
71 -python_test() {
72 - pytest -vv hack/test || die
73 -}