summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgutteridge <gutteridge@pkgsrc.org>2022-08-25 22:59:25 +0000
committergutteridge <gutteridge@pkgsrc.org>2022-08-25 22:59:25 +0000
commit2e90ad9321764c56337cb41a63cfb3abfd524ae8 (patch)
tree227c47e4bfc5e1b3184e4d11b2fe5dd02e455dd6
parent8ed9d3749cc3040e997e7da05c9597d04e4f306e (diff)
downloadpkgsrc-2e90ad9321764c56337cb41a63cfb3abfd524ae8.tar.gz
xfce4-panel: update to 4.16.5
Change log: 4.16.5 (2022-08-20) ====== - systray: Help to keep status notifiers from vanishing (#102, #243, #599) - panel: Populate item dialog after setting dialog screen (Fixes #62) - systray: Perform sanity checks also for "NewStatus" signal (Fixes #602) - pager: Properly disconnect signal handler - tasklist: Guard against null workspace - panel: Be sure to save plugins before xfconf_shutdown() - tasklist: Fix critical warning when starting on a disconnected device - Update `.gitignore` - libxfce4panel: Destroy plugin prefs dialog on plugin "destroy" signal - build: Fix intltool lock file problem during make distcheck - prefs-dialog: Filter out irrelevant selection changes in "Items" tab - wrapper: Ensure that provider stays alive when processing "g-signal" - Revert "panel: Keep a reference on item during drag and drop" - tasklist: Fix wireframe for CSD windows (v2) (#562) - Translation Updates: English (United Kingdom), Georgian, Greek, Panjabi (Punjabi), Russian
-rw-r--r--x11/xfce4-panel/Makefile5
-rw-r--r--x11/xfce4-panel/distinfo9
-rw-r--r--x11/xfce4-panel/patches/patch-plugins_systray_sn-item.c21
3 files changed, 6 insertions, 29 deletions
diff --git a/x11/xfce4-panel/Makefile b/x11/xfce4-panel/Makefile
index 602623ae2e2..3641228152b 100644
--- a/x11/xfce4-panel/Makefile
+++ b/x11/xfce4-panel/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.95 2022/08/11 05:09:35 gutteridge Exp $
+# $NetBSD: Makefile,v 1.96 2022/08/25 22:59:25 gutteridge Exp $
.include "../../meta-pkgs/xfce4/Makefile.common"
-DISTNAME= xfce4-panel-4.16.4
-PKGREVISION= 2
+DISTNAME= xfce4-panel-4.16.5
CATEGORIES= x11
MASTER_SITES+= https://archive.xfce.org/src/xfce/xfce4-panel/4.16/
diff --git a/x11/xfce4-panel/distinfo b/x11/xfce4-panel/distinfo
index fee0b9e4e24..a9ebda5bc11 100644
--- a/x11/xfce4-panel/distinfo
+++ b/x11/xfce4-panel/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.38 2022/07/24 20:46:33 gutteridge Exp $
+$NetBSD: distinfo,v 1.39 2022/08/25 22:59:25 gutteridge Exp $
-BLAKE2s (xfce4-panel-4.16.4.tar.bz2) = 33c871f286627f035903b08379dc9febe9207c5786a671b2d32219a43b8f40c1
-SHA512 (xfce4-panel-4.16.4.tar.bz2) = a1ad5a528968c4b1a5d2fb1537f7774aeeb525d7cb2f77e261b187b94e9de22f018bbd47d462ce4ad09b360126548d5848e46643df40549f9f8a3c44a4a14564
-Size (xfce4-panel-4.16.4.tar.bz2) = 1383630 bytes
+BLAKE2s (xfce4-panel-4.16.5.tar.bz2) = 376ee39d02a44e8c7530049ed5508c3d614331c6e6d4116a700ca1ca1dac81e7
+SHA512 (xfce4-panel-4.16.5.tar.bz2) = d72220fa2812ae3b420350dab4c9d33e01d26d27ba33e4c16ad848ed1915c3c4aaf41fef24e2e7271e31171536148ad32b55aabc3e1facd4bf8a411990fd27bb
+Size (xfce4-panel-4.16.5.tar.bz2) = 1386556 bytes
SHA1 (patch-migrate_Makefile.in) = bf71d8ff41cfe4ce60e7e1887858b5474f1fe11c
-SHA1 (patch-plugins_systray_sn-item.c) = c1d32f965c6d2cc5fc0f219e5619ba532fdd8108
diff --git a/x11/xfce4-panel/patches/patch-plugins_systray_sn-item.c b/x11/xfce4-panel/patches/patch-plugins_systray_sn-item.c
deleted file mode 100644
index bb235502a77..00000000000
--- a/x11/xfce4-panel/patches/patch-plugins_systray_sn-item.c
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-plugins_systray_sn-item.c,v 1.1 2022/07/24 20:46:33 gutteridge Exp $
-
-Do not crash if a "NewStatus" signal is received. Xfce commit
-https://gitlab.xfce.org/xfce/xfce4-panel/-/commit/5ec17b6d1166e7dc4a9fe7d45169252335bdf1da
-
---- plugins/systray/sn-item.c.orig 2022-04-16 11:39:02.000000000 +0000
-+++ plugins/systray/sn-item.c
-@@ -565,6 +565,13 @@ sn_item_signal_received (GDBusProxy *pro
- }
- else if (!g_strcmp0 (signal_name, "NewStatus"))
- {
-+ finish_and_return_if_true (parameters == NULL);
-+ if (! g_variant_check_format_string (parameters, "(s)", FALSE))
-+ {
-+ g_warning ("Could not parse properties for StatusNotifierItem.");
-+ return;
-+ }
-+
- g_variant_get (parameters, "(s)", &status);
- exposed = sn_item_status_is_exposed (status);
- g_free (status);