commit: f66460e23b218b84f158633b8b4f1d10aa60e9b0 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Fri Jan 17 03:44:32 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Fri Jan 17 03:44:32 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f66460e2
dev-python/imageio-ffmpeg: Remove old Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/imageio-ffmpeg/Manifest | 2 -- .../files/imageio-ffmpeg-0.4.9-ffmpeg-6.patch | 25 --------------- .../imageio-ffmpeg/imageio-ffmpeg-0.4.9-r1.ebuild | 37 ---------------------- .../imageio-ffmpeg/imageio-ffmpeg-0.5.0.ebuild | 32 ------------------- 4 files changed, 96 deletions(-) diff --git a/dev-python/imageio-ffmpeg/Manifest b/dev-python/imageio-ffmpeg/Manifest index b784b0c55423..b3bbd910275b 100644 --- a/dev-python/imageio-ffmpeg/Manifest +++ b/dev-python/imageio-ffmpeg/Manifest @@ -1,3 +1 @@ -DIST imageio-ffmpeg-0.4.9.gh.tar.gz 27344 BLAKE2B f9bf6421859f8b17aee5300613a14de9883436aaa724b61b8068498f533cc24ab4c8372a6de6ce4ab49218abb84af8a35e29e1ccbe9c913fcdcf2db159f13a92 SHA512 ebf63b9ac9c733d4c12d3aa4c6a9e81dd0128795a040e65df03bfae00e3562a3976eaa2f4058562bbddc3f8d63d6bf2a38133de4d2ddb0d2dc62ffab2449e143 -DIST imageio-ffmpeg-0.5.0.gh.tar.gz 27594 BLAKE2B 371aceb4760aac6a593d72f58526cedde2ce16c177adf421f5a9edecc1b6ae3eba0af307514014f1a8b45bf58375d9d3367167242d660f1b5e94778bc13bcc13 SHA512 e38d28da5b06f70e0a53647a2d490efb2c4b0201fd81395163bb1ed1dec3db4a1a29802ff1c6cbed0d7714db710304fe58b8e8e4f7cc0553f77417e97af21551 DIST imageio-ffmpeg-0.5.1.gh.tar.gz 27587 BLAKE2B da508b5627e7b842e123a6b56302f8c4a6f6d8a5fe6a7ff82949a6d3f156b898c05e4f2ffe2b074223e788b31a68d6b49f8165f55d9aa5ab1e5c5a3b16ba10c5 SHA512 7971417ff3c5b36b2b0e09da6ee52a19efd662a3f8896a316e537d0c72ff7d65bffb87c2d01a6bd72ec6442d3aa736ebe38785e82cbe1d4b27a653fb83d08bef diff --git a/dev-python/imageio-ffmpeg/files/imageio-ffmpeg-0.4.9-ffmpeg-6.patch b/dev-python/imageio-ffmpeg/files/imageio-ffmpeg-0.4.9-ffmpeg-6.patch deleted file mode 100644 index 196c21523426..000000000000 --- a/dev-python/imageio-ffmpeg/files/imageio-ffmpeg-0.4.9-ffmpeg-6.patch +++ /dev/null @@ -1,25 +0,0 @@ -From e2ec5ea3b7d9e5fd3225a05891f3611e29adbd1d Mon Sep 17 00:00:00 2001 -From: Tom Vercauteren <[email protected]> -Date: Thu, 7 Mar 2024 14:28:21 +0000 -Subject: [PATCH] Add a null filter to re-enable frame count - -This aims at addressing https://github.com/imageio/imageio-ffmpeg/issues/99 ---- - imageio_ffmpeg/_io.py | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/imageio_ffmpeg/_io.py b/imageio_ffmpeg/_io.py -index b85c453..faf1ee8 100644 ---- a/imageio_ffmpeg/_io.py -+++ b/imageio_ffmpeg/_io.py -@@ -153,8 +153,8 @@ def count_frames_and_secs(path): - path, - "-map", - "0:v:0", -- "-c", -- "copy", -+ "-vf", -+ "null", - "-f", - "null", - "-", diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.9-r1.ebuild b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.9-r1.ebuild deleted file mode 100644 index 375a32f86b2f..000000000000 --- a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.4.9-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2021-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..13} ) - -inherit distutils-r1 - -DESCRIPTION="FFMPEG wrapper for Python" -HOMEPAGE=" - https://github.com/imageio/imageio-ffmpeg/ - https://pypi.org/project/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 ~arm64 ~x86" -PROPERTIES="test_network" -RESTRICT="test" - -# ffmpeg is used as an executable during runtime -RDEPEND=" - media-video/ffmpeg:* -" - -distutils_enable_tests pytest - -PATCHES=( - # https://github.com/imageio/imageio-ffmpeg/pull/107 - "${FILESDIR}/${P}-ffmpeg-6.patch" -) diff --git a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.5.0.ebuild b/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.5.0.ebuild deleted file mode 100644 index ccbb512610be..000000000000 --- a/dev-python/imageio-ffmpeg/imageio-ffmpeg-0.5.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 2021-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..13} ) - -inherit distutils-r1 - -DESCRIPTION="FFMPEG wrapper for Python" -HOMEPAGE=" - https://github.com/imageio/imageio-ffmpeg/ - https://pypi.org/project/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 ~arm64 ~x86" -PROPERTIES="test_network" -RESTRICT="test" - -# ffmpeg is used as an executable during runtime -RDEPEND=" - media-video/ffmpeg:* -" - -distutils_enable_tests pytest
