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/fastimport/
Date: Wed, 09 Jun 2021 07:18:29
Message-Id: 1623223103.de4aafe779ad149ccd933c0f2e58491659d463bb.mgorny@gentoo
1 commit: de4aafe779ad149ccd933c0f2e58491659d463bb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 9 07:17:45 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 9 07:18:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de4aafe7
7
8 dev-python/fastimport: Remove 0.9.12
9
10 0.9.12 has zero changes since 0.9.10. I've originally added it without
11 keywords to silence repology but this is going to bite us later when
12 bumping, so just remove it.
13
14 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
15
16 dev-python/fastimport/Manifest | 1 -
17 dev-python/fastimport/fastimport-0.9.12.ebuild | 21 ---------------------
18 2 files changed, 22 deletions(-)
19
20 diff --git a/dev-python/fastimport/Manifest b/dev-python/fastimport/Manifest
21 index 2d44d9e72aa..dc0fac2f32f 100644
22 --- a/dev-python/fastimport/Manifest
23 +++ b/dev-python/fastimport/Manifest
24 @@ -1,2 +1 @@
25 DIST fastimport-0.9.11.tar.gz 41764 BLAKE2B afb82878ea1996894ff71fe99edc5ca26d45f98eedf7a8a6e85af45949e1e81c2112de9fc2c026438306a8a0e89c484063954ba7d2ff9a80c6b71ab40174f8d4 SHA512 e1b7e4897542ef6f33af51e1018340a6807688e44424e4e7e482b3347264d58d4290678cc2cfa230af500a53cabdcf35c9e7b03c8ff0f1ec3e6e0a9e869a1455
26 -DIST fastimport-0.9.12.tar.gz 41765 BLAKE2B fed4b350c5ff1eda194b0ec89da240ddf1f1bb48e08c16597d85eb443c0ff39b6e0af00c70da14a99fcff27ad6935245e9298b74273f210bc15f01b3aa6ccfd1 SHA512 0beab06145f7898402eff96bbc579515b506d9b7f6f30f77cdb35799d4531f0067b5d368e9245649ca435c2f7742c172c61f75d29a76c2d22fd90cc8d9605ae8
27
28 diff --git a/dev-python/fastimport/fastimport-0.9.12.ebuild b/dev-python/fastimport/fastimport-0.9.12.ebuild
29 deleted file mode 100644
30 index c1f987bb42a..00000000000
31 --- a/dev-python/fastimport/fastimport-0.9.12.ebuild
32 +++ /dev/null
33 @@ -1,21 +0,0 @@
34 -# Copyright 1999-2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -PYTHON_COMPAT=( pypy3 python3_{7..10} )
40 -
41 -inherit distutils-r1
42 -
43 -DESCRIPTION="Library for parsing the fastimport VCS serialization format"
44 -HOMEPAGE="https://github.com/jelmer/python-fastimport"
45 -SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
46 -
47 -LICENSE="GPL-2+"
48 -SLOT="0"
49 -KEYWORDS=""
50 -
51 -python_test() {
52 - "${EPYTHON}" -m unittest -v fastimport.tests.test_suite ||
53 - die "Tests fail with ${EPYTHON}"
54 -}