From d0fa187c736831ecd77f2a2fc22797b3cb46d628 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 22 Oct 2020 00:47:45 +0200 Subject: dev-python/path-py: Remove old MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/path-py/files/path-py-12.0.2-py38.patch | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 dev-python/path-py/files/path-py-12.0.2-py38.patch (limited to 'dev-python/path-py/files') 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~ -- cgit v1.2.3