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: Wed, 27 Apr 2022 06:46:46
Message-Id: 1651041996.605db49884fef7a1f01839865b28b85be753715d.mgorny@gentoo
1 commit: 605db49884fef7a1f01839865b28b85be753715d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 06:45:03 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 06:46:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=605db498
7
8 dev-python/pygit2: Remove old
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 deletions(-)
15
16 diff --git a/dev-python/pygit2/Manifest b/dev-python/pygit2/Manifest
17 index 089ed7e723e5..a5fbfe90b855 100644
18 --- a/dev-python/pygit2/Manifest
19 +++ b/dev-python/pygit2/Manifest
20 @@ -1,2 +1 @@
21 -DIST pygit2-1.9.0.gh.tar.gz 312349 BLAKE2B 067074d58887597cdce9b7bbebb96a8ec8629c4dc42c87c2a0a9a23849bc2e8e36763273c7d883ccfadbc9f71a3b4b5612a9a7b58e3cfb39475e568d85cbdc64 SHA512 8934f1099004a536b78973f74efc8854cbfb736369a0592c382fbc1325409105640235a2b3ce4602ad0dce863cb9ffd34b2359c9840d2abdadb55e2a43df18f9
22 DIST pygit2-1.9.1.gh.tar.gz 317487 BLAKE2B 56855e656eafc27f24d8d59a0f21e36c49d292d322e6809257036ec0673f88d3299bca76c8f1c1a16bc79d667f0c6a355467ac5960c9999b11c8eddbf398cec6 SHA512 cfc050ef8cb6af7eace49d2e2ca10c77893abcafa1b319e173d39553e01a595ba084e345dedff22e22806527ecaed5387584f813b30184931820bb2bb1c93e58
23
24 diff --git a/dev-python/pygit2/pygit2-1.9.0.ebuild b/dev-python/pygit2/pygit2-1.9.0.ebuild
25 deleted file mode 100644
26 index ef2034d47953..000000000000
27 --- a/dev-python/pygit2/pygit2-1.9.0.ebuild
28 +++ /dev/null
29 @@ -1,47 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python bindings for libgit2"
41 -HOMEPAGE="
42 - https://github.com/libgit2/pygit2/
43 - https://pypi.org/project/pygit2/"
44 -SRC_URI="
45 - https://github.com/libgit2/pygit2/archive/v${PV}.tar.gz
46 - -> ${P}.gh.tar.gz
47 -"
48 -
49 -LICENSE="GPL-2-with-linking-exception"
50 -SLOT="0"
51 -KEYWORDS="amd64 x86"
52 -
53 -DEPEND="
54 - =dev-libs/libgit2-1.4*:=
55 -"
56 -BDEPEND="
57 - >=dev-python/cffi-1.9.1:=[${PYTHON_USEDEP}]
58 -"
59 -RDEPEND="
60 - ${DEPEND}
61 - ${BDEPEND}
62 -"
63 -
64 -distutils_enable_tests pytest
65 -
66 -src_prepare() {
67 - distutils-r1_src_prepare
68 -
69 - # unconditionally prevent it from using network
70 - sed -i -e '/has_network/s:True:False:' test/utils.py || die
71 -}
72 -
73 -src_test() {
74 - rm -r pygit2 || die
75 - distutils-r1_src_test
76 -}