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/sortedcontainers/
Date: Sun, 29 Mar 2020 08:20:36
Message-Id: 1585469969.78adaa9bb7d3ee8ab0228dd36d682a0524c224f3.mgorny@gentoo
1 commit: 78adaa9bb7d3ee8ab0228dd36d682a0524c224f3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 08:02:15 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 08:19:29 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78adaa9b
7
8 dev-python/sortedcontainers: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sortedcontainers/Manifest | 1 -
13 .../sortedcontainers/sortedcontainers-1.5.7.ebuild | 25 ----------------------
14 2 files changed, 26 deletions(-)
15
16 diff --git a/dev-python/sortedcontainers/Manifest b/dev-python/sortedcontainers/Manifest
17 index 29620748391..fe3923871e9 100644
18 --- a/dev-python/sortedcontainers/Manifest
19 +++ b/dev-python/sortedcontainers/Manifest
20 @@ -1,2 +1 @@
21 DIST python-sortedcontainers-2.1.0.gh.tar.gz 9220860 BLAKE2B a667fa817f0b240b8af9758d5d3942710cfe6a39109c41e6e66d0dd464b300d2201a679335e418442aaa6e1953e38a43b46c2bd6ce631b7c168d6173ca36998e SHA512 1c56daea5d491dbeea9c677677a79ef5c4805325ea3d5da97005cd3b269003a99459550a793dfe65820f152c774371472ba471a7daf61c9d97b36744bafb013b
22 -DIST sortedcontainers-1.5.7.tar.gz 11970881 BLAKE2B 0ffdc19a9be82481e71a7ef59391166e19c44d7fc4eac7696d153cac707fdc4beb84a36039e3f1e194c43dc9e956eaae5dfd909f24ef12db4ea99c8548475cab SHA512 a9f2ba152c47eddfda6ad8ef7ecfbfa5d51b17afb4042b0b1e6d8b3dbc6caf6f8281af415dfcf1e356aaf80aa3212865ba926fe0d6e08961c8fbbc68adb34108
23
24 diff --git a/dev-python/sortedcontainers/sortedcontainers-1.5.7.ebuild b/dev-python/sortedcontainers/sortedcontainers-1.5.7.ebuild
25 deleted file mode 100644
26 index b2043c1da57..00000000000
27 --- a/dev-python/sortedcontainers/sortedcontainers-1.5.7.ebuild
28 +++ /dev/null
29 @@ -1,25 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python2_7 python3_{6,7} )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Python library to sort collections and containers"
39 -HOMEPAGE="http://www.grantjenks.com/docs/sortedcontainers/"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="Apache-2.0"
43 -SLOT="0"
44 -KEYWORDS="amd64 arm ~arm64 x86 ~amd64-linux ~x86-linux"
45 -IUSE="test"
46 -RESTRICT="!test? ( test )"
47 -
48 -RDEPEND=""
49 -DEPEND="${RDEPEND}
50 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
51 -
52 -python_test() {
53 - py.test -v || die
54 -}