commit: f31a93d106e21a6ee2b63e72be4c0aeb06412b56
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 29 10:15:48 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jan 29 10:24:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f31a93d1
dev-python/ffmpeg-python: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/ffmpeg-python/Manifest | 1 -
.../ffmpeg-python/ffmpeg-python-0.2.0.ebuild | 49 ----------------------
.../ffmpeg-python-0.2.0-_run.py-collections.patch | 12 ------
...fmpeg-python-0.2.0-setup.py-pytest-runner.patch | 11 -----
4 files changed, 73 deletions(-)
diff --git a/dev-python/ffmpeg-python/Manifest
b/dev-python/ffmpeg-python/Manifest
index de0664fc0583..04812b910f61 100644
--- a/dev-python/ffmpeg-python/Manifest
+++ b/dev-python/ffmpeg-python/Manifest
@@ -1,2 +1 @@
-DIST ffmpeg-python-0.2.0.tar.gz 3267771 BLAKE2B
8bca4a24434b6c7a542e3c178cb7bf1e5650f9763636d5378f9652cdd07ef19b0e96007d6bb71fdf1664efb6e33d597844c7d6a44dc8dcb1c083e21f53649469
SHA512
933ed958d61536bbbc0e0b08e19521c4b1f7df1cfe97de0b3d149a2748c5bd74915a3134861e8ecb1f92d5860315228b76aefcd087fcf07e188a56c651f5e301
DIST ffmpeg-python-0.2.0_p20220711.gh.tar.gz 3286678 BLAKE2B
f2dd4445f43ebf2a867d528e24e80b137ddc099770069e1fdf081b640f8ea192ee0b17c26d9ee3d8a69a9c7bbd61d0b75cc3468aa5da4fdd809e50126dff4e06
SHA512
81f20e5cad819500b941d9ac579fe01efb4292f61e6279c6d560d70c11143d7c04146a8ccf9ae8ab6985cf04e6b7cc05849ec67df646caa75764f3a2c5761cde
diff --git a/dev-python/ffmpeg-python/ffmpeg-python-0.2.0.ebuild
b/dev-python/ffmpeg-python/ffmpeg-python-0.2.0.ebuild
deleted file mode 100644
index fd18cd92f295..000000000000
--- a/dev-python/ffmpeg-python/ffmpeg-python-0.2.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for FFmpeg with complex filtering support"
-HOMEPAGE="https://github.com/kkroening/ffmpeg-python"
-
-if [[ "${PV}" == *9999* ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/kkroening/${PN}.git"
-else
- SRC_URI="https://github.com/kkroening/${PN}/archive/${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="Apache-2.0"
-SLOT="0"
-
-RDEPEND="
- dev-python/future[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
- media-video/ffmpeg
-"
-BDEPEND="test? ( dev-python/pytest-mock[${PYTHON_USEDEP}] )"
-
-PATCHES=(
- "${FILESDIR}"/${P}-_run.py-collections.patch
- "${FILESDIR}"/${P}-setup.py-pytest-runner.patch
-)
-
-EPYTEST_DESELECT=(
- ffmpeg/tests/test_ffmpeg.py::test__get_filter_complex_input
- ffmpeg/tests/test_ffmpeg.py::test__input__start_time
- ffmpeg/tests/test_ffmpeg.py::test__multi_output_edge_label_order
- ffmpeg/tests/test_ffmpeg.py::test__probe
- ffmpeg/tests/test_ffmpeg.py::test__probe__extra_args
- ffmpeg/tests/test_ffmpeg.py::test_fluent_complex_filter
- ffmpeg/tests/test_ffmpeg.py::test_pipe
- ffmpeg/tests/test_ffmpeg.py::test_repeated_args
-)
-
-distutils_enable_tests pytest
-distutils_enable_sphinx doc/src
diff --git
a/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-_run.py-collections.patch
b/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-_run.py-collections.patch
deleted file mode 100644
index 6231ba17b86e..000000000000
---
a/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-_run.py-collections.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-index afc504d..bf43c06 100644
---- a/ffmpeg/_run.py
-+++ b/ffmpeg/_run.py
-@@ -137,7 +137,7 @@ def _get_output_args(node, stream_name_map):
- if 'video_size' in kwargs:
- video_size = kwargs.pop('video_size')
- if not isinstance(video_size, basestring) and isinstance(
-- video_size, collections.Iterable
-+ video_size, collections.abc.Iterable
- ):
- video_size = '{}x{}'.format(video_size[0], video_size[1])
- args += ['-video_size', video_size]
diff --git
a/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-setup.py-pytest-runner.patch
b/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-setup.py-pytest-runner.patch
deleted file mode 100644
index 67fbb2308a37..000000000000
---
a/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-setup.py-pytest-runner.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-index 0282c67..2011d2c 100644
---- a/setup.py
-+++ b/setup.py
-@@ -60,7 +60,6 @@ keywords = misc_keywords + file_formats
- setup(
- name='ffmpeg-python',
- packages=['ffmpeg'],
-- setup_requires=['pytest-runner'],
- tests_require=['pytest', 'pytest-mock'],
- version=version,
- description='Python bindings for FFmpeg - with complex filtering support',