Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/vcsi/
Date: Tue, 28 Apr 2020 13:52:17
Message-Id: 1588081902.fc8463c264a3d8eb611e2322437352fa71041502.juippis@gentoo
1 commit: fc8463c264a3d8eb611e2322437352fa71041502
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 28 13:51:14 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 28 13:51:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc8463c2
7
8 media-video/vcsi: remove old -r0
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 media-video/vcsi/vcsi-7.ebuild | 37 -------------------------------------
13 1 file changed, 37 deletions(-)
14
15 diff --git a/media-video/vcsi/vcsi-7.ebuild b/media-video/vcsi/vcsi-7.ebuild
16 deleted file mode 100644
17 index 15d9f32e1f6..00000000000
18 --- a/media-video/vcsi/vcsi-7.ebuild
19 +++ /dev/null
20 @@ -1,37 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python3_{6..7} )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Create thumbnail sheets from video files"
31 -HOMEPAGE="https://github.com/amietn/vcsi"
32 -SRC_URI="https://github.com/amietn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 -
34 -LICENSE="MIT"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~x86"
37 -IUSE="test"
38 -
39 -RESTRICT="!test? ( test )"
40 -
41 -DEPEND="
42 - >=dev-python/jinja-2[${PYTHON_USEDEP}]
43 - dev-python/numpy[${PYTHON_USEDEP}]
44 - dev-python/pillow[${PYTHON_USEDEP}]
45 - dev-python/setuptools[${PYTHON_USEDEP}]
46 - test? ( dev-python/nose[${PYTHON_USEDEP}] )
47 -"
48 -RDEPEND="
49 - dev-python/parsedatetime[${PYTHON_USEDEP}]
50 - >=dev-python/texttable-1.0[${PYTHON_USEDEP}]
51 - media-fonts/dejavu
52 - media-video/ffmpeg
53 -"
54 -
55 -python_test() {
56 - nosetests -v tests || die "python tests failed with nose"
57 -}