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/semver/
Date: Mon, 02 Nov 2020 10:34:51
Message-Id: 1604313273.1d514e9997eb04f62d03c91f15c75822398589af.mgorny@gentoo
1 commit: 1d514e9997eb04f62d03c91f15c75822398589af
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 2 10:31:01 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 2 10:34:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d514e99
7
8 dev-python/semver: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/semver/Manifest | 1 -
13 dev-python/semver/semver-2.10.2.ebuild | 27 ---------------------------
14 2 files changed, 28 deletions(-)
15
16 diff --git a/dev-python/semver/Manifest b/dev-python/semver/Manifest
17 index f2bda908b25..83bf711cc29 100644
18 --- a/dev-python/semver/Manifest
19 +++ b/dev-python/semver/Manifest
20 @@ -1,2 +1 @@
21 -DIST semver-2.10.2.tar.gz 40449 BLAKE2B 47601c60591218a1c3ec8212520ddaed2ae9a9c6eca6cd1e9509f0ca713d4149de1c3d786a553f277f4b0be3af30c6484b8e9669cae98a6de250f74d354849b5 SHA512 64f115351d896fbab5145fe4b1438f69c713c8e864701e90a5c81f25154fd6828df14856499f17adf008b25becc474ad87e2c10db3937efbcb64bb62a58d6c75
22 DIST semver-2.13.0.tar.gz 43674 BLAKE2B 35d0ca0b61836d0e6deb97f067a0c1cbba310dde6eb83d78f02f85c3f7485114ad549559d572d4494aa7c4444c7d6feabcb36394561a238489d56bfd04ed8590 SHA512 ca0d408d8bb7305e90802ea04d935cd7b76b8f166a9ec97ed3427dbc2cf60eeca0b2d27ad0cb2f15f32f5b2589d6717a63717c463183374c5335bf79e1eec222
23
24 diff --git a/dev-python/semver/semver-2.10.2.ebuild b/dev-python/semver/semver-2.10.2.ebuild
25 deleted file mode 100644
26 index 08e8852e531..00000000000
27 --- a/dev-python/semver/semver-2.10.2.ebuild
28 +++ /dev/null
29 @@ -1,27 +0,0 @@
30 -# Copyright 2019-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{6,7,8,9} )
36 -DISTUTILS_USE_SETUPTOOLS=rdepend
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="A Python module for semantic versioning"
41 -HOMEPAGE="https://github.com/python-semver/python-semver"
42 -SRC_URI="https://github.com/python-${PN}/python-${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~ppc64 ~x86"
47 -
48 -S="${WORKDIR}/python-${P}"
49 -
50 -distutils_enable_tests pytest
51 -
52 -python_prepare_all() {
53 - # contains pytest/cov args we don't want
54 - rm setup.cfg || die
55 - distutils-r1_python_prepare_all
56 -}