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, 25 Jun 2022 11:18:51
Message-Id: 1656155917.20503fe03bac7d6df95cc56abf477e787e5da6b1.mgorny@gentoo
1 commit: 20503fe03bac7d6df95cc56abf477e787e5da6b1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 25 09:39:46 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 25 11:18:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20503fe0
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.1.ebuild | 47 -----------------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/dev-python/pygit2/Manifest b/dev-python/pygit2/Manifest
17 index 59030476fafa..c5dc56a124e0 100644
18 --- a/dev-python/pygit2/Manifest
19 +++ b/dev-python/pygit2/Manifest
20 @@ -1,2 +1 @@
21 -DIST pygit2-1.9.1.gh.tar.gz 317487 BLAKE2B 56855e656eafc27f24d8d59a0f21e36c49d292d322e6809257036ec0673f88d3299bca76c8f1c1a16bc79d667f0c6a355467ac5960c9999b11c8eddbf398cec6 SHA512 cfc050ef8cb6af7eace49d2e2ca10c77893abcafa1b319e173d39553e01a595ba084e345dedff22e22806527ecaed5387584f813b30184931820bb2bb1c93e58
22 DIST pygit2-1.9.2.gh.tar.gz 750593 BLAKE2B 89eeb56edbb7f823c0439e511e3a525789483a80760f6dcfbbdea7f45f1e16241d9772b54288c0acdb471bfe62a457e8fe82ec520d808d01ee8d079076278761 SHA512 523af14ae418b56efd3c541fb306c3a799224db400053590f1676ace9b53ac4c731a1731081f245cd78ab5d233c9e67fa2e5c13e02b6f62de05123cd47a1a70a
23
24 diff --git a/dev-python/pygit2/pygit2-1.9.1.ebuild b/dev-python/pygit2/pygit2-1.9.1.ebuild
25 deleted file mode 100644
26 index 51bfbad8388d..000000000000
27 --- a/dev-python/pygit2/pygit2-1.9.1.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 ~riscv 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 -}