From f716a9fe6455d39eef01e718aae68dae61c19704 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 4 Jun 2026 05:35:26 -0500 Subject: Adding metadata --- .../files/ffmpeg-python-0.2.0-collections.patch | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-collections.patch (limited to 'dev-python/ffmpeg-python/files/ffmpeg-python-0.2.0-collections.patch') 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): -- cgit v1.3.1