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/whisper/
Date: Sun, 29 Mar 2020 12:03:21
Message-Id: 1585483381.8d3bb1ed68f66bcdc4dd2ca741511cf7f8b6a293.mgorny@gentoo
1 commit: 8d3bb1ed68f66bcdc4dd2ca741511cf7f8b6a293
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 11:57:07 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 12:03:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d3bb1ed
7
8 dev-python/whisper: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/whisper/Manifest | 1 -
13 dev-python/whisper/whisper-1.1.3.ebuild | 32 --------------------------------
14 2 files changed, 33 deletions(-)
15
16 diff --git a/dev-python/whisper/Manifest b/dev-python/whisper/Manifest
17 index 7f1bb38339b..d6c316848ac 100644
18 --- a/dev-python/whisper/Manifest
19 +++ b/dev-python/whisper/Manifest
20 @@ -1,2 +1 @@
21 -DIST whisper-1.1.3.tar.gz 37716 BLAKE2B e0cad5c7ef8ca885cae2060838669d80e8b2e28d1039dce45fec601257c866d202a73279d923aff39781f71d7c9bfdc19300c991e7a5956af337d5ff18a37ede SHA512 cd2a1bece58ea4cb3f5df6adbe1966e1408c92a55b21bf7298d4b30fdd51780e236707cae1414d6c363a046a36870a6ac230ec30abe565fde9fbf17efc9e7cab
22 DIST whisper-1.1.5.tar.gz 38104 BLAKE2B ab36c91c00dd8e8e26b24c0c2967c661f0bd69f3dcb0e52763f6527a233f656a984c738be720c0b5f2d27fff08daa164db87f0ab693d360bd0c087cf6a408340 SHA512 dee42adf1824c876cf15e9e55101d90d08889fd6e267a89c18fdb4a7d4c5a3a0d4f6f24bb0fdeb974fd194046c17e00f71033ddb72c74c4d4ded0a937e82c8a9
23
24 diff --git a/dev-python/whisper/whisper-1.1.3.ebuild b/dev-python/whisper/whisper-1.1.3.ebuild
25 deleted file mode 100644
26 index ace134aa42c..00000000000
27 --- a/dev-python/whisper/whisper-1.1.3.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=7
34 -
35 -PYTHON_COMPAT=( pypy3 python3_6 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Fixed size round-robin style database"
40 -HOMEPAGE="https://github.com/graphite-project/whisper"
41 -# PyPI tarballs don't contain tests
42 -# https://github.com/graphite-project/whisper/pull/253
43 -SRC_URI="https://github.com/graphite-project/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="Apache-2.0"
46 -KEYWORDS="~amd64 ~x86 ~x64-solaris"
47 -SLOT="0"
48 -IUSE="test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
52 -DEPEND="
53 - test? (
54 - ${RDEPEND}
55 - dev-python/pytest[${PYTHON_USEDEP}]
56 - )
57 -"
58 -
59 -python_test() {
60 - py.test || die "tests failed with ${EPYTHON}"
61 -}