commit:     dbabc7543e00f2e0f820c335008533eff7515b8a
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Fri Jan  3 15:40:25 2025 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Jan  4 22:47:11 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbabc754

x11-misc/safeeyes: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/39961
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 x11-misc/safeeyes/files/safeeyes-2.1.6-py312.patch | 34 ----------------------
 1 file changed, 34 deletions(-)

diff --git a/x11-misc/safeeyes/files/safeeyes-2.1.6-py312.patch 
b/x11-misc/safeeyes/files/safeeyes-2.1.6-py312.patch
deleted file mode 100644
index 93430da89b88..000000000000
--- a/x11-misc/safeeyes/files/safeeyes-2.1.6-py312.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 043d9c5018431b3b41cc2bcfacdaaa7f0db1563c Mon Sep 17 00:00:00 2001
-From: Alyssa Rosenzweig <[email protected]>
-Date: Thu, 9 Nov 2023 12:14:13 -0400
-Subject: [PATCH] Fix with python3.12
-
-imp is deprecated in 3.4 and removed in 3.12. this caused safe eyes to
-break on upgrading to fedora 39
-
-Signed-off-by: Alyssa Rosenzweig <[email protected]>
----
- safeeyes/utility.py | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-diff --git a/safeeyes/utility.py b/safeeyes/utility.py
-index e145d4d..3976140 100644
---- a/safeeyes/utility.py
-+++ b/safeeyes/utility.py
-@@ -21,7 +21,6 @@
- """
- 
- import errno
--import imp
- import inspect
- import importlib
- import json
-@@ -355,7 +354,7 @@ def module_exist(module):
-     Check wther the given Python module exists or not.
-     """
-     try:
--        imp.find_module(module)
-+        importlib.util.find_spec(module)
-         return True
-     except ImportError:
-         return False

Reply via email to