diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-04-15 11:00:36 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-04-15 11:22:01 +0300 |
commit | 26ca0baa17c650e0aa045ce1f86f001006d9c627 (patch) | |
tree | 69e634218360476b481e897f83dc921460e47828 /dev-python/imageio-ffmpeg | |
parent | dev-python/mkdocs_pymdownx_material_extras: add 2.0.3 (diff) | |
download | gentoo-26ca0baa17c650e0aa045ce1f86f001006d9c627.tar.gz gentoo-26ca0baa17c650e0aa045ce1f86f001006d9c627.tar.bz2 gentoo-26ca0baa17c650e0aa045ce1f86f001006d9c627.zip |
dev-python/imageio-ffmpeg: add 0.4.7
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/imageio-ffmpeg')
-rw-r--r-- | dev-python/imageio-ffmpeg/Manifest | 1 | ||||
-rw-r--r-- | dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/imageio-ffmpeg/Manifest b/dev-python/imageio-ffmpeg/Manifest index 1068a1592770..c7abe349be60 100644 --- a/dev-python/imageio-ffmpeg/Manifest +++ b/dev-python/imageio-ffmpeg/Manifest @@ -1 +1,2 @@ DIST imageio-ffmpeg-0.4.5.gh.tar.gz 24065 BLAKE2B b960a54435628fdefc1ce21c7f3e75c6ce1ffa3b838537173a28173589c3d430d805a7f7eb2b091250cce3b29660edaa1b442e28cbae998728cb89067304e9ac SHA512 c4180903f7194cac880c3851b08e4563c6e12cb6336e321ca35a7baf92ec1de5a49880fd05db9c7c266327642d75830cac4060371cbdc76448fb0a2c21ab0c1c +DIST imageio-ffmpeg-0.4.7.gh.tar.gz 26301 BLAKE2B b794c4c69e43304e089cbab61ff70f3d7d305a515163d0cd0ee4fca678fbec029f01dda1559d6e10e287e56937d6c8f9b52c816df99977034867997c1e392c06 SHA512 4e97bd1258aaa43304a3240460f34a0a4b98340c1dc57f673644af36724935f9f2905378b38626b766e7f609fcbda48d2c58402dc3ef9c48c596936a4bd2cc06 diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild new file mode 100644 index 000000000000..042a40ebcb67 --- /dev/null +++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.7.ebuild @@ -0,0 +1,32 @@ +# Copyright 2021-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="FFMPEG wrapper for Python" +HOMEPAGE="https://pypi.org/project/imageio-ffmpeg/ https://github.com/imageio/imageio-ffmpeg" +SRC_URI=" + https://github.com/imageio/imageio-ffmpeg/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +PROPERTIES="test_network" +RESTRICT="test" + +# ffmpeg is used as executable during runtime +RDEPEND="media-video/ffmpeg:*" + +distutils_enable_tests pytest + +src_prepare() { + sed -e '/setup_requires/d' -i setup.py || die + + distutils-r1_src_prepare +} |