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/sortedcollections/
Date: Mon, 28 Aug 2017 18:23:54
Message-Id: 1503944420.4ab42ab536efc5a361d521c4aca7689a5d275612.mgorny@gentoo
1 commit: 4ab42ab536efc5a361d521c4aca7689a5d275612
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 28 17:51:44 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 28 18:20:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ab42ab5
7
8 dev-python/sortedcollections: Drop old
9
10 dev-python/sortedcollections/Manifest | 1 -
11 .../sortedcollections-0.4.2.ebuild | 25 ----------------------
12 2 files changed, 26 deletions(-)
13
14 diff --git a/dev-python/sortedcollections/Manifest b/dev-python/sortedcollections/Manifest
15 index 59cc422643d..7d646675427 100644
16 --- a/dev-python/sortedcollections/Manifest
17 +++ b/dev-python/sortedcollections/Manifest
18 @@ -1,2 +1 @@
19 -DIST sortedcollections-0.4.2.tar.gz 111533 SHA256 8aefd6cf0bb0a89888f192859c3dbf997b906b33cd4ce175d568fb972cfdb489 SHA512 53a3c9228c13bf25faedd11058413269d26e51209a5f454851aae067679e64ca3897ab78632a620f1f88c8c6407c5b723974d3a6aa4185e7e12b166d55f6559a WHIRLPOOL 16196d2bf09baab0ff68ac7c7f74ce27f409d229cc414b9f62fb1319f5edcebd5e8244453956308c07d3d950fd23195f7606d6bef71e38152b745b0fec6cfd0d
20 DIST sortedcollections-0.5.3.tar.gz 7021 SHA256 d56d6708e36aec959b08e64c3e5a0e01df518d6e6693d0f5b5c89529288edde6 SHA512 e0076017d1a97d7dc18b02bc4e3739c535ab001260be739fab2784cb58deac4323957fe21b4c679f55a790d864ca696695a603298709225b04eae740d859ab28 WHIRLPOOL ce3693115a2e694c8908c8a1ce9027b9adccf15e38ebad36c456265440174b77620d525d898d1a914626a0a698fc75280aca549e8c78d082f6888b6c3433173f
21
22 diff --git a/dev-python/sortedcollections/sortedcollections-0.4.2.ebuild b/dev-python/sortedcollections/sortedcollections-0.4.2.ebuild
23 deleted file mode 100644
24 index aafd52f890a..00000000000
25 --- a/dev-python/sortedcollections/sortedcollections-0.4.2.ebuild
26 +++ /dev/null
27 @@ -1,25 +0,0 @@
28 -# Copyright 1999-2017 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=6
32 -
33 -PYTHON_COMPAT=( python2_7 python3_{4,5} )
34 -
35 -inherit distutils-r1
36 -
37 -DESCRIPTION="Python library to sort collections and containers"
38 -HOMEPAGE="http://www.grantjenks.com/docs/sortedcontainers/"
39 -SRC_URI="mirror://pypi/$(echo ${PN} | cut -c 1)/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="Apache-2.0"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
44 -IUSE="test"
45 -
46 -RDEPEND="dev-python/sortedcontainers[${PYTHON_USEDEP}]"
47 -DEPEND="${RDEPEND}
48 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
49 -
50 -python_test() {
51 - py.test -v || die
52 -}