From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F25D6158086 for ; Thu, 9 Dec 2021 20:43:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08AC02BC012; Thu, 9 Dec 2021 20:43:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5A0CB2BC012 for ; Thu, 9 Dec 2021 20:43:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 69FCD3435A7 for ; Thu, 9 Dec 2021 20:43:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FC5E1DC for ; Thu, 9 Dec 2021 20:43:39 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1639082604.d5c4439534b7229cf5d44cf818fdc99c97f69b15.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/imageio-ffmpeg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/imageio-ffmpeg/Manifest dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild dev-python/imageio-ffmpeg/metadata.xml X-VCS-Directories: dev-python/imageio-ffmpeg/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: d5c4439534b7229cf5d44cf818fdc99c97f69b15 X-VCS-Branch: master Date: Thu, 9 Dec 2021 20:43:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2a634cc4-7c8d-4711-a915-3506fcfd7c5f X-Archives-Hash: 49e2d2d28d27380ff4178e6fe8d1b875 commit: d5c4439534b7229cf5d44cf818fdc99c97f69b15 Author: Arthur Zamarin gentoo org> AuthorDate: Thu Dec 9 18:45:15 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Thu Dec 9 20:43:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5c44395 dev-python/imageio-ffmpeg: initial import, add 0.4.5 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/imageio-ffmpeg/Manifest | 1 + .../imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild | 31 ++++++++++++++++++++++ dev-python/imageio-ffmpeg/metadata.xml | 13 +++++++++ 3 files changed, 45 insertions(+) diff --git a/dev-python/imageio-ffmpeg/Manifest b/dev-python/imageio-ffmpeg/Manifest new file mode 100644 index 000000000000..1068a1592770 --- /dev/null +++ b/dev-python/imageio-ffmpeg/Manifest @@ -0,0 +1 @@ +DIST imageio-ffmpeg-0.4.5.gh.tar.gz 24065 BLAKE2B b960a54435628fdefc1ce21c7f3e75c6ce1ffa3b838537173a28173589c3d430d805a7f7eb2b091250cce3b29660edaa1b442e28cbae998728cb89067304e9ac SHA512 c4180903f7194cac880c3851b08e4563c6e12cb6336e321ca35a7baf92ec1de5a49880fd05db9c7c266327642d75830cac4060371cbdc76448fb0a2c21ab0c1c diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild new file mode 100644 index 000000000000..b94a693e1559 --- /dev/null +++ b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.5.ebuild @@ -0,0 +1,31 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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 +} diff --git a/dev-python/imageio-ffmpeg/metadata.xml b/dev-python/imageio-ffmpeg/metadata.xml new file mode 100644 index 000000000000..b3314f33baef --- /dev/null +++ b/dev-python/imageio-ffmpeg/metadata.xml @@ -0,0 +1,13 @@ + + + + + python@gentoo.org + Python + + + + imageio-ffmpeg + imageio/imageio-ffmpeg + +