summaryrefslogtreecommitdiff
path: root/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-collections.patch
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-collections.patch
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-collections.patch')
-rw-r--r--dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-collections.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-collections.patch b/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-collections.patch
deleted file mode 100644
index fe905e9670b7..000000000000
--- a/dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-collections.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/ffmpeg/_utils.py
-+++ b/ffmpeg/_utils.py
-@@ -3,6 +3,11 @@ from builtins import str
- import hashlib
- import sys
-
-+try:
-+ from collections.abc import Iterable
-+except ImportError:
-+ from collections import Iterable
-+
-
- def with_metaclass(meta, *bases):
- class metaclass(meta):