diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-10-09 18:53:29 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-10-09 18:53:29 +0100 |
commit | 4f2d7949f03e1c198bc888f2d05f421d35c57e21 (patch) | |
tree | ba5f07bf3f9d22d82e54a462313f5d244036c768 /dev-python/moviepy |
reinit the tree, so we can have metadata
Diffstat (limited to 'dev-python/moviepy')
-rw-r--r-- | dev-python/moviepy/Manifest | 4 | ||||
-rw-r--r-- | dev-python/moviepy/metadata.xml | 21 | ||||
-rw-r--r-- | dev-python/moviepy/moviepy-0.2.2.ebuild | 38 |
3 files changed, 63 insertions, 0 deletions
diff --git a/dev-python/moviepy/Manifest b/dev-python/moviepy/Manifest new file mode 100644 index 000000000000..1d68d44272d6 --- /dev/null +++ b/dev-python/moviepy/Manifest @@ -0,0 +1,4 @@ +DIST moviepy-0.2.2.tar.gz 400489 SHA256 751e2165dc54ceb9bc91b6ad52d09d28c3c33723b4869c73c47435c4200a2247 SHA512 a4300b31552e8b4120448b8973ce812579b4f38be48fb46546f4a33e9c10903fb73a89c8075d161d441ecf084b3936ef7d6f0d1b637ad347d00db2c643f1cc43 WHIRLPOOL 73ad6b602d95a75cec765f15179121e79cf4fdd8e5eb5aaa79ebbbdfd5445325dd1f3005242348f063fae3c544d4f0a55bb009516fe30b22c62909d86a7665e3 +EBUILD moviepy-0.2.2.ebuild 901 SHA256 ba5b26388ff8d49fbab3edc55b4fff8c5a6c8d19092e234e63133c7f023cfcf4 SHA512 f095682bc5572848042f905038d659e3cab25c6eef6ed8bf2b9ae9a032a1b34485693d366d78a99c0ee7ba8fe8384f08f5d99c3b3dbdc1d30e15993b67c2a346 WHIRLPOOL 6fc1a0fb1ef2e7e84651cd5dd79b2ba622f6939f9b0404f6035a83a309a890cab0a45c4d4f50459ac46eda11b26796936d4db20417dae50586091bbd597c045e +MISC ChangeLog 406 SHA256 22e06028185b861d87212913dd5eb38aac5a7a88933bc761163b7efcb85f0512 SHA512 1e541662286cf878c14880254077729f20a51b96a29249e51c2126e4e91180dfc6ed03095250ad49b4418c92f172e0a02b26695115d37abdd0f5410c44c5b70a WHIRLPOOL 49af47b21b415c285f6a1f63c24aa40e26dd35fe6464aeba48e1433122aa0937a541f3e5142dfd503ce37fa3c2510fd2945b101121ca04338fd9f2cdba69ec59 +MISC metadata.xml 732 SHA256 84aae20cc13b45cdd7ee28960f27392bc6bb97a2479396d432da00eb6f149cf1 SHA512 46bce08e60a3a53dcdd6a6fad0ba31c3d11b5c7a4995ac830a31a1e7f0d2ccf458d1c9d1e45ebf80365675cec5d313a6cc58c9b6ce7083daa14483f2832fa630 WHIRLPOOL 0ab3adf431f7bba8703e455be13debaff2ac252f7c13c802f83adeb00d261d7baaf88e4407ccac9c7ede0e70e1bac912097a09c5a1d60902fadb7f283ebcdb14 diff --git a/dev-python/moviepy/metadata.xml b/dev-python/moviepy/metadata.xml new file mode 100644 index 000000000000..c59c71875d2f --- /dev/null +++ b/dev-python/moviepy/metadata.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>horea.christ@gmail.com</email> + <name>Horea Christian</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <longdescription lang="en"> + MoviePy is a Python module for video editing: cuts, concatenations, + title insertions, video compositing (a.k.a. non-linear editing), + video processing, and creation of custom effects. See the gallery + for some examples of use. + </longdescription> + <upstream> + <remote-id type="github">Zulko/moviepy</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/moviepy/moviepy-0.2.2.ebuild b/dev-python/moviepy/moviepy-0.2.2.ebuild new file mode 100644 index 000000000000..79c4f69c389b --- /dev/null +++ b/dev-python/moviepy/moviepy-0.2.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +DESCRIPTION="Video editing with Python" +HOMEPAGE="http://zulko.github.io/moviepy/" +SRC_URI="https://github.com/Zulko/moviepy/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] ) + " +RDEPEND=" + dev-python/decorator[${PYTHON_USEDEP}] + dev-python/imageio[${PYTHON_USEDEP}] + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pygame[${PYTHON_USEDEP}] + dev-python/tqdm[${PYTHON_USEDEP}] + dev-python/urllib3[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] + virtual/ffmpeg + " + +python_test() { + py.test --verbose || die +} |