summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-10-26 16:06:55 +0200
committerJoonas Niilola <juippis@gentoo.org>2024-10-27 09:10:31 +0200
commit6c542b0d1f77d6ae7e02cf6d2c27b5249ca128fb (patch)
tree01940806393a4fc8b48085b31c5b49176031b093 /games-util
parentdev-util/spirv-llvm-translator: remove unused patches (diff)
downloadgentoo-6c542b0d1f77d6ae7e02cf6d2c27b5249ca128fb.tar.gz
gentoo-6c542b0d1f77d6ae7e02cf6d2c27b5249ca128fb.tar.bz2
gentoo-6c542b0d1f77d6ae7e02cf6d2c27b5249ca128fb.zip
games-util/lutris: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/39115 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'games-util')
-rw-r--r--games-util/lutris/files/lutris-0.5.13-find-eselected-wine.patch22
1 files changed, 0 insertions, 22 deletions
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