summaryrefslogtreecommitdiff
path: root/dev-python/path-py/files/path-py-12.0.2-py38.patch
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-10-22 00:47:45 +0200
committerMichał Górny <mgorny@gentoo.org>2020-10-22 00:50:54 +0200
commitd0fa187c736831ecd77f2a2fc22797b3cb46d628 (patch)
tree08ea2687cc05363237fabea1c300ac81629d8b35 /dev-python/path-py/files/path-py-12.0.2-py38.patch
parent71290145944962008a1c330b56f7932073924873 (diff)
downloadgentoo-d0fa187c736831ecd77f2a2fc22797b3cb46d628.tar.gz
gentoo-d0fa187c736831ecd77f2a2fc22797b3cb46d628.tar.bz2
gentoo-d0fa187c736831ecd77f2a2fc22797b3cb46d628.zip
dev-python/path-py: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/path-py/files/path-py-12.0.2-py38.patch')
-rw-r--r--dev-python/path-py/files/path-py-12.0.2-py38.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-python/path-py/files/path-py-12.0.2-py38.patch b/dev-python/path-py/files/path-py-12.0.2-py38.patch
deleted file mode 100644
index 292b0454acc1..000000000000
--- a/dev-python/path-py/files/path-py-12.0.2-py38.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -ur path.py-12.0.2.orig/path/__init__.py path.py-12.0.2/path/__init__.py
---- path.py-12.0.2.orig/path/__init__.py 2019-11-20 17:17:03.644205243 -0800
-+++ path.py-12.0.2/path/__init__.py 2019-11-20 17:17:57.356875924 -0800
-@@ -72,7 +72,13 @@
-
- __version__ = importlib_metadata.version('path.py')
- except Exception:
-- __version__ = 'unknown'
-+ try:
-+ import importlib.metadata
-+
-+ __version__ = importlib.metadata.version('path.py')
-+
-+ except Exception:
-+ __version__ = 'unknown'
-
-
- class TreeWalkWarning(Warning):
-Only in path.py-12.0.2/path: .__init__.py.un~