summaryrefslogtreecommitdiffstats
path: root/group-desktop/patches
diff options
context:
space:
mode:
authorWolfgang Müller2024-06-21 12:21:05 +0200
committerWolfgang Müller2024-06-21 12:21:05 +0200
commit739dc5f709c072cc1bf815240c41f4a853cc7fd2 (patch)
treead2ec65d46b8ba80f4804a5bc957055d9ea98a5a /group-desktop/patches
parent9ff9ed47ef77e36cadc3825f3c8fa51cae19c85c (diff)
downloadportage-roles-739dc5f709c072cc1bf815240c41f4a853cc7fd2.tar.gz
group-desktop: Remove obsolete patches
Diffstat (limited to 'group-desktop/patches')
-rw-r--r--group-desktop/patches/dev-libs/glib-2.74.6/0001-Add-weltschmerz-as-terminal-handler.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/group-desktop/patches/dev-libs/glib-2.74.6/0001-Add-weltschmerz-as-terminal-handler.patch b/group-desktop/patches/dev-libs/glib-2.74.6/0001-Add-weltschmerz-as-terminal-handler.patch
deleted file mode 100644
index 2f8c618..0000000
--- a/group-desktop/patches/dev-libs/glib-2.74.6/0001-Add-weltschmerz-as-terminal-handler.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From 496b4857d4fef1651f55ace4d99beb9ca174dd45 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Wolfgang=20M=C3=BCller?= <wolf@oriole.systems>
-Date: Sat, 29 May 2021 14:24:04 +0200
-Subject: [PATCH] Add weltschmerz as terminal handler
-
-This commit integrates weltschmerz into glib's AppInfo functionality,
-such that it can be launched right out of an application without any
-extra script plumbing.
----
- gio/gdesktopappinfo.c | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-diff --git a/gio/gdesktopappinfo.c b/gio/gdesktopappinfo.c
-index 1a4b97918..2ae930a27 100644
---- a/gio/gdesktopappinfo.c
-+++ b/gio/gdesktopappinfo.c
-@@ -2578,6 +2578,14 @@ prepend_terminal_to_vector (int *argc,
- term_argc = 2;
- term_argv = g_new0 (char *, 3);
-
-+ check = g_find_program_in_path ("weltschmerz");
-+ if (check != NULL)
-+ {
-+ term_argv[0] = check;
-+ term_argc--;
-+ goto done;
-+ }
-+
- check = g_find_program_in_path ("gnome-terminal");
- if (check != NULL)
- {
-@@ -2622,6 +2630,7 @@ prepend_terminal_to_vector (int *argc,
- }
- }
-
-+done:
- real_argc = term_argc + *argc;
- real_argv = g_new (char *, real_argc + 1);
-
---
-2.33.0
-