public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygit2/
Date: Wed, 16 Mar 2022 08:07:59 +0000 (UTC)	[thread overview]
Message-ID: <1647417811.fcf2f835854862d91bf073907cb83fc280652605.mgorny@gentoo> (raw)

commit:     fcf2f835854862d91bf073907cb83fc280652605
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 16 08:03:31 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 08:03:31 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcf2f835

dev-python/pygit2: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/pygit2/Manifest            |  2 --
 dev-python/pygit2/pygit2-1.7.1.ebuild | 40 ---------------------------------
 dev-python/pygit2/pygit2-1.8.0.ebuild | 42 -----------------------------------
 3 files changed, 84 deletions(-)

diff --git a/dev-python/pygit2/Manifest b/dev-python/pygit2/Manifest
index cddd4b2024ef..8f8830d3e880 100644
--- a/dev-python/pygit2/Manifest
+++ b/dev-python/pygit2/Manifest
@@ -1,3 +1 @@
-DIST pygit2-1.7.1.tar.gz 281791 BLAKE2B 51f7f23752acf0abf6000f2262019db7503506267f0f5306bd53e0e15378447d2da564818c1b6efccc4759587aba6b4d7b142c760e4e2796445cd6056e949825 SHA512 a6232039b6364c7a0905aba20f7e27b43892b7067fa95fdd464438869453360ecdb885f2012cdf0eb0734c91dc79b60db894d1d0fee81922b9fb3cf920950937
-DIST pygit2-1.8.0.tar.gz 290516 BLAKE2B 3ec0035c5d9b7d15b62fdd15303f126ce005f99b632c2fb2a4a0294dac38458893d3fde137905862ede0286b2fb28d507c21092fe1a1178c3369b6b2fb07ee08 SHA512 f027331e1c0eae477048ac80b077361473dbddf2f137b0c6ebc0062a4b026e7fffd1fd7f6850f049dbbadb175a146b60eec87baf96f634e580a2d2237e40844c
 DIST pygit2-1.9.0.gh.tar.gz 312349 BLAKE2B 067074d58887597cdce9b7bbebb96a8ec8629c4dc42c87c2a0a9a23849bc2e8e36763273c7d883ccfadbc9f71a3b4b5612a9a7b58e3cfb39475e568d85cbdc64 SHA512 8934f1099004a536b78973f74efc8854cbfb736369a0592c382fbc1325409105640235a2b3ce4602ad0dce863cb9ffd34b2359c9840d2abdadb55e2a43df18f9

diff --git a/dev-python/pygit2/pygit2-1.7.1.ebuild b/dev-python/pygit2/pygit2-1.7.1.ebuild
deleted file mode 100644
index e1df5178654a..000000000000
--- a/dev-python/pygit2/pygit2-1.7.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for libgit2"
-HOMEPAGE="https://github.com/libgit2/pygit2 https://pypi.org/project/pygit2/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2-with-linking-exception"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-	=dev-libs/libgit2-1.3*:=
-	>=dev-python/cffi-1.0:=[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-	distutils-r1_src_prepare
-
-	# unconditionally prevent it from using network
-	sed -i -e '/has_network/s:True:False:' test/utils.py || die
-
-	# we need to move them away to prevent pytest from forcing '..'
-	# for imports
-	mkdir hack || die
-	mv test hack/ || die
-	ln -s hack/test test || die
-}
-
-python_test() {
-	epytest hack/test
-}

diff --git a/dev-python/pygit2/pygit2-1.8.0.ebuild b/dev-python/pygit2/pygit2-1.8.0.ebuild
deleted file mode 100644
index 61462723957e..000000000000
--- a/dev-python/pygit2/pygit2-1.8.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for libgit2"
-HOMEPAGE="https://github.com/libgit2/pygit2 https://pypi.org/project/pygit2/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2-with-linking-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="
-	=dev-libs/libgit2-1.3*:=
-"
-BDEPEND="
-	>=dev-python/cffi-1.0:=[${PYTHON_USEDEP}]
-"
-RDEPEND="
-	${DEPEND}
-	${BDEPEND}
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-	distutils-r1_src_prepare
-
-	# unconditionally prevent it from using network
-	sed -i -e '/has_network/s:True:False:' test/utils.py || die
-}
-
-src_test() {
-	rm -r pygit2 || die
-	distutils-r1_src_test
-}


             reply	other threads:[~2022-03-16  8:08 UTC|newest]

Thread overview: 144+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-16  8:07 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-09  5:26 [gentoo-commits] repo/gentoo:master commit in: dev-python/pygit2/ Michał Górny
2025-01-06 13:36 WANG Xuerui
2024-10-26 15:34 Michał Górny
2024-10-26 15:21 Arthur Zamarin
2024-10-26 13:15 Michał Górny
2024-10-12  4:59 Michał Górny
2024-07-27 10:06 Michał Górny
2024-07-27  9:08 Arthur Zamarin
2024-07-27  6:40 Arthur Zamarin
2024-07-07 18:59 Arthur Zamarin
2024-06-20 17:43 Sam James
2024-06-20 13:04 Sam James
2024-06-15  4:22 Michał Górny
2024-05-19  6:02 Michał Górny
2024-05-18  7:47 Michał Górny
2024-03-02 11:52 Michał Górny
2024-03-02 11:27 Arthur Zamarin
2024-03-02 10:21 Arthur Zamarin
2024-02-11 16:02 Michał Górny
2024-02-11 15:13 Sam James
2024-02-11 11:11 Sam James
2024-02-11  3:35 Michał Górny
2024-01-27  8:57 Michał Górny
2023-12-09 15:47 Michał Górny
2023-12-09 15:30 Michał Górny
2023-12-09 14:17 Michał Górny
2023-12-08 16:49 Michał Górny
2023-12-08 13:18 Arthur Zamarin
2023-12-08 11:08 Sam James
2023-11-21 19:05 Michał Górny
2023-10-31  7:53 Michał Górny
2023-09-27 16:07 Michał Górny
2023-09-25  2:55 Michał Górny
2023-07-28  9:47 Michał Górny
2023-07-28  9:37 Sam James
2023-07-28  7:56 Sam James
2023-06-27 11:36 Michał Górny
2023-06-27  9:08 Jakov Smolić
2023-06-27  6:43 Sam James
2023-06-27  3:54 Michał Górny
2023-05-27 13:21 Michał Górny
2023-05-08  4:31 Michał Górny
2023-05-03  7:57 Michał Górny
2023-05-03  6:39 Arthur Zamarin
2023-05-03  6:38 Arthur Zamarin
2023-04-02  2:55 Michał Górny
2022-12-10 15:46 Michał Górny
2022-11-11 14:31 Michał Górny
2022-11-07  5:54 Michał Górny
2022-10-03  9:39 Michał Górny
2022-10-03  8:24 Agostino Sarubbo
2022-10-03  0:44 Sam James
2022-08-29 18:40 Arthur Zamarin
2022-08-27  6:26 Michał Górny
2022-08-26 23:28 Sam James
2022-08-26 23:27 Sam James
2022-07-25  7:12 Michał Górny
2022-06-25 11:18 Michał Górny
2022-06-25  9:01 Agostino Sarubbo
2022-06-25  8:54 Agostino Sarubbo
2022-05-25  7:12 Michał Górny
2022-05-16 20:56 Jakov Smolić
2022-04-27  6:46 Michał Górny
2022-04-26 22:44 Sam James
2022-04-26 22:43 Sam James
2022-03-23  8:58 Michał Górny
2022-03-15 18:16 Jakov Smolić
2022-02-22 18:55 Michał Górny
2021-12-20 23:29 Sam James
2021-12-20 10:37 Jakov Smolić
2021-11-19 22:24 Michał Górny
2021-11-11  8:07 Michał Górny
2021-10-31 17:58 Sam James
2021-10-31 17:55 Sam James
2021-10-08 19:47 Michał Górny
2021-09-03 17:59 Sam James
2021-07-13  6:44 Michał Górny
2021-07-13  0:05 Sam James
2021-07-12 22:11 Sam James
2021-06-20  5:51 Michał Górny
2021-06-05 17:59 Michał Górny
2021-06-01 21:37 Michał Górny
2021-02-26 10:41 Michał Górny
2021-02-26 10:12 Agostino Sarubbo
2021-02-26  8:09 Agostino Sarubbo
2021-01-23 23:30 Michał Górny
2020-12-20 20:34 Michał Górny
2020-12-20 16:40 Thomas Deutschmann
2020-11-06 23:14 Michał Górny
2020-11-03  8:24 Michał Górny
2020-11-02 23:51 Sam James
2020-10-25 21:34 Thomas Deutschmann
2020-09-19  7:21 Michał Górny
2020-05-04  9:37 Michał Górny
2020-05-02  6:43 Michał Górny
2020-04-26 16:53 Michał Górny
2020-04-06 12:02 Michał Górny
2020-03-19 17:20 Michał Górny
2020-03-11  6:35 Michał Górny
2020-03-07 14:30 Michał Górny
2020-03-02  5:42 Michał Górny
2020-02-17 12:21 Agostino Sarubbo
2020-02-17 12:13 Agostino Sarubbo
2020-02-01  5:59 Michał Górny
2020-02-01  5:59 Michał Górny
2020-01-11 15:17 Michał Górny
2019-12-26 11:27 Michał Górny
2019-12-22  8:28 Michał Górny
2019-08-19  4:29 Michał Górny
2019-08-18 21:51 Agostino Sarubbo
2019-08-16 22:38 Thomas Deutschmann
2019-06-08  8:00 Michał Górny
2019-06-08  8:00 Michał Górny
2019-05-27 14:02 Michał Górny
2019-04-19 11:46 Michał Górny
2019-03-28 13:49 Michał Górny
2019-01-20 10:42 Michał Górny
2018-10-06 15:31 Michał Górny
2018-09-17  6:59 Michał Górny
2018-07-18 22:11 Michał Górny
2018-07-18 22:11 Michał Górny
2018-06-03  6:25 Michał Górny
2018-05-27 20:14 Mikle Kolyada
2018-05-27 13:01 Thomas Deutschmann
2018-03-31  8:03 Michał Górny
2018-03-24  8:42 Michał Górny
2018-01-26 15:03 Mikle Kolyada
2017-12-27 12:08 Michał Górny
2017-12-27 12:08 Michał Górny
2017-09-19 11:08 Michał Górny
2017-08-24 15:53 Michał Górny
2017-08-24  7:09 Michał Górny
2017-05-14 10:45 Manuel Rüger
2017-05-02 13:11 Michał Górny
2017-02-13  9:44 Zac Medico
2017-01-24 13:01 Manuel Rüger
2016-11-06 23:13 Manuel Rüger
2016-11-04  0:27 Tim Harder
2016-10-10 22:37 Manuel Rüger
2016-08-08  7:12 Tim Harder
2016-01-02 10:20 Justin Lecher
2015-09-15  0:41 Tim Harder
2015-08-28 23:58 Tim Harder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1647417811.fcf2f835854862d91bf073907cb83fc280652605.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox