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/smmap/
Date: Wed, 11 Mar 2020 21:19:33
Message-Id: 1583961470.90948855f6c63b86969035a6357fb9c9fa30faca.mgorny@gentoo
1 commit: 90948855f6c63b86969035a6357fb9c9fa30faca
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 11 20:19:47 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 11 21:17:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90948855
7
8 dev-python/smmap: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/smmap/Manifest | 1 -
13 dev-python/smmap/smmap-0.9.0.ebuild | 32 --------------------------------
14 2 files changed, 33 deletions(-)
15
16 diff --git a/dev-python/smmap/Manifest b/dev-python/smmap/Manifest
17 index f850272be51..40c69ceb926 100644
18 --- a/dev-python/smmap/Manifest
19 +++ b/dev-python/smmap/Manifest
20 @@ -1,2 +1 @@
21 -DIST smmap-0.9.0.tar.gz 22082 BLAKE2B a0c7e5957a4ea829a3f7855ac5d05660ac2bc6ed8e58a50b805a4c07899ce5022d5bbc0329604dd2296dace3e6e6165cb108be8014c4c834629f830af14a4562 SHA512 704e1c67b1f3e1303578cc26d4af8296a11b5f5013e8e8d933d3096e588911b801ddfb162d0e35a49c00256032824386d77e4f38d58704cd57baf21586b40e03
22 DIST smmap-3.0.1.tar.gz 23659 BLAKE2B 19a9425d039141acc00ddc939dab97390d6f619b2d9049ee9c8e483718da1dc06fcd937c6736ecf91a4d55af2b5ff7612de93690334fbfa9bc3904a597e517bd SHA512 36594896212d218c5bc9e27ae16f692643d2236ff13a55461a35d0d688fcf40f6082caa003f178d7bd8b999d4571de269d708f299413dbef46b58ae2074bfc9a
23
24 diff --git a/dev-python/smmap/smmap-0.9.0.ebuild b/dev-python/smmap/smmap-0.9.0.ebuild
25 deleted file mode 100644
26 index 6e5b48410c1..00000000000
27 --- a/dev-python/smmap/smmap-0.9.0.ebuild
28 +++ /dev/null
29 @@ -1,32 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="A pure git implementation of a sliding window memory map manager"
40 -HOMEPAGE="
41 - https://pypi.org/project/smmap/
42 - https://github.com/Byron/smmap"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="BSD"
46 -KEYWORDS="amd64 ~arm64 x86"
47 -SLOT="0"
48 -IUSE="test"
49 -RESTRICT="!test? ( test )"
50 -
51 -DEPEND="
52 - dev-python/setuptools[${PYTHON_USEDEP}]
53 - test? (
54 - dev-python/nose[${PYTHON_USEDEP}]
55 - dev-python/nosexcover[${PYTHON_USEDEP}]
56 - )"
57 -RDEPEND=""
58 -
59 -python_test() {
60 - nosetests || die "tests failed under ${EPYTHON}"
61 -}