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: media-video/vcsi/
Date: Sat, 02 Jun 2018 18:40:52
Message-Id: 1527964840.bb1fa888bcc4ed4ed7c10cc0aceb3d8af7e0e610.mgorny@gentoo
1 commit: bb1fa888bcc4ed4ed7c10cc0aceb3d8af7e0e610
2 Author: juippis <juippis <AT> gmail <DOT> com>
3 AuthorDate: Wed Apr 11 15:12:34 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 2 18:40:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb1fa888
7
8 media-video/vcsi: new package
9
10 Closes: https://github.com/gentoo/gentoo/pull/7940
11
12 media-video/vcsi/Manifest | 1 +
13 media-video/vcsi/metadata.xml | 11 +++++++++++
14 media-video/vcsi/vcsi-7.ebuild | 35 +++++++++++++++++++++++++++++++++++
15 3 files changed, 47 insertions(+)
16
17 diff --git a/media-video/vcsi/Manifest b/media-video/vcsi/Manifest
18 new file mode 100644
19 index 00000000000..5a0f31f2e9a
20 --- /dev/null
21 +++ b/media-video/vcsi/Manifest
22 @@ -0,0 +1 @@
23 +DIST vcsi-7.tar.gz 18350 BLAKE2B 840f17db49a0b538a53bc0c3cd426e117d6a29d4b6f7b1ab7bf2f3a1697ea903a908f19b798c5898abf3cb0d308b34aeffc863517c682b8b9a114f5f9dcefb42 SHA512 5b5a3b9db76003c364aef0574a1b43c1177f5b7dae1339be981d6358c38102f0e7f275c9ec074e7cdd6b042ae30b982cfbbffa35c67eb8e2fc887c00073f2e48
24
25 diff --git a/media-video/vcsi/metadata.xml b/media-video/vcsi/metadata.xml
26 new file mode 100644
27 index 00000000000..d9a6217dd22
28 --- /dev/null
29 +++ b/media-video/vcsi/metadata.xml
30 @@ -0,0 +1,11 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>juippis@×××××.com</email>
36 + </maintainer>
37 + <maintainer type="project">
38 + <email>proxy-maint@g.o</email>
39 + <name>Proxy Maintainers</name>
40 + </maintainer>
41 +</pkgmetadata>
42
43 diff --git a/media-video/vcsi/vcsi-7.ebuild b/media-video/vcsi/vcsi-7.ebuild
44 new file mode 100644
45 index 00000000000..87cb0c19609
46 --- /dev/null
47 +++ b/media-video/vcsi/vcsi-7.ebuild
48 @@ -0,0 +1,35 @@
49 +# Copyright 1999-2018 Gentoo Foundation
50 +# Distributed under the terms of the GNU General Public License v2
51 +
52 +EAPI=6
53 +
54 +PYTHON_COMPAT=( python3_{5,6} )
55 +
56 +inherit distutils-r1
57 +
58 +DESCRIPTION="Create thumbnail sheets from video files"
59 +HOMEPAGE="https://github.com/amietn/vcsi"
60 +SRC_URI="https://github.com/amietn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
61 +
62 +LICENSE="MIT"
63 +SLOT="0"
64 +KEYWORDS="~amd64 ~x86"
65 +IUSE="test"
66 +
67 +DEPEND="
68 + >=dev-python/jinja-2[${PYTHON_USEDEP}]
69 + dev-python/numpy[${PYTHON_USEDEP}]
70 + dev-python/pillow[${PYTHON_USEDEP}]
71 + dev-python/setuptools[${PYTHON_USEDEP}]
72 + test? ( dev-python/nose[${PYTHON_USEDEP}] )
73 +"
74 +RDEPEND="
75 + dev-python/parsedatetime[${PYTHON_USEDEP}]
76 + >=dev-python/texttable-1.0[${PYTHON_USEDEP}]
77 + media-fonts/dejavu
78 + media-video/ffmpeg
79 +"
80 +
81 +python_test() {
82 + nosetests -v tests || die "python tests failed with nose"
83 +}