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/pysrt/
Date: Sat, 28 Mar 2020 18:26:11
Message-Id: 1585419170.e41f4a0b0df200eb0c85612fd79db52089e35c94.mgorny@gentoo
1 commit: e41f4a0b0df200eb0c85612fd79db52089e35c94
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 18:12:50 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 18:12:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e41f4a0b
7
8 dev-python/pysrt: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pysrt/pysrt-1.1.1-r1.ebuild | 36 ----------------------------------
13 1 file changed, 36 deletions(-)
14
15 diff --git a/dev-python/pysrt/pysrt-1.1.1-r1.ebuild b/dev-python/pysrt/pysrt-1.1.1-r1.ebuild
16 deleted file mode 100644
17 index 955fccde2c8..00000000000
18 --- a/dev-python/pysrt/pysrt-1.1.1-r1.ebuild
19 +++ /dev/null
20 @@ -1,36 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( pypy3 python3_{6,7} )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Python library used to edit or create SubRip files"
31 -HOMEPAGE="https://github.com/byroot/pysrt https://pypi.org/project/pysrt/"
32 -if [[ ${PV} == "9999" ]]; then
33 - inherit git-r3
34 - EGIT_REPO_URI="https://github.com/byroot/pysrt.git"
35 -else
36 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
37 - KEYWORDS="~amd64 ~x86"
38 -fi
39 -
40 -LICENSE="GPL-3+"
41 -SLOT="0"
42 -IUSE="test"
43 -RESTRICT="!test? ( test )"
44 -
45 -RDEPEND="dev-python/chardet[${PYTHON_USEDEP}]"
46 -DEPEND="
47 - dev-python/setuptools[${PYTHON_USEDEP}]
48 - test? (
49 - ${RDEPEND}
50 - dev-python/nose[${PYTHON_USEDEP}]
51 - )
52 -"
53 -
54 -python_test() {
55 - nosetests -v || die "Tests failed under ${EPYTHON}"
56 -}