From 6c542b0d1f77d6ae7e02cf6d2c27b5249ca128fb Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Sat, 26 Oct 2024 16:06:55 +0200 Subject: games-util/lutris: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger Closes: https://github.com/gentoo/gentoo/pull/39115 Signed-off-by: Joonas Niilola --- .../files/lutris-0.5.13-find-eselected-wine.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 games-util/lutris/files/lutris-0.5.13-find-eselected-wine.patch (limited to 'games-util') diff --git a/games-util/lutris/files/lutris-0.5.13-find-eselected-wine.patch b/games-util/lutris/files/lutris-0.5.13-find-eselected-wine.patch deleted file mode 100644 index d048a807b08d..000000000000 --- a/games-util/lutris/files/lutris-0.5.13-find-eselected-wine.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git a/lutris/util/wine/wine.py b/lutris/util/wine/wine.py -index f84584b..fa36d0c 100644 ---- a/lutris/util/wine/wine.py -+++ b/lutris/util/wine/wine.py -@@ -19,7 +19,7 @@ WINE_PATHS = { - "winehq-devel": "/opt/wine-devel/bin/wine", - "winehq-staging": "/opt/wine-staging/bin/wine", - "wine-development": "/usr/lib/wine-development/wine", -- "system": "wine", -+ "system": "/etc/eselect/wine/bin/wine", - } - - ESYNC_LIMIT_CHECK = os.environ.get("ESYNC_LIMIT_CHECK", "").lower() -@@ -273,7 +273,7 @@ def get_wine_version(wine_path="wine"): - return - if wine_path == "wine" and not system.find_executable("wine"): - return -- if os.path.isabs(wine_path): -+ if os.path.isabs(wine_path) and not os.path.islink(wine_path): - wine_stats = os.stat(wine_path) - if wine_stats.st_size < 2000: - # This version is a script, ignore it -- cgit v1.2.3-65-gdbad