commit: 81a3319631118a14163004fa7084974d1c45414b Author: Michael Mair-Keimberger <mm1ke <AT> gentoo <DOT> org> AuthorDate: Wed Nov 19 17:30:21 2025 +0000 Commit: Michael Mair-Keimberger <mm1ke <AT> gentoo <DOT> org> CommitDate: Wed Nov 19 17:30:21 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81a33196
x11-plugins/pidgin-indicator: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger <mm1ke <AT> gentoo.org> .../pidgin-indicator-1.0.1-appindicator3.patch | 22 -------- .../pidgin-indicator-1.0.1-ayatana-indicator.patch | 59 ---------------------- 2 files changed, 81 deletions(-) diff --git a/x11-plugins/pidgin-indicator/files/pidgin-indicator-1.0.1-appindicator3.patch b/x11-plugins/pidgin-indicator/files/pidgin-indicator-1.0.1-appindicator3.patch deleted file mode 100644 index 436166fe3996..000000000000 --- a/x11-plugins/pidgin-indicator/files/pidgin-indicator-1.0.1-appindicator3.patch +++ /dev/null @@ -1,22 +0,0 @@ -From b0d26dd060475505f3c0a6369f4fbbd3c20d84b0 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Patrick=20H=C3=B6hn?= <[email protected]> -Date: Fri, 7 Feb 2020 10:26:46 +0100 -Subject: [PATCH] Update configure.ac to make compatible with python3 - ---- - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index dfd8a1b..fefd90d 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -96,7 +96,7 @@ PKG_CHECK_MODULES(GTK, [gtk+-2.0]) - AC_SUBST(GTK_LIBS) - AC_SUBST(GTK_CFLAGS) - --PKG_CHECK_MODULES(INDICATOR, [appindicator-0.1]) -+PKG_CHECK_MODULES(INDICATOR, [appindicator3-0.1]) - AC_SUBST(INDICATOR_LIBS) - AC_SUBST(INDICATOR_CFLAGS) - diff --git a/x11-plugins/pidgin-indicator/files/pidgin-indicator-1.0.1-ayatana-indicator.patch b/x11-plugins/pidgin-indicator/files/pidgin-indicator-1.0.1-ayatana-indicator.patch deleted file mode 100644 index f3061bc8dee1..000000000000 --- a/x11-plugins/pidgin-indicator/files/pidgin-indicator-1.0.1-ayatana-indicator.patch +++ /dev/null @@ -1,59 +0,0 @@ -From 0376453849ca2e7ba5ab1ff7feb7a527ec0b1045 Mon Sep 17 00:00:00 2001 -From: Kevin Locke <[email protected]> -Date: Tue, 22 Feb 2022 18:43:11 -0700 -Subject: [PATCH] Support Ayatana AppIndicators - -Ubuntu AppIndicator ([libappindicator]) was [removed in Debian Bullseye] -and has been superseded by Ayatana AppIndicator -([libayatana-appindicator]) for both [Debian] and [Ubuntu]. - -Add support for building with libayatana-appindicator instead of -libappindicator. - -[libappindicator]: https://launchpad.net/libappindicator -[libayatana-appindicator]: https://github.com/AyatanaIndicators/libayatana-appindicator -[Debian]: https://lists.debian.org/debian-devel/2018/03/msg00506.html -[Ubuntu]: https://bugs.launchpad.net/ubuntu/+source/libayatana-appindicator/+bug/1915695 -[removed in Debian Bullseye]: https://www.debian.org/releases/bullseye/amd64/release-notes/ch-information.en.html#noteworthy-obsolete-packages - -Signed-off-by: Kevin Locke <[email protected]> ---- - configure.ac | 6 +++++- - debian/control | 2 +- - src/pidgin-indicator.c | 6 +++++- - 3 files changed, 11 insertions(+), 3 deletions(-) - -diff --git a/configure.ac b/configure.ac -index fefd90d..195651e 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -96,7 +96,11 @@ PKG_CHECK_MODULES(GTK, [gtk+-2.0]) - AC_SUBST(GTK_LIBS) - AC_SUBST(GTK_CFLAGS) - --PKG_CHECK_MODULES(INDICATOR, [appindicator3-0.1]) -+PKG_CHECK_MODULES( -+ [INDICATOR], -+ [ayatana-appindicator3-0.1], -+ [AC_DEFINE([HAVE_AYATANA_INDICATOR], [1], [Have Ayatana AppIndicator])], -+ [PKG_CHECK_MODULES([INDICATOR], [appindicator3-0.1])]) - AC_SUBST(INDICATOR_LIBS) - AC_SUBST(INDICATOR_CFLAGS) - -diff --git a/src/pidgin-indicator.c b/src/pidgin-indicator.c -index 9eeb8a4..9382a95 100644 ---- a/src/pidgin-indicator.c -+++ b/src/pidgin-indicator.c -@@ -41,7 +41,11 @@ - #include <savedstatuses.h> - #include <version.h> - --#include <libappindicator/app-indicator.h> -+#ifdef HAVE_AYATANA_INDICATOR -+# include <libayatana-appindicator/app-indicator.h> -+#else -+# include <libappindicator/app-indicator.h> -+#endif - - #include "docklet.h" -
