Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/moviepy/
Date: Mon, 05 Sep 2016 21:10:37
Message-Id: 1473109807.1ce8d44e7a97943600b7ea27791f06367b56a3c2.soap@gentoo
1 commit: 1ce8d44e7a97943600b7ea27791f06367b56a3c2
2 Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
3 AuthorDate: Fri Sep 2 23:27:02 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 5 21:10:07 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ce8d44e
7
8 dev-python/moviepy: new ebuild
9
10 Package-Manager: portage-2.3.0
11 Closes: https://github.com/gentoo/gentoo/pull/2206
12
13 Signed-off-by: David Seifert <soap <AT> gentoo.org>
14
15 dev-python/moviepy/Manifest | 1 +
16 dev-python/moviepy/metadata.xml | 21 ++++++++++++++++++
17 dev-python/moviepy/moviepy-0.2.2.ebuild | 39 +++++++++++++++++++++++++++++++++
18 3 files changed, 61 insertions(+)
19
20 diff --git a/dev-python/moviepy/Manifest b/dev-python/moviepy/Manifest
21 new file mode 100644
22 index 00000000..291f697
23 --- /dev/null
24 +++ b/dev-python/moviepy/Manifest
25 @@ -0,0 +1 @@
26 +DIST moviepy-0.2.2.tar.gz 400489 SHA256 751e2165dc54ceb9bc91b6ad52d09d28c3c33723b4869c73c47435c4200a2247 SHA512 a4300b31552e8b4120448b8973ce812579b4f38be48fb46546f4a33e9c10903fb73a89c8075d161d441ecf084b3936ef7d6f0d1b637ad347d00db2c643f1cc43 WHIRLPOOL 73ad6b602d95a75cec765f15179121e79cf4fdd8e5eb5aaa79ebbbdfd5445325dd1f3005242348f063fae3c544d4f0a55bb009516fe30b22c62909d86a7665e3
27
28 diff --git a/dev-python/moviepy/metadata.xml b/dev-python/moviepy/metadata.xml
29 new file mode 100644
30 index 00000000..c59c718
31 --- /dev/null
32 +++ b/dev-python/moviepy/metadata.xml
33 @@ -0,0 +1,21 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="person">
38 + <email>horea.christ@×××××.com</email>
39 + <name>Horea Christian</name>
40 + </maintainer>
41 + <maintainer type="project">
42 + <email>proxy-maint@g.o</email>
43 + <name>Proxy Maintainers</name>
44 + </maintainer>
45 + <longdescription lang="en">
46 + MoviePy is a Python module for video editing: cuts, concatenations,
47 + title insertions, video compositing (a.k.a. non-linear editing),
48 + video processing, and creation of custom effects. See the gallery
49 + for some examples of use.
50 + </longdescription>
51 + <upstream>
52 + <remote-id type="github">Zulko/moviepy</remote-id>
53 + </upstream>
54 +</pkgmetadata>
55
56 diff --git a/dev-python/moviepy/moviepy-0.2.2.ebuild b/dev-python/moviepy/moviepy-0.2.2.ebuild
57 new file mode 100644
58 index 00000000..6cd0e12
59 --- /dev/null
60 +++ b/dev-python/moviepy/moviepy-0.2.2.ebuild
61 @@ -0,0 +1,39 @@
62 +# Copyright 1999-2016 Gentoo Foundation
63 +# Distributed under the terms of the GNU General Public License v2
64 +# $Id$
65 +
66 +EAPI=6
67 +
68 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
69 +PYTHON_REQ_USE="threads(+)"
70 +
71 +inherit distutils-r1
72 +
73 +DESCRIPTION="Video editing with Python"
74 +HOMEPAGE="http://zulko.github.io/moviepy/"
75 +SRC_URI="https://github.com/Zulko/moviepy/archive/v${PV}.tar.gz -> ${P}.tar.gz"
76 +
77 +LICENSE="MIT"
78 +SLOT="0"
79 +KEYWORDS="~amd64 ~x86"
80 +IUSE="test"
81 +
82 +DEPEND="
83 + dev-python/setuptools[${PYTHON_USEDEP}]
84 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )
85 + "
86 +RDEPEND="
87 + dev-python/decorator[${PYTHON_USEDEP}]
88 + dev-python/imageio[${PYTHON_USEDEP}]
89 + dev-python/matplotlib[${PYTHON_USEDEP}]
90 + dev-python/numpy[${PYTHON_USEDEP}]
91 + dev-python/pygame[${PYTHON_USEDEP}]
92 + dev-python/tqdm[${PYTHON_USEDEP}]
93 + dev-python/urllib3[${PYTHON_USEDEP}]
94 + sci-libs/scipy[${PYTHON_USEDEP}]
95 + virtual/ffmpeg
96 + "
97 +
98 +python_test() {
99 + py.test --verbose || die
100 +}