summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-02-22 17:42:26 +0100
committerAndrew Ammerlaan <andrewammerlaan@gentoo.org>2023-02-23 08:37:35 +0100
commit27e99c8e283d34b7abc8943046d5750d0557f5af (patch)
tree58f6fa459e97d1c7fa90c986955f37114731a459 /games-util
parentapp-text/zotero-bin: drop 6.0.19 (diff)
downloadgentoo-27e99c8e283d34b7abc8943046d5750d0557f5af.tar.gz
gentoo-27e99c8e283d34b7abc8943046d5750d0557f5af.tar.bz2
gentoo-27e99c8e283d34b7abc8943046d5750d0557f5af.zip
games-util/lutris: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/29726 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'games-util')
-rw-r--r--games-util/lutris/files/lutris-0.5.13-webkit-gtk-4-1.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/games-util/lutris/files/lutris-0.5.13-webkit-gtk-4-1.patch b/games-util/lutris/files/lutris-0.5.13-webkit-gtk-4-1.patch
deleted file mode 100644
index 9685a826878b..000000000000
--- a/games-util/lutris/files/lutris-0.5.13-webkit-gtk-4-1.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/lutris/gui/dialogs/webconnect_dialog.py b/lutris/gui/dialogs/webconnect_dialog.py
-index 12fbbdc..a6cd838 100644
---- a/lutris/gui/dialogs/webconnect_dialog.py
-+++ b/lutris/gui/dialogs/webconnect_dialog.py
-@@ -3,7 +3,11 @@ import os
- from gettext import gettext as _
-
- import gi
--gi.require_version("WebKit2", "4.0")
-+try:
-+ gi.require_version("WebKit2", "4.1")
-+except (ImportError, ValueError):
-+ gi.require_version("WebKit2", "4.0")
-+
- from gi.repository import WebKit2
-
- from lutris.gui.dialogs import ModalDialog