From ca659c351e5a43d7efa9afb2bb8d6ec1d82ac7e4 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Wed, 6 May 2009 23:05:43 +0000 Subject: [PATCH 01/93] Initial import of xfce4-notifyd. Review at https://bugzilla.redhat.com/show_bug.cgi?id=499282 --- .cvsignore | 1 + import.log | 1 + sources | 1 + xfce4-notifyd.spec | 95 ++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 98 insertions(+) create mode 100644 import.log create mode 100644 xfce4-notifyd.spec diff --git a/.cvsignore b/.cvsignore index e69de29..d85194a 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +xfce4-notifyd-0.1.0.tar.bz2 diff --git a/import.log b/import.log new file mode 100644 index 0000000..af73d4c --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +xfce4-notifyd-0_1_0-1_fc11:HEAD:xfce4-notifyd-0.1.0-1.fc11.src.rpm:1241650892 diff --git a/sources b/sources index e69de29..7c39773 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +659ecaf37f0f7ee9e31f7b25f9813778 xfce4-notifyd-0.1.0.tar.bz2 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec new file mode 100644 index 0000000..824e5cd --- /dev/null +++ b/xfce4-notifyd.spec @@ -0,0 +1,95 @@ +Name: xfce4-notifyd +Version: 0.1.0 +Release: 1%{?dist} +Summary: Simple notification daemon for Xfce + +Group: User Interface/Desktops +License: GPLv2 +URL: http://spuriousinterrupt.org/projects/xfce4-notifyd +Source0: http://spuriousinterrupt.org/files/xfce4-notifyd/xfce4-notifyd-%{version}.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: gtk2-devel >= 2.10.0 +BuildRequires: libxfcegui4-devel >= 4.5.90 +BuildRequires: xfconf-devel >= 4.5.90 +BuildRequires: dbus-glib-devel >= 0.72 +BuildRequires: libglade2-devel >= 2.6.0 +BuildRequires: libsexy-devel >= 0.1.6 +BuildRequires: desktop-file-utils +BuildRequires: intltool +Requires: dbus +Requires: hicolor-icon-theme +# the package conflicts with Gnome's notification-daemon +Conflicts: notification-daemon +# but also provides +Provides: desktop-notification-daemon +# and obsoletes all notification-daemon-xfce releases +Obsoletes: notification-daemon-xfce <= 0.3.7 + + +%description +Xfce4-notifyd is a simple, visually-appealing notification daemon for Xfce +that implements the freedesktop.org desktop notifications specification. +Features: +* Themable using the GTK+ theming mechanism +* Visually appealing: rounded corners, shaped windows +* Supports transparency and fade effects + + +%prep +%setup -q + + +%build +%configure +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" +desktop-file-install \ + --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ + --add-only-show-in=XFCE \ + --delete-original \ + ${RPM_BUILD_ROOT}%{_datadir}/applications/xfce4-notifyd-config.desktop +%find_lang %{name} + + +%post +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : + + +%postun +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + + +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files -f %{name}.lang +%defattr(-,root,root,-) +# FIXME: Tell author to include the correct COPYING file +%doc AUTHORS ChangeLog COPYING NEWS README TODO +%{_bindir}/xfce4-notifyd-config +%{_libexecdir}/xfce4-notifyd +%{_datadir}/applications/xfce4-notifyd-config.desktop +%{_datadir}/dbus-1/services/org.freedesktop.Notifications.service +%{_datadir}/icons/hicolor/48x48/apps/xfce4-notifyd.png +%{_datadir}/themes/Default/xfce-notify-4.0/ +%{_datadir}/themes/Smoke/ +%{_datadir}/themes/ZOMG-PONIES!/ + + +%changelog +* Mon Feb 23 2009 Christoph Wickert - 0.1.0-1 +- Initial Fedora Package From 3a8f4eae14ed6504574e2d90031544a1da09c8a2 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Wed, 6 May 2009 23:10:18 +0000 Subject: [PATCH 02/93] add review url --- xfce4-notifyd.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 824e5cd..cee56a8 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -1,3 +1,5 @@ +# Review: https://bugzilla.redhat.com/show_bug.cgi?id=499282 + Name: xfce4-notifyd Version: 0.1.0 Release: 1%{?dist} From d78bce512fed1536f1d191e45b15721f6b5fc399 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Wed, 13 May 2009 23:53:23 +0000 Subject: [PATCH 03/93] - Patch to rename dbus-service file to avoid conflict with notification-daemon --- xfce4-notifyd-0.1.0-dbus-service-name.patch | 38 +++++++++++++++++++++ xfce4-notifyd.spec | 14 ++++---- 2 files changed, 46 insertions(+), 6 deletions(-) create mode 100644 xfce4-notifyd-0.1.0-dbus-service-name.patch diff --git a/xfce4-notifyd-0.1.0-dbus-service-name.patch b/xfce4-notifyd-0.1.0-dbus-service-name.patch new file mode 100644 index 0000000..92de5a2 --- /dev/null +++ b/xfce4-notifyd-0.1.0-dbus-service-name.patch @@ -0,0 +1,38 @@ +diff -Nur xfce4-notifyd-0.1.0.orig/xfce4-notifyd/Makefile.am xfce4-notifyd-0.1.0/xfce4-notifyd/Makefile.am +--- xfce4-notifyd-0.1.0.orig/xfce4-notifyd/Makefile.am 2008-11-24 20:36:12.000000000 +0100 ++++ xfce4-notifyd-0.1.0/xfce4-notifyd/Makefile.am 2009-05-14 01:38:31.000000000 +0200 +@@ -32,7 +32,7 @@ + + + servicedir = $(datadir)/dbus-1/services +-service_in_files = org.freedesktop.Notifications.service.in ++service_in_files = xfce-org.freedesktop.Notifications.service.in + service_DATA = $(service_in_files:.service.in=.service) + + %.service: $(srcdir)/%.service.in Makefile +diff -Nur xfce4-notifyd-0.1.0.orig/xfce4-notifyd/Makefile.in xfce4-notifyd-0.1.0/xfce4-notifyd/Makefile.in +--- xfce4-notifyd-0.1.0.orig/xfce4-notifyd/Makefile.in 2008-11-24 20:36:20.000000000 +0100 ++++ xfce4-notifyd-0.1.0/xfce4-notifyd/Makefile.in 2009-05-14 01:38:58.000000000 +0200 +@@ -268,7 +268,7 @@ + $(LIBSEXY_LIBS) + + servicedir = $(datadir)/dbus-1/services +-service_in_files = org.freedesktop.Notifications.service.in ++service_in_files = xfce-org.freedesktop.Notifications.service.in + service_DATA = $(service_in_files:.service.in=.service) + @MAINTAINER_MODE_TRUE@BUILT_SOURCES = \ + @MAINTAINER_MODE_TRUE@ notify-dbus.h \ +diff -Nur xfce4-notifyd-0.1.0.orig/xfce4-notifyd/org.freedesktop.Notifications.service.in xfce4-notifyd-0.1.0/xfce4-notifyd/org.freedesktop.Notifications.service.in +--- xfce4-notifyd-0.1.0.orig/xfce4-notifyd/org.freedesktop.Notifications.service.in 2008-11-15 10:29:42.000000000 +0100 ++++ xfce4-notifyd-0.1.0/xfce4-notifyd/org.freedesktop.Notifications.service.in 1970-01-01 01:00:00.000000000 +0100 +@@ -1,3 +0,0 @@ +-[D-BUS Service] +-Name=org.freedesktop.Notifications +-Exec=@libexecdir@/xfce4-notifyd +diff -Nur xfce4-notifyd-0.1.0.orig/xfce4-notifyd/xfce-org.freedesktop.Notifications.service.in xfce4-notifyd-0.1.0/xfce4-notifyd/xfce-org.freedesktop.Notifications.service.in +--- xfce4-notifyd-0.1.0.orig/xfce4-notifyd/xfce-org.freedesktop.Notifications.service.in 1970-01-01 01:00:00.000000000 +0100 ++++ xfce4-notifyd-0.1.0/xfce4-notifyd/xfce-org.freedesktop.Notifications.service.in 2008-11-15 10:29:42.000000000 +0100 +@@ -0,0 +1,3 @@ ++[D-BUS Service] ++Name=org.freedesktop.Notifications ++Exec=@libexecdir@/xfce4-notifyd diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index cee56a8..86444e2 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -2,13 +2,14 @@ Name: xfce4-notifyd Version: 0.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops License: GPLv2 URL: http://spuriousinterrupt.org/projects/xfce4-notifyd Source0: http://spuriousinterrupt.org/files/xfce4-notifyd/xfce4-notifyd-%{version}.tar.bz2 +Patch0: xfce4-notifyd-0.1.0-dbus-service-name.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.10.0 @@ -21,9 +22,7 @@ BuildRequires: desktop-file-utils BuildRequires: intltool Requires: dbus Requires: hicolor-icon-theme -# the package conflicts with Gnome's notification-daemon -Conflicts: notification-daemon -# but also provides +# for compatibility this package provides Provides: desktop-notification-daemon # and obsoletes all notification-daemon-xfce releases Obsoletes: notification-daemon-xfce <= 0.3.7 @@ -40,7 +39,7 @@ Features: %prep %setup -q - +%patch0 -p1 -b .dbus-service-name %build %configure @@ -85,7 +84,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/xfce4-notifyd-config %{_libexecdir}/xfce4-notifyd %{_datadir}/applications/xfce4-notifyd-config.desktop -%{_datadir}/dbus-1/services/org.freedesktop.Notifications.service +%{_datadir}/dbus-1/services/xfce-org.freedesktop.Notifications.service %{_datadir}/icons/hicolor/48x48/apps/xfce4-notifyd.png %{_datadir}/themes/Default/xfce-notify-4.0/ %{_datadir}/themes/Smoke/ @@ -93,5 +92,8 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Feb 23 2009 Christoph Wickert - 0.1.0-2 +- Patch to rename dbus-service file to avoid conflict with notification-daemon + * Mon Feb 23 2009 Christoph Wickert - 0.1.0-1 - Initial Fedora Package From c553d5c8dca786d3c5173ccd5e1f7f468745ff5a Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Thu, 14 May 2009 00:03:41 +0000 Subject: [PATCH 04/93] add send-reason patch --- ...-send-second-arg-notification-closed.patch | 43 +++++++++++++++++++ xfce4-notifyd.spec | 3 ++ 2 files changed, 46 insertions(+) create mode 100644 xfce4-notifyd-0.1.0-send-second-arg-notification-closed.patch diff --git a/xfce4-notifyd-0.1.0-send-second-arg-notification-closed.patch b/xfce4-notifyd-0.1.0-send-second-arg-notification-closed.patch new file mode 100644 index 0000000..db76e7e --- /dev/null +++ b/xfce4-notifyd-0.1.0-send-second-arg-notification-closed.patch @@ -0,0 +1,43 @@ + +Revert e5e86376c5824b74073ab1ab2a332ee9c3bb64fc +We want to send the reason as libnotify 0.4.5 does support the reason arg. + +diff --git a/po/POTFILES.skip b/po/POTFILES.skip +new file mode 100644 +index 0000000..4afffb8 +--- /dev/null ++++ b/po/POTFILES.skip +@@ -0,0 +1 @@ ++.pc/01_send-second-arg-notification-closed.patch/xfce4-notifyd/xfce-notify-daemon.c +diff --git a/xfce4-notifyd/xfce-notify-daemon.c b/xfce4-notifyd/xfce-notify-daemon.c +index 9a14e30..cd71cbb 100644 +--- a/xfce4-notifyd/xfce-notify-daemon.c ++++ b/xfce4-notifyd/xfce-notify-daemon.c +@@ -125,15 +125,10 @@ + G_SIGNAL_RUN_LAST, + 0, + NULL, NULL, +- g_cclosure_marshal_VOID__UINT, +- G_TYPE_NONE, 1, +- G_TYPE_UINT); +-#if 0 /* it seems libnotify doesn't support the close-reason arg */ + xfce_notify_marshal_VOID__UINT_UINT, + G_TYPE_NONE, 2, + G_TYPE_UINT, + G_TYPE_UINT); +-#endif + signals[SIG_ACTION_INVOKED] = g_signal_new("action-invoked", + XFCE_TYPE_NOTIFY_DAEMON, + G_SIGNAL_RUN_LAST, +@@ -215,9 +210,7 @@ + + g_tree_remove(daemon->active_notifications, id_p); + g_signal_emit(G_OBJECT(daemon), signals[SIG_NOTIFICATION_CLOSED], 0, +- GPOINTER_TO_UINT(id_p)); +- /* NOTE: libnotify doesn't support the close-reason argument to +- * the signal. not sure why. */ ++ GPOINTER_TO_UINT(id_p), reason); + } + + static void + diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 86444e2..57f7c41 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -10,6 +10,7 @@ License: GPLv2 URL: http://spuriousinterrupt.org/projects/xfce4-notifyd Source0: http://spuriousinterrupt.org/files/xfce4-notifyd/xfce4-notifyd-%{version}.tar.bz2 Patch0: xfce4-notifyd-0.1.0-dbus-service-name.patch +Patch1: xfce4-notifyd-0.1.0-send-second-arg-notification-closed.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.10.0 @@ -40,6 +41,7 @@ Features: %prep %setup -q %patch0 -p1 -b .dbus-service-name +%patch1 -p1 -b .reason-arg %build %configure @@ -94,6 +96,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Mon Feb 23 2009 Christoph Wickert - 0.1.0-2 - Patch to rename dbus-service file to avoid conflict with notification-daemon +- Add Debian's patch support the reason arg in libnotify 0.4.5 * Mon Feb 23 2009 Christoph Wickert - 0.1.0-1 - Initial Fedora Package From 374a85b217507433c517bd1e37af10706efd39c7 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 07:54:19 +0000 Subject: [PATCH 05/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 57f7c41..563a504 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -2,7 +2,7 @@ Name: xfce4-notifyd Version: 0.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Christoph Wickert - 0.1.0-2 - Patch to rename dbus-service file to avoid conflict with notification-daemon - Add Debian's patch support the reason arg in libnotify 0.4.5 From a565a6d85fa420697e3da2463ad5dc1e6aaf3524 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:40:57 +0000 Subject: [PATCH 06/93] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 94b85c9..6863abe 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: xfce4-notifyd -# $Id$ +# $Id: Makefile,v 1.1 2009/05/06 21:18:31 kevin Exp $ NAME := xfce4-notifyd SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From f4efe678d64554e1765f42ce67015b3c3b4d3448 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:46:02 +0000 Subject: [PATCH 07/93] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 6863abe..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xfce4-notifyd -# $Id: Makefile,v 1.1 2009/05/06 21:18:31 kevin Exp $ -NAME := xfce4-notifyd -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index af73d4c..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -xfce4-notifyd-0_1_0-1_fc11:HEAD:xfce4-notifyd-0.1.0-1.fc11.src.rpm:1241650892 From 5b3d7422cd8ab17691fbb443f3388d3886c44a9f Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Sat, 27 Nov 2010 17:13:17 +0100 Subject: [PATCH 08/93] - Update to 0.2.0 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd-0.1.0-dbus-service-name.patch | 38 ---------------- ...-send-second-arg-notification-closed.patch | 43 ------------------- xfce4-notifyd-0.2.0-dbus-service-name.patch | 38 ++++++++++++++++ xfce4-notifyd.spec | 29 +++++++------ 6 files changed, 56 insertions(+), 95 deletions(-) delete mode 100644 xfce4-notifyd-0.1.0-dbus-service-name.patch delete mode 100644 xfce4-notifyd-0.1.0-send-second-arg-notification-closed.patch create mode 100644 xfce4-notifyd-0.2.0-dbus-service-name.patch diff --git a/.gitignore b/.gitignore index d85194a..0e5c491 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ xfce4-notifyd-0.1.0.tar.bz2 +/xfce4-notifyd-0.2.0.tar.bz2 diff --git a/sources b/sources index 7c39773..875416d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -659ecaf37f0f7ee9e31f7b25f9813778 xfce4-notifyd-0.1.0.tar.bz2 +4b614f738e87a7b84c2de0bddf6721b8 xfce4-notifyd-0.2.0.tar.bz2 diff --git a/xfce4-notifyd-0.1.0-dbus-service-name.patch b/xfce4-notifyd-0.1.0-dbus-service-name.patch deleted file mode 100644 index 92de5a2..0000000 --- a/xfce4-notifyd-0.1.0-dbus-service-name.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff -Nur xfce4-notifyd-0.1.0.orig/xfce4-notifyd/Makefile.am xfce4-notifyd-0.1.0/xfce4-notifyd/Makefile.am ---- xfce4-notifyd-0.1.0.orig/xfce4-notifyd/Makefile.am 2008-11-24 20:36:12.000000000 +0100 -+++ xfce4-notifyd-0.1.0/xfce4-notifyd/Makefile.am 2009-05-14 01:38:31.000000000 +0200 -@@ -32,7 +32,7 @@ - - - servicedir = $(datadir)/dbus-1/services --service_in_files = org.freedesktop.Notifications.service.in -+service_in_files = xfce-org.freedesktop.Notifications.service.in - service_DATA = $(service_in_files:.service.in=.service) - - %.service: $(srcdir)/%.service.in Makefile -diff -Nur xfce4-notifyd-0.1.0.orig/xfce4-notifyd/Makefile.in xfce4-notifyd-0.1.0/xfce4-notifyd/Makefile.in ---- xfce4-notifyd-0.1.0.orig/xfce4-notifyd/Makefile.in 2008-11-24 20:36:20.000000000 +0100 -+++ xfce4-notifyd-0.1.0/xfce4-notifyd/Makefile.in 2009-05-14 01:38:58.000000000 +0200 -@@ -268,7 +268,7 @@ - $(LIBSEXY_LIBS) - - servicedir = $(datadir)/dbus-1/services --service_in_files = org.freedesktop.Notifications.service.in -+service_in_files = xfce-org.freedesktop.Notifications.service.in - service_DATA = $(service_in_files:.service.in=.service) - @MAINTAINER_MODE_TRUE@BUILT_SOURCES = \ - @MAINTAINER_MODE_TRUE@ notify-dbus.h \ -diff -Nur xfce4-notifyd-0.1.0.orig/xfce4-notifyd/org.freedesktop.Notifications.service.in xfce4-notifyd-0.1.0/xfce4-notifyd/org.freedesktop.Notifications.service.in ---- xfce4-notifyd-0.1.0.orig/xfce4-notifyd/org.freedesktop.Notifications.service.in 2008-11-15 10:29:42.000000000 +0100 -+++ xfce4-notifyd-0.1.0/xfce4-notifyd/org.freedesktop.Notifications.service.in 1970-01-01 01:00:00.000000000 +0100 -@@ -1,3 +0,0 @@ --[D-BUS Service] --Name=org.freedesktop.Notifications --Exec=@libexecdir@/xfce4-notifyd -diff -Nur xfce4-notifyd-0.1.0.orig/xfce4-notifyd/xfce-org.freedesktop.Notifications.service.in xfce4-notifyd-0.1.0/xfce4-notifyd/xfce-org.freedesktop.Notifications.service.in ---- xfce4-notifyd-0.1.0.orig/xfce4-notifyd/xfce-org.freedesktop.Notifications.service.in 1970-01-01 01:00:00.000000000 +0100 -+++ xfce4-notifyd-0.1.0/xfce4-notifyd/xfce-org.freedesktop.Notifications.service.in 2008-11-15 10:29:42.000000000 +0100 -@@ -0,0 +1,3 @@ -+[D-BUS Service] -+Name=org.freedesktop.Notifications -+Exec=@libexecdir@/xfce4-notifyd diff --git a/xfce4-notifyd-0.1.0-send-second-arg-notification-closed.patch b/xfce4-notifyd-0.1.0-send-second-arg-notification-closed.patch deleted file mode 100644 index db76e7e..0000000 --- a/xfce4-notifyd-0.1.0-send-second-arg-notification-closed.patch +++ /dev/null @@ -1,43 +0,0 @@ - -Revert e5e86376c5824b74073ab1ab2a332ee9c3bb64fc -We want to send the reason as libnotify 0.4.5 does support the reason arg. - -diff --git a/po/POTFILES.skip b/po/POTFILES.skip -new file mode 100644 -index 0000000..4afffb8 ---- /dev/null -+++ b/po/POTFILES.skip -@@ -0,0 +1 @@ -+.pc/01_send-second-arg-notification-closed.patch/xfce4-notifyd/xfce-notify-daemon.c -diff --git a/xfce4-notifyd/xfce-notify-daemon.c b/xfce4-notifyd/xfce-notify-daemon.c -index 9a14e30..cd71cbb 100644 ---- a/xfce4-notifyd/xfce-notify-daemon.c -+++ b/xfce4-notifyd/xfce-notify-daemon.c -@@ -125,15 +125,10 @@ - G_SIGNAL_RUN_LAST, - 0, - NULL, NULL, -- g_cclosure_marshal_VOID__UINT, -- G_TYPE_NONE, 1, -- G_TYPE_UINT); --#if 0 /* it seems libnotify doesn't support the close-reason arg */ - xfce_notify_marshal_VOID__UINT_UINT, - G_TYPE_NONE, 2, - G_TYPE_UINT, - G_TYPE_UINT); --#endif - signals[SIG_ACTION_INVOKED] = g_signal_new("action-invoked", - XFCE_TYPE_NOTIFY_DAEMON, - G_SIGNAL_RUN_LAST, -@@ -215,9 +210,7 @@ - - g_tree_remove(daemon->active_notifications, id_p); - g_signal_emit(G_OBJECT(daemon), signals[SIG_NOTIFICATION_CLOSED], 0, -- GPOINTER_TO_UINT(id_p)); -- /* NOTE: libnotify doesn't support the close-reason argument to -- * the signal. not sure why. */ -+ GPOINTER_TO_UINT(id_p), reason); - } - - static void - diff --git a/xfce4-notifyd-0.2.0-dbus-service-name.patch b/xfce4-notifyd-0.2.0-dbus-service-name.patch new file mode 100644 index 0000000..704a27c --- /dev/null +++ b/xfce4-notifyd-0.2.0-dbus-service-name.patch @@ -0,0 +1,38 @@ +diff -Nur xfce4-notifyd-0.2.0.orig/Makefile.am xfce4-notifyd-0.2.0/Makefile.am +--- xfce4-notifyd-0.2.0.orig/Makefile.am 2010-11-14 14:16:43.000000000 +0100 ++++ xfce4-notifyd-0.2.0/Makefile.am 2010-11-27 16:38:29.143014262 +0100 +@@ -66,7 +66,7 @@ + + + servicedir = $(datadir)/dbus-1/services +-service_in_files = xfce4-notifyd/org.freedesktop.Notifications.service.in ++service_in_files = xfce4-notifyd/org.xfce.Notifications.service.in + service_DATA = $(service_in_files:.service.in=.service) + + dist_service = \ +diff -Nur xfce4-notifyd-0.2.0.orig/Makefile.in xfce4-notifyd-0.2.0/Makefile.in +--- xfce4-notifyd-0.2.0.orig/Makefile.in 2010-11-27 13:46:43.000000000 +0100 ++++ xfce4-notifyd-0.2.0/Makefile.in 2010-11-27 16:38:21.512993641 +0100 +@@ -449,7 +449,7 @@ + $(common_ldadd) + + servicedir = $(datadir)/dbus-1/services +-service_in_files = xfce4-notifyd/org.freedesktop.Notifications.service.in ++service_in_files = xfce4-notifyd/org.xfce.Notifications.service.in + service_DATA = $(service_in_files:.service.in=.service) + dist_service = \ + $(service_in_files) \ +diff -Nur xfce4-notifyd-0.2.0.orig/xfce4-notifyd/org.freedesktop.Notifications.service.in xfce4-notifyd-0.2.0/xfce4-notifyd/org.freedesktop.Notifications.service.in +--- xfce4-notifyd-0.2.0.orig/xfce4-notifyd/org.freedesktop.Notifications.service.in 2010-11-17 23:02:24.000000000 +0100 ++++ xfce4-notifyd-0.2.0/xfce4-notifyd/org.freedesktop.Notifications.service.in 1970-01-01 01:00:00.000000000 +0100 +@@ -1,3 +0,0 @@ +-[D-BUS Service] +-Name=org.freedesktop.Notifications +-Exec=@notifydir@/xfce4-notifyd +diff -Nur xfce4-notifyd-0.2.0.orig/xfce4-notifyd/org.xfce.Notifications.service.in xfce4-notifyd-0.2.0/xfce4-notifyd/org.xfce.Notifications.service.in +--- xfce4-notifyd-0.2.0.orig/xfce4-notifyd/org.xfce.Notifications.service.in 1970-01-01 01:00:00.000000000 +0100 ++++ xfce4-notifyd-0.2.0/xfce4-notifyd/org.xfce.Notifications.service.in 2010-11-27 16:39:49.143228336 +0100 +@@ -0,0 +1,3 @@ ++[D-BUS Service] ++Name=org.freedesktop.Notifications ++Exec=@notifydir@/xfce4-notifyd diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 563a504..532c861 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -1,24 +1,24 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=499282 +%global minorversion 0.2 + Name: xfce4-notifyd -Version: 0.1.0 -Release: 3%{?dist} +Version: 0.2.0 +Release: 1%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops License: GPLv2 -URL: http://spuriousinterrupt.org/projects/xfce4-notifyd -Source0: http://spuriousinterrupt.org/files/xfce4-notifyd/xfce4-notifyd-%{version}.tar.bz2 -Patch0: xfce4-notifyd-0.1.0-dbus-service-name.patch -Patch1: xfce4-notifyd-0.1.0-send-second-arg-notification-closed.patch +URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd +Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 +Patch0: xfce4-notifyd-0.2.0-dbus-service-name.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: gtk2-devel >= 2.10.0 -BuildRequires: libxfcegui4-devel >= 4.5.90 +BuildRequires: gtk2-devel >= 2.14.0 +BuildRequires: libxfce4ui-devel >= 4.7.0 BuildRequires: xfconf-devel >= 4.5.90 BuildRequires: dbus-glib-devel >= 0.72 BuildRequires: libglade2-devel >= 2.6.0 -BuildRequires: libsexy-devel >= 0.1.6 BuildRequires: desktop-file-utils BuildRequires: intltool Requires: dbus @@ -41,7 +41,7 @@ Features: %prep %setup -q %patch0 -p1 -b .dbus-service-name -%patch1 -p1 -b .reason-arg + %build %configure @@ -81,19 +81,22 @@ rm -rf $RPM_BUILD_ROOT %files -f %{name}.lang %defattr(-,root,root,-) -# FIXME: Tell author to include the correct COPYING file %doc AUTHORS ChangeLog COPYING NEWS README TODO %{_bindir}/xfce4-notifyd-config -%{_libexecdir}/xfce4-notifyd +%{_libdir}/xfce4/notifyd/xfce4-notifyd %{_datadir}/applications/xfce4-notifyd-config.desktop -%{_datadir}/dbus-1/services/xfce-org.freedesktop.Notifications.service +%{_datadir}/dbus-1/services/org.xfce.Notifications.service %{_datadir}/icons/hicolor/48x48/apps/xfce4-notifyd.png %{_datadir}/themes/Default/xfce-notify-4.0/ %{_datadir}/themes/Smoke/ %{_datadir}/themes/ZOMG-PONIES!/ +%{_mandir}/man1/xfce4-notifyd-config.1.* %changelog +* Sat Nov 27 2010 Christoph Wickert - 0.2.0 +- Update to 0.2.0 + * Mon Jul 27 2009 Fedora Release Engineering - 0.1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 875219d92069915c4e973c71b6c6fe4665ea9528 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Wed, 2 Feb 2011 22:29:13 +0100 Subject: [PATCH 09/93] - Update to 0.2.1 (fixes #660549) - Own %{_libdir}/xfce4/notifyd/ --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 12 ++++++++---- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 0e5c491..0903547 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.2.0.tar.bz2 +/xfce4-notifyd-0.2.1.tar.bz2 diff --git a/sources b/sources index 875416d..8fe1e29 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4b614f738e87a7b84c2de0bddf6721b8 xfce4-notifyd-0.2.0.tar.bz2 +0a63857901809887b587c73024d1089b xfce4-notifyd-0.2.1.tar.bz2 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 532c861..596fb0a 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -3,7 +3,7 @@ %global minorversion 0.2 Name: xfce4-notifyd -Version: 0.2.0 +Version: 0.2.1 Release: 1%{?dist} Summary: Simple notification daemon for Xfce @@ -50,7 +50,7 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" +make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' desktop-file-install \ --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ --add-only-show-in=XFCE \ @@ -83,7 +83,7 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README TODO %{_bindir}/xfce4-notifyd-config -%{_libdir}/xfce4/notifyd/xfce4-notifyd +%{_libdir}/xfce4/notifyd/ %{_datadir}/applications/xfce4-notifyd-config.desktop %{_datadir}/dbus-1/services/org.xfce.Notifications.service %{_datadir}/icons/hicolor/48x48/apps/xfce4-notifyd.png @@ -94,7 +94,11 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Sat Nov 27 2010 Christoph Wickert - 0.2.0 +* Wed Feb 02 2011 Christoph Wickert - 0.2.1-1 +- Update to 0.2.1 (fixes #660549) +- Own %%{_libdir}/xfce4/notifyd/ + +* Sat Nov 27 2010 Christoph Wickert - 0.2.0-1 - Update to 0.2.0 * Mon Jul 27 2009 Fedora Release Engineering - 0.1.0-3 From c2d2959d0a7b18682cddbfc7cd5e59797b61f382 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 22:44:31 -0600 Subject: [PATCH 10/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 596fb0a..c8c336e 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Wed Feb 02 2011 Christoph Wickert - 0.2.1-1 - Update to 0.2.1 (fixes #660549) - Own %%{_libdir}/xfce4/notifyd/ From 61facd21a593f51ef4226cecc24bf7a856276678 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Fri, 1 Jul 2011 00:17:55 +0200 Subject: [PATCH 11/93] Fix crash in handle_error (#706677) Remove obsolete BuildRequires libglade2-devel --- xfce4-notifyd.spec | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index c8c336e..9f254d7 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -12,13 +12,13 @@ License: GPLv2 URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 Patch0: xfce4-notifyd-0.2.0-dbus-service-name.patch +Patch1: xfce4-notifyd-0.2.1-Fix-race-with-window-becoming-invalid.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.14.0 BuildRequires: libxfce4ui-devel >= 4.7.0 BuildRequires: xfconf-devel >= 4.5.90 BuildRequires: dbus-glib-devel >= 0.72 -BuildRequires: libglade2-devel >= 2.6.0 BuildRequires: desktop-file-utils BuildRequires: intltool Requires: dbus @@ -41,6 +41,7 @@ Features: %prep %setup -q %patch0 -p1 -b .dbus-service-name +%patch1 -p1 -b .invalid %build @@ -74,7 +75,6 @@ fi gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : - %clean rm -rf $RPM_BUILD_ROOT @@ -94,6 +94,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 31 2011 Christoph Wickert - 0.2.1-3 +- Fix crash in handle_error (#706677) +- Remove obsolete BuildRequires libglade2-devel + * Mon Feb 07 2011 Fedora Release Engineering - 0.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 3cc4b670cad89e38a5835211eac66fc3c92b650e Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Fri, 1 Jul 2011 00:44:05 +0200 Subject: [PATCH 12/93] Add missing patch --- ...ix-race-with-window-becoming-invalid.patch | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 xfce4-notifyd-0.2.1-Fix-race-with-window-becoming-invalid.patch diff --git a/xfce4-notifyd-0.2.1-Fix-race-with-window-becoming-invalid.patch b/xfce4-notifyd-0.2.1-Fix-race-with-window-becoming-invalid.patch new file mode 100644 index 0000000..eb1d579 --- /dev/null +++ b/xfce4-notifyd-0.2.1-Fix-race-with-window-becoming-invalid.patch @@ -0,0 +1,40 @@ +From 66263f690164478b25a7a67efa398a235f91b711 Mon Sep 17 00:00:00 2001 +From: Ricky Zhou +Date: Thu, 2 Jun 2011 05:22:01 -0400 +Subject: [PATCH] Fix race with window becoming invalid. + +--- + xfce4-notifyd/xfce-notify-daemon.c | 13 ++++++++++++- + 1 files changed, 12 insertions(+), 1 deletions(-) + +diff --git a/xfce4-notifyd/xfce-notify-daemon.c b/xfce4-notifyd/xfce-notify-daemon.c +index 0d6eddd..6e49ab2 100644 +--- a/xfce4-notifyd/xfce-notify-daemon.c ++++ b/xfce4-notifyd/xfce-notify-daemon.c +@@ -517,11 +517,22 @@ xfce_notify_daemon_get_workarea(GdkScreen *screen, + + for(l = g_list_first(windows_list); l != NULL; l = g_list_next(l)) { + GdkWindow *window = l->data; ++ GdkWindowTypeHint type_hint; + +- if(gdk_window_get_type_hint(window) == GDK_WINDOW_TYPE_HINT_DOCK) { ++ gdk_error_trap_push(); ++ type_hint = gdk_window_get_type_hint(window); ++ gdk_flush(); ++ if (gdk_error_trap_pop()) ++ continue; ++ ++ if(type_hint == GDK_WINDOW_TYPE_HINT_DOCK) { + GdkRectangle window_geom, intersection; + ++ gdk_error_trap_push(); + gdk_window_get_frame_extents(window, &window_geom); ++ gdk_flush(); ++ if (gdk_error_trap_pop()) ++ continue; + + DBG("Got a dock window: x(%d), y(%d), w(%d), h(%d)", + window_geom.x, +-- +1.7.5.2 + From cf27648ccc8c5a69f676972b0076d65169c9f239 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Fri, 1 Jul 2011 01:06:49 +0200 Subject: [PATCH 13/93] Add info on latest patch --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 9f254d7..7fabdb9 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -12,6 +12,9 @@ License: GPLv2 URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 Patch0: xfce4-notifyd-0.2.0-dbus-service-name.patch +# Patch by Ricky Zhou taken from +# https://bugzilla.xfce.org/show_bug.cgi?id=7643 +# applied in http://git.xfce.org/apps/xfce4-notifyd/commit/?id=37d571ae Patch1: xfce4-notifyd-0.2.1-Fix-race-with-window-becoming-invalid.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -95,7 +98,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Fri Jul 31 2011 Christoph Wickert - 0.2.1-3 -- Fix crash in handle_error (#706677) +- Fix crash in handle_error. Thanks to Ricky Zhou (#706677) - Remove obsolete BuildRequires libglade2-devel * Mon Feb 07 2011 Fedora Release Engineering - 0.2.1-2 From e0a544ce745c31685cb81308f9078b7bf4697f2d Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Tue, 9 Aug 2011 16:55:51 +0200 Subject: [PATCH 14/93] Update to 0.2.2 Remove upstreamed Fix-race-with-window-becoming-invalid.patch --- .gitignore | 1 + sources | 2 +- ... xfce4-notifyd-0.2.2-dbus-service-name.patch | 10 +++++----- xfce4-notifyd.spec | 17 +++++++++-------- 4 files changed, 16 insertions(+), 14 deletions(-) rename xfce4-notifyd-0.2.0-dbus-service-name.patch => xfce4-notifyd-0.2.2-dbus-service-name.patch (71%) diff --git a/.gitignore b/.gitignore index 0903547..c333b6a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.2.0.tar.bz2 /xfce4-notifyd-0.2.1.tar.bz2 +/xfce4-notifyd-0.2.2.tar.bz2 diff --git a/sources b/sources index 8fe1e29..2e2318f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0a63857901809887b587c73024d1089b xfce4-notifyd-0.2.1.tar.bz2 +8687fb7a0f270231ada265e363b6ffcc xfce4-notifyd-0.2.2.tar.bz2 diff --git a/xfce4-notifyd-0.2.0-dbus-service-name.patch b/xfce4-notifyd-0.2.2-dbus-service-name.patch similarity index 71% rename from xfce4-notifyd-0.2.0-dbus-service-name.patch rename to xfce4-notifyd-0.2.2-dbus-service-name.patch index 704a27c..ad17c83 100644 --- a/xfce4-notifyd-0.2.0-dbus-service-name.patch +++ b/xfce4-notifyd-0.2.2-dbus-service-name.patch @@ -5,7 +5,7 @@ diff -Nur xfce4-notifyd-0.2.0.orig/Makefile.am xfce4-notifyd-0.2.0/Makefile.am servicedir = $(datadir)/dbus-1/services --service_in_files = xfce4-notifyd/org.freedesktop.Notifications.service.in +-service_in_files = xfce4-notifyd/org.xfce.xfce4-notifyd.Notifications.service.in +service_in_files = xfce4-notifyd/org.xfce.Notifications.service.in service_DATA = $(service_in_files:.service.in=.service) @@ -17,14 +17,14 @@ diff -Nur xfce4-notifyd-0.2.0.orig/Makefile.in xfce4-notifyd-0.2.0/Makefile.in $(common_ldadd) servicedir = $(datadir)/dbus-1/services --service_in_files = xfce4-notifyd/org.freedesktop.Notifications.service.in +-service_in_files = xfce4-notifyd/org.xfce.xfce4-notifyd.Notifications.service.in +service_in_files = xfce4-notifyd/org.xfce.Notifications.service.in service_DATA = $(service_in_files:.service.in=.service) dist_service = \ $(service_in_files) \ -diff -Nur xfce4-notifyd-0.2.0.orig/xfce4-notifyd/org.freedesktop.Notifications.service.in xfce4-notifyd-0.2.0/xfce4-notifyd/org.freedesktop.Notifications.service.in ---- xfce4-notifyd-0.2.0.orig/xfce4-notifyd/org.freedesktop.Notifications.service.in 2010-11-17 23:02:24.000000000 +0100 -+++ xfce4-notifyd-0.2.0/xfce4-notifyd/org.freedesktop.Notifications.service.in 1970-01-01 01:00:00.000000000 +0100 +diff -Nur xfce4-notifyd-0.2.0.orig/xfce4-notifyd/org.xfce.xfce4-notifyd.Notifications.service.in xfce4-notifyd-0.2.0/xfce4-notifyd/org.xfce.xfce4-notifyd.Notifications.service.in +--- xfce4-notifyd-0.2.0.orig/xfce4-notifyd/org.xfce.xfce4-notifyd.Notifications.service.in 2010-11-17 23:02:24.000000000 +0100 ++++ xfce4-notifyd-0.2.0/xfce4-notifyd/org.xfce.xfce4-notifyd.Notifications.service.in 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -[D-BUS Service] -Name=org.freedesktop.Notifications diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 7fabdb9..304a281 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -3,19 +3,17 @@ %global minorversion 0.2 Name: xfce4-notifyd -Version: 0.2.1 -Release: 3%{?dist} +Version: 0.2.2 +Release: 1%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops License: GPLv2 URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 -Patch0: xfce4-notifyd-0.2.0-dbus-service-name.patch -# Patch by Ricky Zhou taken from -# https://bugzilla.xfce.org/show_bug.cgi?id=7643 -# applied in http://git.xfce.org/apps/xfce4-notifyd/commit/?id=37d571ae -Patch1: xfce4-notifyd-0.2.1-Fix-race-with-window-becoming-invalid.patch +# Similar to https://bugzilla.xfce.org/show_bug.cgi?id=7335 but we did the same +# two years before upstream and continue to use org.xfce.Notifications.service +Patch0: xfce4-notifyd-0.2.2-dbus-service-name.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.14.0 @@ -44,7 +42,6 @@ Features: %prep %setup -q %patch0 -p1 -b .dbus-service-name -%patch1 -p1 -b .invalid %build @@ -97,6 +94,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Aug 09 2011 Christoph Wickert - 0.2.2-1 +- Update to 0.2.2 +- Remove upstreamed Fix-race-with-window-becoming-invalid.patch + * Fri Jul 31 2011 Christoph Wickert - 0.2.1-3 - Fix crash in handle_error. Thanks to Ricky Zhou (#706677) - Remove obsolete BuildRequires libglade2-devel From 46e555bbbabddf9c4ad154658b7275377043abde Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Tue, 6 Dec 2011 01:40:26 -0500 Subject: [PATCH 15/93] Rebuild for new libpng --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 304a281..483ddd4 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Dec 06 2011 Adam Jackson - 0.2.2-2 +- Rebuild for new libpng + * Tue Aug 09 2011 Christoph Wickert - 0.2.2-1 - Update to 0.2.2 - Remove upstreamed Fix-race-with-window-becoming-invalid.patch From 83539cd4268d1074cc6d4ef86a04a2dfa4654736 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 02:50:16 -0600 Subject: [PATCH 16/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 483ddd4..89c09eb 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 0.2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Tue Dec 06 2011 Adam Jackson - 0.2.2-2 - Rebuild for new libpng From 97655b9d1ddefb69866644b78933b7c4d681d3ba Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 4 Apr 2012 17:06:20 -0600 Subject: [PATCH 17/93] Rebuild for new lbxfce4util --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 89c09eb..f464540 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Apr 01 2012 Kevin Fenzi - 0.2.2-4 +- Rebuild for new lbxfce4util + * Sat Jan 14 2012 Fedora Release Engineering - 0.2.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From a9aa59110f6769c7f427fa47454869ff562d3488 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 22 Jul 2012 00:11:04 -0500 Subject: [PATCH 18/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index f464540..2649511 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 0.2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sun Apr 01 2012 Kevin Fenzi - 0.2.2-4 - Rebuild for new lbxfce4util From d7325eaf19f83b329b1aa1fc000e8cb8eac834bc Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Sat, 6 Oct 2012 00:42:44 +0200 Subject: [PATCH 19/93] Remove obsolete libsexy checks - Add patch to avoid flickering - Add patch to support image URI locations - Make xfce4-notifyd-config show up in xfce4-settings-manager --- ...ix-race-with-window-becoming-invalid.patch | 40 ----------------- xfce4-notifyd-0.2.2-avoid-flickering.patch | 44 +++++++++++++++++++ xfce4-notifyd-0.2.2-emit-closed-signal.patch | 24 ++++++++++ xfce4-notifyd-0.2.2-fixup-type-setting.patch | 30 +++++++++++++ ...4-notifyd-0.2.2-remove-libsexy-patch.patch | 22 ++++++++++ xfce4-notifyd.spec | 34 +++++++++++--- xfce4-notityd-0.2.2-uri-image-locations.patch | 33 ++++++++++++++ 7 files changed, 182 insertions(+), 45 deletions(-) delete mode 100644 xfce4-notifyd-0.2.1-Fix-race-with-window-becoming-invalid.patch create mode 100644 xfce4-notifyd-0.2.2-avoid-flickering.patch create mode 100644 xfce4-notifyd-0.2.2-emit-closed-signal.patch create mode 100644 xfce4-notifyd-0.2.2-fixup-type-setting.patch create mode 100644 xfce4-notifyd-0.2.2-remove-libsexy-patch.patch create mode 100644 xfce4-notityd-0.2.2-uri-image-locations.patch diff --git a/xfce4-notifyd-0.2.1-Fix-race-with-window-becoming-invalid.patch b/xfce4-notifyd-0.2.1-Fix-race-with-window-becoming-invalid.patch deleted file mode 100644 index eb1d579..0000000 --- a/xfce4-notifyd-0.2.1-Fix-race-with-window-becoming-invalid.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 66263f690164478b25a7a67efa398a235f91b711 Mon Sep 17 00:00:00 2001 -From: Ricky Zhou -Date: Thu, 2 Jun 2011 05:22:01 -0400 -Subject: [PATCH] Fix race with window becoming invalid. - ---- - xfce4-notifyd/xfce-notify-daemon.c | 13 ++++++++++++- - 1 files changed, 12 insertions(+), 1 deletions(-) - -diff --git a/xfce4-notifyd/xfce-notify-daemon.c b/xfce4-notifyd/xfce-notify-daemon.c -index 0d6eddd..6e49ab2 100644 ---- a/xfce4-notifyd/xfce-notify-daemon.c -+++ b/xfce4-notifyd/xfce-notify-daemon.c -@@ -517,11 +517,22 @@ xfce_notify_daemon_get_workarea(GdkScreen *screen, - - for(l = g_list_first(windows_list); l != NULL; l = g_list_next(l)) { - GdkWindow *window = l->data; -+ GdkWindowTypeHint type_hint; - -- if(gdk_window_get_type_hint(window) == GDK_WINDOW_TYPE_HINT_DOCK) { -+ gdk_error_trap_push(); -+ type_hint = gdk_window_get_type_hint(window); -+ gdk_flush(); -+ if (gdk_error_trap_pop()) -+ continue; -+ -+ if(type_hint == GDK_WINDOW_TYPE_HINT_DOCK) { - GdkRectangle window_geom, intersection; - -+ gdk_error_trap_push(); - gdk_window_get_frame_extents(window, &window_geom); -+ gdk_flush(); -+ if (gdk_error_trap_pop()) -+ continue; - - DBG("Got a dock window: x(%d), y(%d), w(%d), h(%d)", - window_geom.x, --- -1.7.5.2 - diff --git a/xfce4-notifyd-0.2.2-avoid-flickering.patch b/xfce4-notifyd-0.2.2-avoid-flickering.patch new file mode 100644 index 0000000..51b5a3b --- /dev/null +++ b/xfce4-notifyd-0.2.2-avoid-flickering.patch @@ -0,0 +1,44 @@ +From 8b34ed09d43bbf8daf4e1c71466212d614109ac0 Mon Sep 17 00:00:00 2001 +From: Nick Schermer +Date: Fri, 26 Aug 2011 19:15:31 +0000 +Subject: Avoid flickering of the window. + +Realize (and thus position) the window before actually showing it. + +From c032013769ee860309d3d8821bbea4ed284e45b0 Mon Sep 17 00:00:00 2001 +From: Nick Schermer +Date: Thu, 08 Sep 2011 15:11:27 +0000 +Subject: Fix mistake in commit 8b34ed09. + +The idle kept running, causing 100% cpu usage. +--- +diff --git a/xfce4-notifyd/xfce-notify-daemon.c b/xfce4-notifyd/xfce-notify-daemon.c +index 227d7c0..44eb24b 100644 +--- a/xfce4-notifyd/xfce-notify-daemon.c ++++ b/xfce4-notifyd/xfce-notify-daemon.c +@@ -866,6 +866,13 @@ notify_get_capabilities(XfceNotifyDaemon *xndaemon, + } + + static gboolean ++notify_show_window(gpointer window) ++{ ++ gtk_widget_show(GTK_WIDGET(window)); ++ return FALSE; ++} ++ ++static gboolean + notify_notify(XfceNotifyDaemon *xndaemon, + const gchar *app_name, + guint replaces_id, +@@ -929,7 +936,8 @@ notify_notify(XfceNotifyDaemon *xndaemon, + G_CALLBACK(xfce_notify_daemon_window_size_allocate), + xndaemon); + +- gtk_widget_show(GTK_WIDGET(window)); ++ gtk_widget_realize(GTK_WIDGET(window)); ++ g_idle_add(notify_show_window, window); + } + + if(!app_icon || !*app_icon) { +-- +cgit v0.9.0.3 diff --git a/xfce4-notifyd-0.2.2-emit-closed-signal.patch b/xfce4-notifyd-0.2.2-emit-closed-signal.patch new file mode 100644 index 0000000..330ac8a --- /dev/null +++ b/xfce4-notifyd-0.2.2-emit-closed-signal.patch @@ -0,0 +1,24 @@ +From ad77e8aa48201c1c10226b54f7ab006989f2f4d5 Mon Sep 17 00:00:00 2001 +From: Brian J. Tarricone +Date: Mon, 26 Sep 2011 07:07:31 +0000 +Subject: emit closed signal on correct object + +'widget' is actually the GtkButton when an action is clicked. this is +why notifications were never dismissed when an action got clicked. +long-standing bug finally fixed! +--- +diff --git a/xfce4-notifyd/xfce-notify-window.c b/xfce4-notifyd/xfce-notify-window.c +index 41316b8..8364d7a 100644 +--- a/xfce4-notifyd/xfce-notify-window.c ++++ b/xfce4-notifyd/xfce-notify-window.c +@@ -718,7 +718,7 @@ xfce_notify_window_button_clicked(GtkWidget *widget, + + g_signal_emit(G_OBJECT(window), signals[SIG_ACTION_INVOKED], 0, + action_id); +- g_signal_emit(G_OBJECT(widget), signals[SIG_CLOSED], 0, ++ g_signal_emit(G_OBJECT(window), signals[SIG_CLOSED], 0, + XFCE_NOTIFY_CLOSE_REASON_DISMISSED); + } + +-- +cgit v0.9.0.3 diff --git a/xfce4-notifyd-0.2.2-fixup-type-setting.patch b/xfce4-notifyd-0.2.2-fixup-type-setting.patch new file mode 100644 index 0000000..605fc2d --- /dev/null +++ b/xfce4-notifyd-0.2.2-fixup-type-setting.patch @@ -0,0 +1,30 @@ +From 836e6ce0673a71345c581170412f14a68f6163f7 Mon Sep 17 00:00:00 2001 +From: Nick Schermer +Date: Fri, 26 Aug 2011 10:27:48 +0000 +Subject: Fixup type setting. + +--- +diff --git a/xfce4-notifyd/xfce-notify-window.c b/xfce4-notifyd/xfce-notify-window.c +index 891f5a5..41316b8 100644 +--- a/xfce4-notifyd/xfce-notify-window.c ++++ b/xfce4-notifyd/xfce-notify-window.c +@@ -196,7 +196,6 @@ xfce_notify_window_init(XfceNotifyWindow *window) + GtkWidget *tophbox, *align, *vbox; + gdouble border_radius = DEFAULT_RADIUS; + +- GTK_WINDOW(window)->type = GTK_WINDOW_TOPLEVEL; + window->expire_timeout = DEFAULT_EXPIRE_TIMEOUT; + window->normal_opacity = DEFAULT_NORMAL_OPACITY; + /* The summary widget needs to be initialized before style_set is called. gtk_widget_ensure_style calls style_set */ +@@ -935,7 +934,8 @@ xfce_notify_window_new_with_actions(const gchar *summary, + { + XfceNotifyWindow *window; + +- window = g_object_new(XFCE_TYPE_NOTIFY_WINDOW, NULL); ++ window = g_object_new(XFCE_TYPE_NOTIFY_WINDOW, ++ "type", GTK_WINDOW_TOPLEVEL, NULL); + + xfce_notify_window_set_summary(window, summary); + xfce_notify_window_set_body(window, body); +-- +cgit v0.9.0.3 diff --git a/xfce4-notifyd-0.2.2-remove-libsexy-patch.patch b/xfce4-notifyd-0.2.2-remove-libsexy-patch.patch new file mode 100644 index 0000000..129daca --- /dev/null +++ b/xfce4-notifyd-0.2.2-remove-libsexy-patch.patch @@ -0,0 +1,22 @@ +From a911346130b5bd78c066eee1260c9373450480b2 Mon Sep 17 00:00:00 2001 +From: Jérôme Guelfucci +Date: Sun, 07 Aug 2011 19:32:44 +0000 +Subject: Remove obsolete libsexy check. + +--- +diff --git a/xfce4-notifyd/xfce-notify-daemon.c b/xfce4-notifyd/xfce-notify-daemon.c +index 20ee47e..227d7c0 100644 +--- a/xfce4-notifyd/xfce-notify-daemon.c ++++ b/xfce4-notifyd/xfce-notify-daemon.c +@@ -846,9 +846,7 @@ notify_get_capabilities(XfceNotifyDaemon *xndaemon, + (*OUT_capabilities)[i++] = g_strdup("actions"); + (*OUT_capabilities)[i++] = g_strdup("body"); + (*OUT_capabilities)[i++] = g_strdup("body-markup"); +-#ifdef HAVE_LIBSEXY + (*OUT_capabilities)[i++] = g_strdup("body-hyperlinks"); +-#endif + (*OUT_capabilities)[i++] = g_strdup("icon-static"); + (*OUT_capabilities)[i++] = g_strdup("x-canonical-private-icon-only"); + (*OUT_capabilities)[i++] = NULL; +-- +cgit v0.9.0.3 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 2649511..c51ecf1 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,16 +4,28 @@ Name: xfce4-notifyd Version: 0.2.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops License: GPLv2 URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd +#VCS: git:git://http://git.xfce.org/apps/xfce4-notifyd/ Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 # Similar to https://bugzilla.xfce.org/show_bug.cgi?id=7335 but we did the same # two years before upstream and continue to use org.xfce.Notifications.service Patch0: xfce4-notifyd-0.2.2-dbus-service-name.patch +# http://git.xfce.org/apps/xfce4-notifyd/commit/?id=a9113461 +Patch1: xfce4-notifyd-0.2.2-remove-libsexy-patch.patch +# http://git.xfce.org/apps/xfce4-notifyd/commit/?id=62796976 +Patch2: xfce4-notityd-0.2.2-uri-image-locations.patch +# http://git.xfce.org/apps/xfce4-notifyd/commit/?id=836e6ce0 +Patch3: xfce4-notifyd-0.2.2-fixup-type-setting.patch +# http://git.xfce.org/apps/xfce4-notifyd/commit/?id=8b34ed09 and +# http://git.xfce.org/apps/xfce4-notifyd/commit/?id=c0320137 in one patch +Patch4: xfce4-notifyd-0.2.2-avoid-flickering.patch +# http://git.xfce.org/apps/xfce4-notifyd/commit/?id=ad77e8aa +Patch5: xfce4-notifyd-0.2.2-emit-closed-signal.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.14.0 @@ -42,6 +54,11 @@ Features: %prep %setup -q %patch0 -p1 -b .dbus-service-name +%patch1 -p1 -b .libsexy +%patch2 -p1 -b .uri-image +%patch3 -p1 -b .type-setting +%patch4 -p1 -b .avoid-flickering +%patch5 -p1 -b .emit-closed-signal %build @@ -52,10 +69,11 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' -desktop-file-install \ - --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ - --add-only-show-in=XFCE \ - --delete-original \ +desktop-file-install \ + --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ + --add-only-show-in=XFCE \ + --add-category=X-XFCE-SettingsDialog \ + --delete-original \ ${RPM_BUILD_ROOT}%{_datadir}/applications/xfce4-notifyd-config.desktop %find_lang %{name} @@ -94,6 +112,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Oct 06 2012 Christoph Wickert - 0.2.2-6 +- Remove obsolete libsexy checks +- Add patch to avoid flickering +- Add patch to support image URI locations +- Make xfce4-notifyd-config show up in xfce4-settings-manager + * Sun Jul 22 2012 Fedora Release Engineering - 0.2.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild diff --git a/xfce4-notityd-0.2.2-uri-image-locations.patch b/xfce4-notityd-0.2.2-uri-image-locations.patch new file mode 100644 index 0000000..9eab0ab --- /dev/null +++ b/xfce4-notityd-0.2.2-uri-image-locations.patch @@ -0,0 +1,33 @@ +From 627969763808d37b5455bbc7f3927d50fcae6987 Mon Sep 17 00:00:00 2001 +From: Nick Schermer +Date: Fri, 12 Aug 2011 19:57:46 +0000 +Subject: Accept uri-image locations. + +--- +diff --git a/xfce4-notifyd/xfce-notify-window.c b/xfce4-notifyd/xfce-notify-window.c +index e7612c2..891f5a5 100644 +--- a/xfce4-notifyd/xfce-notify-window.c ++++ b/xfce4-notifyd/xfce-notify-window.c +@@ -1041,6 +1041,7 @@ xfce_notify_window_set_icon_name(XfceNotifyWindow *window, + const gchar *icon_name) + { + gboolean icon_set = FALSE; ++ gchar *filename; + + g_return_if_fail(XFCE_IS_NOTIFY_WINDOW(window)); + +@@ -1052,6 +1053,12 @@ xfce_notify_window_set_icon_name(XfceNotifyWindow *window, + + if(g_path_is_absolute(icon_name)) + pix = gdk_pixbuf_new_from_file_at_size(icon_name, w, h, NULL); ++ else if(g_str_has_prefix (icon_name, "file://")) { ++ filename = g_filename_from_uri(icon_name, NULL, NULL); ++ if(filename) ++ pix = gdk_pixbuf_new_from_file_at_size(filename, w, h, NULL); ++ g_free(filename); ++ } + else + pix = gtk_icon_theme_load_icon(gtk_icon_theme_get_default(), + icon_name, +-- +cgit v0.9.0.3 From e58d299738a746804031f4974fbfda0962763f69 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 21:38:04 -0600 Subject: [PATCH 20/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index c51ecf1..34e3f72 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -112,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 0.2.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sat Oct 06 2012 Christoph Wickert - 0.2.2-6 - Remove obsolete libsexy checks - Add patch to avoid flickering From f79cf0602f25946fa77d458cd5b4fdc3acf84157 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Mon, 22 Apr 2013 21:26:16 +0200 Subject: [PATCH 21/93] Update to 0.2.3 - Drop upstreamed patches --- .gitignore | 1 + sources | 2 +- xfce4-notifyd-0.2.2-avoid-flickering.patch | 44 ------------------- xfce4-notifyd-0.2.2-dbus-service-name.patch | 38 ---------------- xfce4-notifyd-0.2.2-emit-closed-signal.patch | 24 ---------- xfce4-notifyd-0.2.2-fixup-type-setting.patch | 30 ------------- ...4-notifyd-0.2.2-remove-libsexy-patch.patch | 22 ---------- xfce4-notifyd.spec | 33 ++++---------- xfce4-notityd-0.2.2-uri-image-locations.patch | 33 -------------- 9 files changed, 11 insertions(+), 216 deletions(-) delete mode 100644 xfce4-notifyd-0.2.2-avoid-flickering.patch delete mode 100644 xfce4-notifyd-0.2.2-dbus-service-name.patch delete mode 100644 xfce4-notifyd-0.2.2-emit-closed-signal.patch delete mode 100644 xfce4-notifyd-0.2.2-fixup-type-setting.patch delete mode 100644 xfce4-notifyd-0.2.2-remove-libsexy-patch.patch delete mode 100644 xfce4-notityd-0.2.2-uri-image-locations.patch diff --git a/.gitignore b/.gitignore index c333b6a..f39d005 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.2.0.tar.bz2 /xfce4-notifyd-0.2.1.tar.bz2 /xfce4-notifyd-0.2.2.tar.bz2 +/xfce4-notifyd-0.2.3.tar.bz2 diff --git a/sources b/sources index 2e2318f..91746b1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8687fb7a0f270231ada265e363b6ffcc xfce4-notifyd-0.2.2.tar.bz2 +97c02482f96211251a420d12c34dda3d xfce4-notifyd-0.2.3.tar.bz2 diff --git a/xfce4-notifyd-0.2.2-avoid-flickering.patch b/xfce4-notifyd-0.2.2-avoid-flickering.patch deleted file mode 100644 index 51b5a3b..0000000 --- a/xfce4-notifyd-0.2.2-avoid-flickering.patch +++ /dev/null @@ -1,44 +0,0 @@ -From 8b34ed09d43bbf8daf4e1c71466212d614109ac0 Mon Sep 17 00:00:00 2001 -From: Nick Schermer -Date: Fri, 26 Aug 2011 19:15:31 +0000 -Subject: Avoid flickering of the window. - -Realize (and thus position) the window before actually showing it. - -From c032013769ee860309d3d8821bbea4ed284e45b0 Mon Sep 17 00:00:00 2001 -From: Nick Schermer -Date: Thu, 08 Sep 2011 15:11:27 +0000 -Subject: Fix mistake in commit 8b34ed09. - -The idle kept running, causing 100% cpu usage. ---- -diff --git a/xfce4-notifyd/xfce-notify-daemon.c b/xfce4-notifyd/xfce-notify-daemon.c -index 227d7c0..44eb24b 100644 ---- a/xfce4-notifyd/xfce-notify-daemon.c -+++ b/xfce4-notifyd/xfce-notify-daemon.c -@@ -866,6 +866,13 @@ notify_get_capabilities(XfceNotifyDaemon *xndaemon, - } - - static gboolean -+notify_show_window(gpointer window) -+{ -+ gtk_widget_show(GTK_WIDGET(window)); -+ return FALSE; -+} -+ -+static gboolean - notify_notify(XfceNotifyDaemon *xndaemon, - const gchar *app_name, - guint replaces_id, -@@ -929,7 +936,8 @@ notify_notify(XfceNotifyDaemon *xndaemon, - G_CALLBACK(xfce_notify_daemon_window_size_allocate), - xndaemon); - -- gtk_widget_show(GTK_WIDGET(window)); -+ gtk_widget_realize(GTK_WIDGET(window)); -+ g_idle_add(notify_show_window, window); - } - - if(!app_icon || !*app_icon) { --- -cgit v0.9.0.3 diff --git a/xfce4-notifyd-0.2.2-dbus-service-name.patch b/xfce4-notifyd-0.2.2-dbus-service-name.patch deleted file mode 100644 index ad17c83..0000000 --- a/xfce4-notifyd-0.2.2-dbus-service-name.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff -Nur xfce4-notifyd-0.2.0.orig/Makefile.am xfce4-notifyd-0.2.0/Makefile.am ---- xfce4-notifyd-0.2.0.orig/Makefile.am 2010-11-14 14:16:43.000000000 +0100 -+++ xfce4-notifyd-0.2.0/Makefile.am 2010-11-27 16:38:29.143014262 +0100 -@@ -66,7 +66,7 @@ - - - servicedir = $(datadir)/dbus-1/services --service_in_files = xfce4-notifyd/org.xfce.xfce4-notifyd.Notifications.service.in -+service_in_files = xfce4-notifyd/org.xfce.Notifications.service.in - service_DATA = $(service_in_files:.service.in=.service) - - dist_service = \ -diff -Nur xfce4-notifyd-0.2.0.orig/Makefile.in xfce4-notifyd-0.2.0/Makefile.in ---- xfce4-notifyd-0.2.0.orig/Makefile.in 2010-11-27 13:46:43.000000000 +0100 -+++ xfce4-notifyd-0.2.0/Makefile.in 2010-11-27 16:38:21.512993641 +0100 -@@ -449,7 +449,7 @@ - $(common_ldadd) - - servicedir = $(datadir)/dbus-1/services --service_in_files = xfce4-notifyd/org.xfce.xfce4-notifyd.Notifications.service.in -+service_in_files = xfce4-notifyd/org.xfce.Notifications.service.in - service_DATA = $(service_in_files:.service.in=.service) - dist_service = \ - $(service_in_files) \ -diff -Nur xfce4-notifyd-0.2.0.orig/xfce4-notifyd/org.xfce.xfce4-notifyd.Notifications.service.in xfce4-notifyd-0.2.0/xfce4-notifyd/org.xfce.xfce4-notifyd.Notifications.service.in ---- xfce4-notifyd-0.2.0.orig/xfce4-notifyd/org.xfce.xfce4-notifyd.Notifications.service.in 2010-11-17 23:02:24.000000000 +0100 -+++ xfce4-notifyd-0.2.0/xfce4-notifyd/org.xfce.xfce4-notifyd.Notifications.service.in 1970-01-01 01:00:00.000000000 +0100 -@@ -1,3 +0,0 @@ --[D-BUS Service] --Name=org.freedesktop.Notifications --Exec=@notifydir@/xfce4-notifyd -diff -Nur xfce4-notifyd-0.2.0.orig/xfce4-notifyd/org.xfce.Notifications.service.in xfce4-notifyd-0.2.0/xfce4-notifyd/org.xfce.Notifications.service.in ---- xfce4-notifyd-0.2.0.orig/xfce4-notifyd/org.xfce.Notifications.service.in 1970-01-01 01:00:00.000000000 +0100 -+++ xfce4-notifyd-0.2.0/xfce4-notifyd/org.xfce.Notifications.service.in 2010-11-27 16:39:49.143228336 +0100 -@@ -0,0 +1,3 @@ -+[D-BUS Service] -+Name=org.freedesktop.Notifications -+Exec=@notifydir@/xfce4-notifyd diff --git a/xfce4-notifyd-0.2.2-emit-closed-signal.patch b/xfce4-notifyd-0.2.2-emit-closed-signal.patch deleted file mode 100644 index 330ac8a..0000000 --- a/xfce4-notifyd-0.2.2-emit-closed-signal.patch +++ /dev/null @@ -1,24 +0,0 @@ -From ad77e8aa48201c1c10226b54f7ab006989f2f4d5 Mon Sep 17 00:00:00 2001 -From: Brian J. Tarricone -Date: Mon, 26 Sep 2011 07:07:31 +0000 -Subject: emit closed signal on correct object - -'widget' is actually the GtkButton when an action is clicked. this is -why notifications were never dismissed when an action got clicked. -long-standing bug finally fixed! ---- -diff --git a/xfce4-notifyd/xfce-notify-window.c b/xfce4-notifyd/xfce-notify-window.c -index 41316b8..8364d7a 100644 ---- a/xfce4-notifyd/xfce-notify-window.c -+++ b/xfce4-notifyd/xfce-notify-window.c -@@ -718,7 +718,7 @@ xfce_notify_window_button_clicked(GtkWidget *widget, - - g_signal_emit(G_OBJECT(window), signals[SIG_ACTION_INVOKED], 0, - action_id); -- g_signal_emit(G_OBJECT(widget), signals[SIG_CLOSED], 0, -+ g_signal_emit(G_OBJECT(window), signals[SIG_CLOSED], 0, - XFCE_NOTIFY_CLOSE_REASON_DISMISSED); - } - --- -cgit v0.9.0.3 diff --git a/xfce4-notifyd-0.2.2-fixup-type-setting.patch b/xfce4-notifyd-0.2.2-fixup-type-setting.patch deleted file mode 100644 index 605fc2d..0000000 --- a/xfce4-notifyd-0.2.2-fixup-type-setting.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 836e6ce0673a71345c581170412f14a68f6163f7 Mon Sep 17 00:00:00 2001 -From: Nick Schermer -Date: Fri, 26 Aug 2011 10:27:48 +0000 -Subject: Fixup type setting. - ---- -diff --git a/xfce4-notifyd/xfce-notify-window.c b/xfce4-notifyd/xfce-notify-window.c -index 891f5a5..41316b8 100644 ---- a/xfce4-notifyd/xfce-notify-window.c -+++ b/xfce4-notifyd/xfce-notify-window.c -@@ -196,7 +196,6 @@ xfce_notify_window_init(XfceNotifyWindow *window) - GtkWidget *tophbox, *align, *vbox; - gdouble border_radius = DEFAULT_RADIUS; - -- GTK_WINDOW(window)->type = GTK_WINDOW_TOPLEVEL; - window->expire_timeout = DEFAULT_EXPIRE_TIMEOUT; - window->normal_opacity = DEFAULT_NORMAL_OPACITY; - /* The summary widget needs to be initialized before style_set is called. gtk_widget_ensure_style calls style_set */ -@@ -935,7 +934,8 @@ xfce_notify_window_new_with_actions(const gchar *summary, - { - XfceNotifyWindow *window; - -- window = g_object_new(XFCE_TYPE_NOTIFY_WINDOW, NULL); -+ window = g_object_new(XFCE_TYPE_NOTIFY_WINDOW, -+ "type", GTK_WINDOW_TOPLEVEL, NULL); - - xfce_notify_window_set_summary(window, summary); - xfce_notify_window_set_body(window, body); --- -cgit v0.9.0.3 diff --git a/xfce4-notifyd-0.2.2-remove-libsexy-patch.patch b/xfce4-notifyd-0.2.2-remove-libsexy-patch.patch deleted file mode 100644 index 129daca..0000000 --- a/xfce4-notifyd-0.2.2-remove-libsexy-patch.patch +++ /dev/null @@ -1,22 +0,0 @@ -From a911346130b5bd78c066eee1260c9373450480b2 Mon Sep 17 00:00:00 2001 -From: Jérôme Guelfucci -Date: Sun, 07 Aug 2011 19:32:44 +0000 -Subject: Remove obsolete libsexy check. - ---- -diff --git a/xfce4-notifyd/xfce-notify-daemon.c b/xfce4-notifyd/xfce-notify-daemon.c -index 20ee47e..227d7c0 100644 ---- a/xfce4-notifyd/xfce-notify-daemon.c -+++ b/xfce4-notifyd/xfce-notify-daemon.c -@@ -846,9 +846,7 @@ notify_get_capabilities(XfceNotifyDaemon *xndaemon, - (*OUT_capabilities)[i++] = g_strdup("actions"); - (*OUT_capabilities)[i++] = g_strdup("body"); - (*OUT_capabilities)[i++] = g_strdup("body-markup"); --#ifdef HAVE_LIBSEXY - (*OUT_capabilities)[i++] = g_strdup("body-hyperlinks"); --#endif - (*OUT_capabilities)[i++] = g_strdup("icon-static"); - (*OUT_capabilities)[i++] = g_strdup("x-canonical-private-icon-only"); - (*OUT_capabilities)[i++] = NULL; --- -cgit v0.9.0.3 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 34e3f72..0d4416d 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -3,8 +3,8 @@ %global minorversion 0.2 Name: xfce4-notifyd -Version: 0.2.2 -Release: 7%{?dist} +Version: 0.2.3 +Release: 1%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -12,20 +12,6 @@ License: GPLv2 URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd #VCS: git:git://http://git.xfce.org/apps/xfce4-notifyd/ Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 -# Similar to https://bugzilla.xfce.org/show_bug.cgi?id=7335 but we did the same -# two years before upstream and continue to use org.xfce.Notifications.service -Patch0: xfce4-notifyd-0.2.2-dbus-service-name.patch -# http://git.xfce.org/apps/xfce4-notifyd/commit/?id=a9113461 -Patch1: xfce4-notifyd-0.2.2-remove-libsexy-patch.patch -# http://git.xfce.org/apps/xfce4-notifyd/commit/?id=62796976 -Patch2: xfce4-notityd-0.2.2-uri-image-locations.patch -# http://git.xfce.org/apps/xfce4-notifyd/commit/?id=836e6ce0 -Patch3: xfce4-notifyd-0.2.2-fixup-type-setting.patch -# http://git.xfce.org/apps/xfce4-notifyd/commit/?id=8b34ed09 and -# http://git.xfce.org/apps/xfce4-notifyd/commit/?id=c0320137 in one patch -Patch4: xfce4-notifyd-0.2.2-avoid-flickering.patch -# http://git.xfce.org/apps/xfce4-notifyd/commit/?id=ad77e8aa -Patch5: xfce4-notifyd-0.2.2-emit-closed-signal.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk2-devel >= 2.14.0 @@ -53,17 +39,12 @@ Features: %prep %setup -q -%patch0 -p1 -b .dbus-service-name -%patch1 -p1 -b .libsexy -%patch2 -p1 -b .uri-image -%patch3 -p1 -b .type-setting -%patch4 -p1 -b .avoid-flickering -%patch5 -p1 -b .emit-closed-signal +#%patch0 -p1 -b .dbus-service-name %build %configure -make %{?_smp_mflags} +make %{?_smp_mflags} V=1 %install @@ -103,7 +84,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/xfce4-notifyd-config %{_libdir}/xfce4/notifyd/ %{_datadir}/applications/xfce4-notifyd-config.desktop -%{_datadir}/dbus-1/services/org.xfce.Notifications.service +%{_datadir}/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service %{_datadir}/icons/hicolor/48x48/apps/xfce4-notifyd.png %{_datadir}/themes/Default/xfce-notify-4.0/ %{_datadir}/themes/Smoke/ @@ -112,6 +93,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Apr 22 2013 Christoph Wickert - 0.2.3-1 +- Update to 0.2.3 +- Drop upstreamed patches + * Fri Feb 15 2013 Fedora Release Engineering - 0.2.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild diff --git a/xfce4-notityd-0.2.2-uri-image-locations.patch b/xfce4-notityd-0.2.2-uri-image-locations.patch deleted file mode 100644 index 9eab0ab..0000000 --- a/xfce4-notityd-0.2.2-uri-image-locations.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 627969763808d37b5455bbc7f3927d50fcae6987 Mon Sep 17 00:00:00 2001 -From: Nick Schermer -Date: Fri, 12 Aug 2011 19:57:46 +0000 -Subject: Accept uri-image locations. - ---- -diff --git a/xfce4-notifyd/xfce-notify-window.c b/xfce4-notifyd/xfce-notify-window.c -index e7612c2..891f5a5 100644 ---- a/xfce4-notifyd/xfce-notify-window.c -+++ b/xfce4-notifyd/xfce-notify-window.c -@@ -1041,6 +1041,7 @@ xfce_notify_window_set_icon_name(XfceNotifyWindow *window, - const gchar *icon_name) - { - gboolean icon_set = FALSE; -+ gchar *filename; - - g_return_if_fail(XFCE_IS_NOTIFY_WINDOW(window)); - -@@ -1052,6 +1053,12 @@ xfce_notify_window_set_icon_name(XfceNotifyWindow *window, - - if(g_path_is_absolute(icon_name)) - pix = gdk_pixbuf_new_from_file_at_size(icon_name, w, h, NULL); -+ else if(g_str_has_prefix (icon_name, "file://")) { -+ filename = g_filename_from_uri(icon_name, NULL, NULL); -+ if(filename) -+ pix = gdk_pixbuf_new_from_file_at_size(filename, w, h, NULL); -+ g_free(filename); -+ } - else - pix = gtk_icon_theme_load_icon(gtk_icon_theme_get_default(), - icon_name, --- -cgit v0.9.0.3 From e424a58a53bf20a62b0d7a2b85817d5172e61d83 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Mon, 22 Apr 2013 21:26:49 +0200 Subject: [PATCH 22/93] Remove comment --- xfce4-notifyd.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 0d4416d..ebd3766 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -39,7 +39,6 @@ Features: %prep %setup -q -#%patch0 -p1 -b .dbus-service-name %build From fe37349f28a273083de23d19ad73492ead7dc4b4 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Mon, 22 Apr 2013 23:23:00 +0200 Subject: [PATCH 23/93] BR libnotify-devel --- xfce4-notifyd.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index ebd3766..cfc1d55 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -19,6 +19,7 @@ BuildRequires: libxfce4ui-devel >= 4.7.0 BuildRequires: xfconf-devel >= 4.5.90 BuildRequires: dbus-glib-devel >= 0.72 BuildRequires: desktop-file-utils +BuildRequires: libnotify-devel >= 0.7.0 BuildRequires: intltool Requires: dbus Requires: hicolor-icon-theme @@ -95,6 +96,7 @@ rm -rf $RPM_BUILD_ROOT * Mon Apr 22 2013 Christoph Wickert - 0.2.3-1 - Update to 0.2.3 - Drop upstreamed patches +- BR libnotify-devel * Fri Feb 15 2013 Fedora Release Engineering - 0.2.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From ef303162f1a0922500aa9574ce366dec18998597 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Mon, 22 Apr 2013 23:33:28 +0200 Subject: [PATCH 24/93] Update changelog --- xfce4-notifyd.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index cfc1d55..226c336 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -94,9 +94,9 @@ rm -rf $RPM_BUILD_ROOT %changelog * Mon Apr 22 2013 Christoph Wickert - 0.2.3-1 -- Update to 0.2.3 -- Drop upstreamed patches +- Update to 0.2.3 (fixes #759053 and #926785) - BR libnotify-devel +- Drop upstreamed patches * Fri Feb 15 2013 Fedora Release Engineering - 0.2.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From cbfcf1bded16fdf23b46b6f1e15a68e2e332ad0c Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Tue, 23 Apr 2013 18:24:52 +0200 Subject: [PATCH 25/93] Use desktop-file-validate instead of desktop-file-install; all additional categories are now in the file, we don't need to edit it. --- xfce4-notifyd.spec | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 226c336..f656e1a 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -50,12 +50,7 @@ make %{?_smp_mflags} V=1 %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' -desktop-file-install \ - --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ - --add-only-show-in=XFCE \ - --add-category=X-XFCE-SettingsDialog \ - --delete-original \ - ${RPM_BUILD_ROOT}%{_datadir}/applications/xfce4-notifyd-config.desktop +desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop %find_lang %{name} @@ -75,7 +70,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %files -f %{name}.lang From 9f78003307ac47b5d9f98b5440c50678d868d99e Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Tue, 23 Apr 2013 23:04:46 +0200 Subject: [PATCH 26/93] Fix desktop-file-validate --- xfce4-notifyd.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index f656e1a..45f4d8c 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -50,7 +50,7 @@ make %{?_smp_mflags} V=1 %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' -desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop +desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}-config.desktop %find_lang %{name} From 9439b130dc0efd88b500b990ba8c927e34f0f273 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Thu, 9 May 2013 18:16:03 +0200 Subject: [PATCH 27/93] Update to 0.2.4 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f39d005..5d76938 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.2.1.tar.bz2 /xfce4-notifyd-0.2.2.tar.bz2 /xfce4-notifyd-0.2.3.tar.bz2 +/xfce4-notifyd-0.2.4.tar.bz2 diff --git a/sources b/sources index 91746b1..649eddd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -97c02482f96211251a420d12c34dda3d xfce4-notifyd-0.2.3.tar.bz2 +094be6f29206aac8299f27084e284e88 xfce4-notifyd-0.2.4.tar.bz2 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 45f4d8c..0ab3b54 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -3,7 +3,7 @@ %global minorversion 0.2 Name: xfce4-notifyd -Version: 0.2.3 +Version: 0.2.4 Release: 1%{?dist} Summary: Simple notification daemon for Xfce @@ -88,6 +88,9 @@ rm -rf %{buildroot} %changelog +* Thu May 09 2013 Christoph Wickert - 0.2.4-1 +- Update to 0.2.4 + * Mon Apr 22 2013 Christoph Wickert - 0.2.3-1 - Update to 0.2.3 (fixes #759053 and #926785) - BR libnotify-devel From 7351b517387385555a78cd37f19dce060d2dd89e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 03:02:01 -0500 Subject: [PATCH 28/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 0ab3b54..89dfb5a 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -88,6 +88,9 @@ rm -rf %{buildroot} %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 0.2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Thu May 09 2013 Christoph Wickert - 0.2.4-1 - Update to 0.2.4 From c3c7cce2b7355cdf886777780ec8bb8ed2ea0e52 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 8 Jun 2014 00:40:10 -0500 Subject: [PATCH 29/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 89dfb5a..b6f3238 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -88,6 +88,9 @@ rm -rf %{buildroot} %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 0.2.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 0.2.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 11f89c736736fecf11a73291b9645b54f28f0fc3 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 09:47:51 +0000 Subject: [PATCH 30/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index b6f3238..6f0aa4a 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -88,6 +88,9 @@ rm -rf %{buildroot} %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 0.2.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 0.2.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 0efc102c41e7dbb8995a1c4741f3259748921192 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Sat, 21 Feb 2015 22:18:26 +0100 Subject: [PATCH 31/93] Rebuilt for Fedora 23 Change https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code --- xfce4-notifyd.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 6f0aa4a..1baa00f 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -88,6 +88,10 @@ rm -rf %{buildroot} %changelog +* Sat Feb 21 2015 Till Maas - 0.2.4-5 +- Rebuilt for Fedora 23 Change + https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code + * Mon Aug 18 2014 Fedora Release Engineering - 0.2.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From a31a1c132a50efd52762a50fef67b2571d26b158 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 28 Feb 2015 14:49:06 -0700 Subject: [PATCH 32/93] Rebuild without provider to bootstrap against Xfce 4.12 --- xfce4-notifyd.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 1baa00f..aef0280 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -24,7 +24,7 @@ BuildRequires: intltool Requires: dbus Requires: hicolor-icon-theme # for compatibility this package provides -Provides: desktop-notification-daemon +# disabled: Provides: desktop-notification-daemon # and obsoletes all notification-daemon-xfce releases Obsoletes: notification-daemon-xfce <= 0.3.7 @@ -88,6 +88,9 @@ rm -rf %{buildroot} %changelog +* Sat Feb 28 2015 Kevin Fenzi 0.2.4-6 +- Rebuild without provider to bootstrap against Xfce 4.12 + * Sat Feb 21 2015 Till Maas - 0.2.4-5 - Rebuilt for Fedora 23 Change https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code From 570ef8253576b2dbabdc49a2f5216094f382f1d7 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 28 Feb 2015 15:33:08 -0700 Subject: [PATCH 33/93] Rebuild again with provider and against Xfce 4.12 --- xfce4-notifyd.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index aef0280..ae6b038 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -24,7 +24,7 @@ BuildRequires: intltool Requires: dbus Requires: hicolor-icon-theme # for compatibility this package provides -# disabled: Provides: desktop-notification-daemon +Provides: desktop-notification-daemon # and obsoletes all notification-daemon-xfce releases Obsoletes: notification-daemon-xfce <= 0.3.7 @@ -88,6 +88,9 @@ rm -rf %{buildroot} %changelog +* Sat Feb 28 2015 Kevin Fenzi 0.2.4-7 +- Rebuild again with provider and against Xfce 4.12 + * Sat Feb 28 2015 Kevin Fenzi 0.2.4-6 - Rebuild without provider to bootstrap against Xfce 4.12 From f701a4b9d0fabd324bb31a57ba437fcd2e972b53 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 7 Apr 2015 15:12:35 -0600 Subject: [PATCH 34/93] Fix date in changelog. --- xfce4-notifyd.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index ae6b038..33a60f1 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -140,7 +140,7 @@ rm -rf %{buildroot} - Update to 0.2.2 - Remove upstreamed Fix-race-with-window-becoming-invalid.patch -* Fri Jul 31 2011 Christoph Wickert - 0.2.1-3 +* Sun Jul 31 2011 Christoph Wickert - 0.2.1-3 - Fix crash in handle_error. Thanks to Ricky Zhou (#706677) - Remove obsolete BuildRequires libglade2-devel From a810d1ac7cc9025142d833210a36f9ca270ea4a3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 03:56:40 +0000 Subject: [PATCH 35/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 33a60f1..747b4b1 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -88,6 +88,9 @@ rm -rf %{buildroot} %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 0.2.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat Feb 28 2015 Kevin Fenzi 0.2.4-7 - Rebuild again with provider and against Xfce 4.12 From 1d86004c3123c8804f608ac1ae1426c09fa11b07 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 03:26:51 +0000 Subject: [PATCH 36/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 747b4b1..65b8f61 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.2.4 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -88,6 +88,9 @@ rm -rf %{buildroot} %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 0.2.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 0.2.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From bdade1cf8df0d10ab4f5775d8abe45c7133a72a1 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 30 Jul 2016 13:23:10 -0600 Subject: [PATCH 37/93] Update to 0.3.0. Fixes bug #1361562 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 24 +++++++++++++++--------- 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 5d76938..cfc41ab 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.2.2.tar.bz2 /xfce4-notifyd-0.2.3.tar.bz2 /xfce4-notifyd-0.2.4.tar.bz2 +/xfce4-notifyd-0.3.0.tar.bz2 diff --git a/sources b/sources index 649eddd..b41561d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -094be6f29206aac8299f27084e284e88 xfce4-notifyd-0.2.4.tar.bz2 +d18f407fc79387d81333fbf38bac583d xfce4-notifyd-0.3.0.tar.bz2 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 65b8f61..cc0e97e 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -1,10 +1,10 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=499282 -%global minorversion 0.2 +%global minorversion 0.3 Name: xfce4-notifyd -Version: 0.2.4 -Release: 9%{?dist} +Version: 0.3.0 +Release: 1%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -14,13 +14,16 @@ URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: gtk2-devel >= 2.14.0 -BuildRequires: libxfce4ui-devel >= 4.7.0 -BuildRequires: xfconf-devel >= 4.5.90 -BuildRequires: dbus-glib-devel >= 0.72 -BuildRequires: desktop-file-utils +BuildRequires: gtk3-devel >= 3.20.0 +BuildRequires: libxfce4ui-devel >= 4.12.0 +BuildRequires: libxfce4util-devel >= 4.12.0 +BuildRequires: xfconf-devel >= 4.10.0 +BuildRequires: glib2-devel >= 2.42.0 BuildRequires: libnotify-devel >= 0.7.0 +BuildRequires: desktop-file-utils BuildRequires: intltool +BuildRequires: systemd + Requires: dbus Requires: hicolor-icon-theme # for compatibility this package provides @@ -85,9 +88,12 @@ rm -rf %{buildroot} %{_datadir}/themes/Smoke/ %{_datadir}/themes/ZOMG-PONIES!/ %{_mandir}/man1/xfce4-notifyd-config.1.* - +%{_userunitdir}/xfce4-notifyd.service %changelog +* Fri Jul 29 2016 Kevin Fenzi - 0.3.0-1 +- Update to 0.3.0. Fixes bug #1361562 + * Fri Feb 05 2016 Fedora Release Engineering - 0.2.4-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 13aa4344bd9d6ac6b05e77599eba6bc4a0bdcff7 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Tue, 6 Sep 2016 21:19:23 -0400 Subject: [PATCH 38/93] Update to 0.3.1. bugfix release --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index cfc41ab..1c9a5a6 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.2.3.tar.bz2 /xfce4-notifyd-0.2.4.tar.bz2 /xfce4-notifyd-0.3.0.tar.bz2 +/xfce4-notifyd-0.3.1.tar.bz2 diff --git a/sources b/sources index b41561d..89a3319 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d18f407fc79387d81333fbf38bac583d xfce4-notifyd-0.3.0.tar.bz2 +dddf3c9f24b4a165df7110c613ab0854 xfce4-notifyd-0.3.1.tar.bz2 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index cc0e97e..f0758d0 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -3,7 +3,7 @@ %global minorversion 0.3 Name: xfce4-notifyd -Version: 0.3.0 +Version: 0.3.1 Release: 1%{?dist} Summary: Simple notification daemon for Xfce @@ -91,6 +91,9 @@ rm -rf %{buildroot} %{_userunitdir}/xfce4-notifyd.service %changelog +* Tue Sep 06 2016 Mukundan Ragavan - 0.3.1-1 +- Update to 0.3.1. bugfix release + * Fri Jul 29 2016 Kevin Fenzi - 0.3.0-1 - Update to 0.3.0. Fixes bug #1361562 From 5063d8047c3dc53973ede66686d22a6323932012 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 10 Sep 2016 13:52:22 -0600 Subject: [PATCH 39/93] Update to 0.3.2. bugfix release --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 7 ++++++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1c9a5a6..38258ae 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.2.4.tar.bz2 /xfce4-notifyd-0.3.0.tar.bz2 /xfce4-notifyd-0.3.1.tar.bz2 +/xfce4-notifyd-0.3.2.tar.bz2 diff --git a/sources b/sources index 89a3319..7f0ba8f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -dddf3c9f24b4a165df7110c613ab0854 xfce4-notifyd-0.3.1.tar.bz2 +9ee9bd823710c8753cb99f5a8028d528 xfce4-notifyd-0.3.2.tar.bz2 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index f0758d0..054352d 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -3,7 +3,7 @@ %global minorversion 0.3 Name: xfce4-notifyd -Version: 0.3.1 +Version: 0.3.2 Release: 1%{?dist} Summary: Simple notification daemon for Xfce @@ -87,10 +87,15 @@ rm -rf %{buildroot} %{_datadir}/themes/Default/xfce-notify-4.0/ %{_datadir}/themes/Smoke/ %{_datadir}/themes/ZOMG-PONIES!/ +%{_datadir}/themes/Bright/ +%{_datadir}/themes/Retro/ %{_mandir}/man1/xfce4-notifyd-config.1.* %{_userunitdir}/xfce4-notifyd.service %changelog +* Sat Sep 10 2016 Kevin Fenzi - 0.3.2-1 +- Update to 0.3.2. bugfix release + * Tue Sep 06 2016 Mukundan Ragavan - 0.3.1-1 - Update to 0.3.1. bugfix release From 66e5dc2c79d1d8c6c74b009e8bf84bf24c82757e Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 2 Oct 2016 17:36:16 -0600 Subject: [PATCH 40/93] Update to 0.3.3. bugfix release --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 38258ae..ab407e4 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.3.0.tar.bz2 /xfce4-notifyd-0.3.1.tar.bz2 /xfce4-notifyd-0.3.2.tar.bz2 +/xfce4-notifyd-0.3.3.tar.bz2 diff --git a/sources b/sources index 7f0ba8f..1804d78 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9ee9bd823710c8753cb99f5a8028d528 xfce4-notifyd-0.3.2.tar.bz2 +f918bd3f9f9ad85eace408aecf541198 xfce4-notifyd-0.3.3.tar.bz2 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 054352d..bec13da 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -3,7 +3,7 @@ %global minorversion 0.3 Name: xfce4-notifyd -Version: 0.3.2 +Version: 0.3.3 Release: 1%{?dist} Summary: Simple notification daemon for Xfce @@ -93,6 +93,9 @@ rm -rf %{buildroot} %{_userunitdir}/xfce4-notifyd.service %changelog +* Sun Oct 02 2016 Kevin Fenzi - 0.3.3-1 +- Update to 0.3.3. bugfix release + * Sat Sep 10 2016 Kevin Fenzi - 0.3.2-1 - Update to 0.3.2. bugfix release From 922f70b85426c2ff96356d4bc563a38725b62328 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Wed, 9 Nov 2016 20:03:21 -0500 Subject: [PATCH 41/93] Update to 0.3.4 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ab407e4..c45c662 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.3.1.tar.bz2 /xfce4-notifyd-0.3.2.tar.bz2 /xfce4-notifyd-0.3.3.tar.bz2 +/xfce4-notifyd-0.3.4.tar.bz2 diff --git a/sources b/sources index 1804d78..f17828c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f918bd3f9f9ad85eace408aecf541198 xfce4-notifyd-0.3.3.tar.bz2 +793490b488c3c4a3f97d644431f048d8 xfce4-notifyd-0.3.4.tar.bz2 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index bec13da..edbb37f 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -3,7 +3,7 @@ %global minorversion 0.3 Name: xfce4-notifyd -Version: 0.3.3 +Version: 0.3.4 Release: 1%{?dist} Summary: Simple notification daemon for Xfce @@ -93,6 +93,9 @@ rm -rf %{buildroot} %{_userunitdir}/xfce4-notifyd.service %changelog +* Wed Nov 09 2016 Mukundan Ragavan - 0.3.4-1 +- Update to 0.3.4 + * Sun Oct 02 2016 Kevin Fenzi - 0.3.3-1 - Update to 0.3.3. bugfix release From a37091e3d05fb75f032ad59603e73651aa4107c9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 17:48:58 +0000 Subject: [PATCH 42/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index edbb37f..cef4371 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.3.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -93,6 +93,9 @@ rm -rf %{buildroot} %{_userunitdir}/xfce4-notifyd.service %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Wed Nov 09 2016 Mukundan Ragavan - 0.3.4-1 - Update to 0.3.4 From e61b54b7adfaa4b451042452564b9f44a6758d26 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Mon, 13 Feb 2017 17:18:22 -0500 Subject: [PATCH 43/93] Update to 0.3.5 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c45c662..72613a7 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.3.2.tar.bz2 /xfce4-notifyd-0.3.3.tar.bz2 /xfce4-notifyd-0.3.4.tar.bz2 +/xfce4-notifyd-0.3.5.tar.bz2 diff --git a/sources b/sources index f17828c..5958d91 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -793490b488c3c4a3f97d644431f048d8 xfce4-notifyd-0.3.4.tar.bz2 +SHA512 (xfce4-notifyd-0.3.5.tar.bz2) = 292d5e3ef5358195136592b7b51b893fff03f597cb2bf05ecffd58733e6d130f135d86aa9e3453490eeae2096f3cde9a11627ee074a35d4e1f3a2488a706d10e diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index cef4371..a44f6f7 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -3,8 +3,8 @@ %global minorversion 0.3 Name: xfce4-notifyd -Version: 0.3.4 -Release: 2%{?dist} +Version: 0.3.5 +Release: 1%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -93,6 +93,9 @@ rm -rf %{buildroot} %{_userunitdir}/xfce4-notifyd.service %changelog +* Mon Feb 13 2017 Mukundan Ragavan - 0.3.5-1 +- Update to 0.3.5 + * Sat Feb 11 2017 Fedora Release Engineering - 0.3.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From f3ac5f9381e53abbeaae173d38bff7940809d435 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Mon, 20 Mar 2017 21:30:24 -0400 Subject: [PATCH 44/93] Update to 0.3.6 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 72613a7..aba936d 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.3.3.tar.bz2 /xfce4-notifyd-0.3.4.tar.bz2 /xfce4-notifyd-0.3.5.tar.bz2 +/xfce4-notifyd-0.3.6.tar.bz2 diff --git a/sources b/sources index 5958d91..18127d4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.3.5.tar.bz2) = 292d5e3ef5358195136592b7b51b893fff03f597cb2bf05ecffd58733e6d130f135d86aa9e3453490eeae2096f3cde9a11627ee074a35d4e1f3a2488a706d10e +SHA512 (xfce4-notifyd-0.3.6.tar.bz2) = 96067de2e08e29c8e6285796bc4b23087f97286e28adfb485dc20f449ae32e10c8fb743f42585e0e6cda82d713eb6da3cc1d94920eb170b7cfa1e687ffcb3ddf diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index a44f6f7..dfe35e1 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -3,7 +3,7 @@ %global minorversion 0.3 Name: xfce4-notifyd -Version: 0.3.5 +Version: 0.3.6 Release: 1%{?dist} Summary: Simple notification daemon for Xfce @@ -93,6 +93,9 @@ rm -rf %{buildroot} %{_userunitdir}/xfce4-notifyd.service %changelog +* Mon Mar 20 2017 Mukundan Ragavan - 0.3.6-1 +- Update to 0.3.6 + * Mon Feb 13 2017 Mukundan Ragavan - 0.3.5-1 - Update to 0.3.5 From 0477563d5937261a1c5feeafb1042861359f67a9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 22:04:05 +0000 Subject: [PATCH 45/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index dfe35e1..a5843f3 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.3.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -93,6 +93,9 @@ rm -rf %{buildroot} %{_userunitdir}/xfce4-notifyd.service %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 0.3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Mon Mar 20 2017 Mukundan Ragavan - 0.3.6-1 - Update to 0.3.6 From 75c743afe2c232f02dcc27ac89083e533df25528 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 10:39:25 +0000 Subject: [PATCH 46/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index a5843f3..05aeb15 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.3.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -93,6 +93,9 @@ rm -rf %{buildroot} %{_userunitdir}/xfce4-notifyd.service %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.3.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 0.3.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 18e90ca025a7f987f7325cdcc35d2885fa7b6b4e Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Wed, 18 Oct 2017 07:01:02 -0400 Subject: [PATCH 47/93] Update to 0.4.0 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 18 ++++++++---------- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index aba936d..614dc66 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.3.4.tar.bz2 /xfce4-notifyd-0.3.5.tar.bz2 /xfce4-notifyd-0.3.6.tar.bz2 +/xfce4-notifyd-0.4.0.tar.bz2 diff --git a/sources b/sources index 18127d4..b5715f4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.3.6.tar.bz2) = 96067de2e08e29c8e6285796bc4b23087f97286e28adfb485dc20f449ae32e10c8fb743f42585e0e6cda82d713eb6da3cc1d94920eb170b7cfa1e687ffcb3ddf +SHA512 (xfce4-notifyd-0.4.0.tar.bz2) = 17a651685885e8fb8fdc74c89b5126e24aa8704068332e45352fe9d5bc95aa7cbe2002afbc18b2446dc11c6d4d9c1d857d44d685ecd0148bc865a01851f1b045 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 05aeb15..60b1408 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -1,10 +1,10 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=499282 -%global minorversion 0.3 +%global minorversion 0.4 Name: xfce4-notifyd -Version: 0.3.6 -Release: 3%{?dist} +Version: 0.4.0 +Release: 1%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -71,14 +71,9 @@ fi %posttrans gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : - -%clean -rm -rf %{buildroot} - - %files -f %{name}.lang -%defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING NEWS README TODO +%license COPYING +%doc AUTHORS ChangeLog NEWS README TODO %{_bindir}/xfce4-notifyd-config %{_libdir}/xfce4/notifyd/ %{_datadir}/applications/xfce4-notifyd-config.desktop @@ -93,6 +88,9 @@ rm -rf %{buildroot} %{_userunitdir}/xfce4-notifyd.service %changelog +* Wed Oct 18 2017 Mukundan Ragavan - 0.4.0-1 +- Update to 0.4.0 + * Thu Aug 03 2017 Fedora Release Engineering - 0.3.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 4f468d281890ce542039acc8421ad26eafe0c049 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Wed, 18 Oct 2017 07:16:49 -0400 Subject: [PATCH 48/93] Add xfce4-panel-devel as buildrequires Updates files section --- xfce4-notifyd.spec | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 60b1408..ea63590 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.4.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -18,6 +18,7 @@ BuildRequires: gtk3-devel >= 3.20.0 BuildRequires: libxfce4ui-devel >= 4.12.0 BuildRequires: libxfce4util-devel >= 4.12.0 BuildRequires: xfconf-devel >= 4.10.0 +BuildRequires: xfce4-panel-devel >= 4.12.0 BuildRequires: glib2-devel >= 2.42.0 BuildRequires: libnotify-devel >= 0.7.0 BuildRequires: desktop-file-utils @@ -56,6 +57,8 @@ make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}-config.desktop %find_lang %{name} +# remove libtool archives +find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %post touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : @@ -76,6 +79,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %doc AUTHORS ChangeLog NEWS README TODO %{_bindir}/xfce4-notifyd-config %{_libdir}/xfce4/notifyd/ +%{_libdir}/xfce4/panel/plugins/libnotification-plugin.so %{_datadir}/applications/xfce4-notifyd-config.desktop %{_datadir}/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service %{_datadir}/icons/hicolor/48x48/apps/xfce4-notifyd.png @@ -84,10 +88,16 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_datadir}/themes/ZOMG-PONIES!/ %{_datadir}/themes/Bright/ %{_datadir}/themes/Retro/ +%{_datadir}/icons/hicolor/*/*/* +%{_datadir}/xfce4/panel/plugins/notification-plugin.desktop %{_mandir}/man1/xfce4-notifyd-config.1.* %{_userunitdir}/xfce4-notifyd.service %changelog +* Wed Oct 18 2017 Mukundan Ragavan - 0.4.0-2 +- Add xfce4-panel-devel as buildrequires +- Updates files section + * Wed Oct 18 2017 Mukundan Ragavan - 0.4.0-1 - Update to 0.4.0 From 2aa5baaf6d4d259247c83c9d18881288496d2fe9 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 12 Dec 2017 14:44:31 -0800 Subject: [PATCH 49/93] Update to 4.1.1. --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 614dc66..b60eace 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.3.5.tar.bz2 /xfce4-notifyd-0.3.6.tar.bz2 /xfce4-notifyd-0.4.0.tar.bz2 +/xfce4-notifyd-0.4.1.tar.bz2 diff --git a/sources b/sources index b5715f4..768626e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.4.0.tar.bz2) = 17a651685885e8fb8fdc74c89b5126e24aa8704068332e45352fe9d5bc95aa7cbe2002afbc18b2446dc11c6d4d9c1d857d44d685ecd0148bc865a01851f1b045 +SHA512 (xfce4-notifyd-0.4.1.tar.bz2) = 3dd12a8d27d950c2ffe7a4bc0eaa3b44f4a783273fc90d95304ec77450e88241ad39ca13366cb2a0c666ff6afb9ad58f6468e2fc38b8a87a2737614cfedadfae diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index ea63590..cecda3e 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -3,8 +3,8 @@ %global minorversion 0.4 Name: xfce4-notifyd -Version: 0.4.0 -Release: 2%{?dist} +Version: 0.4.1 +Release: 1%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -94,6 +94,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_userunitdir}/xfce4-notifyd.service %changelog +* Tue Dec 12 2017 Kevin Fenzi - 0.4.1-1 +- Update to 4.1.1. + * Wed Oct 18 2017 Mukundan Ragavan - 0.4.0-2 - Add xfce4-panel-devel as buildrequires - Updates files section From 494c68813bcd1c3d4d831d59ccac6a880b5bc308 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 21:34:43 +0000 Subject: [PATCH 50/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index cecda3e..c2f4dc9 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -94,6 +94,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_userunitdir}/xfce4-notifyd.service %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 0.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Tue Dec 12 2017 Kevin Fenzi - 0.4.1-1 - Update to 4.1.1. From 7824becbd055df776453567ce6d29233ba0d8ccc Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 00:50:46 +0100 Subject: [PATCH 51/93] Remove BuildRoot definition None of currently supported distributions need that. It was needed last for EL5 which is EOL now Signed-off-by: Igor Gnatenko --- xfce4-notifyd.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index c2f4dc9..700ba1c 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -12,7 +12,6 @@ License: GPLv2 URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd #VCS: git:git://http://git.xfce.org/apps/xfce4-notifyd/ Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: gtk3-devel >= 3.20.0 BuildRequires: libxfce4ui-devel >= 4.12.0 From 57bcb91bd46a9db9f4480d59e7e9d8b78482a10c Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Thu, 1 Mar 2018 18:13:26 -0500 Subject: [PATCH 52/93] Update to 0.4.2 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index b60eace..739f230 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.3.6.tar.bz2 /xfce4-notifyd-0.4.0.tar.bz2 /xfce4-notifyd-0.4.1.tar.bz2 +/xfce4-notifyd-0.4.2.tar.bz2 diff --git a/sources b/sources index 768626e..42424b2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.4.1.tar.bz2) = 3dd12a8d27d950c2ffe7a4bc0eaa3b44f4a783273fc90d95304ec77450e88241ad39ca13366cb2a0c666ff6afb9ad58f6468e2fc38b8a87a2737614cfedadfae +SHA512 (xfce4-notifyd-0.4.2.tar.bz2) = 1cabf478928cbcc13e9f03b2540470c5568bc665b196a8617a0e3b52ce4fe3bd9fdb5e199c4e52afe51c4edab8ba949c4551f65ce77c5fae7fddccd0086fb601 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 700ba1c..86578a6 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -3,8 +3,8 @@ %global minorversion 0.4 Name: xfce4-notifyd -Version: 0.4.1 -Release: 2%{?dist} +Version: 0.4.2 +Release: 1%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -93,11 +93,14 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_userunitdir}/xfce4-notifyd.service %changelog +* Thu Mar 01 2018 Mukundan Ragavan - 0.4.2-1 +- Update to 0.4.2 + * Fri Feb 09 2018 Fedora Release Engineering - 0.4.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Tue Dec 12 2017 Kevin Fenzi - 0.4.1-1 -- Update to 4.1.1. +- Update to 0.4.1 * Wed Oct 18 2017 Mukundan Ragavan - 0.4.0-2 - Add xfce4-panel-devel as buildrequires From 8ebd5d7a6d6eef7fbd0ac09d5b2028a844823747 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sat, 3 Mar 2018 17:32:08 -0500 Subject: [PATCH 53/93] Modernize spec --- xfce4-notifyd.spec | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 86578a6..1ffdeb5 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.4.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -47,31 +47,18 @@ Features: %build %configure -make %{?_smp_mflags} V=1 - +%make_build %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' +%make_install + desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}-config.desktop %find_lang %{name} # remove libtool archives find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; -%post -touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : - - -%postun -if [ $1 -eq 0 ] ; then - touch --no-create %{_datadir}/icons/hicolor &>/dev/null - gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : -fi - - -%posttrans -gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +%ldconfig_scriptlets %files -f %{name}.lang %license COPYING @@ -93,6 +80,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_userunitdir}/xfce4-notifyd.service %changelog +* Sat Mar 03 2018 Mukundan Ragavan - 0.4.2-2 +- Modernize spec + * Thu Mar 01 2018 Mukundan Ragavan - 0.4.2-1 - Update to 0.4.2 From da12130a55e246c496c403fc026223a40baa5987 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:53 +0200 Subject: [PATCH 54/93] add BuildRequires: gcc Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- xfce4-notifyd.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 1ffdeb5..4750c50 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -13,6 +13,7 @@ URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd #VCS: git:git://http://git.xfce.org/apps/xfce4-notifyd/ Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 +BuildRequires: gcc BuildRequires: gtk3-devel >= 3.20.0 BuildRequires: libxfce4ui-devel >= 4.12.0 BuildRequires: libxfce4util-devel >= 4.12.0 From a2696b2f317f8792c5bacefc76132847c1eecfc3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 09:15:22 +0000 Subject: [PATCH 55/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 4750c50..3689ab6 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ Name: xfce4-notifyd Version: 0.4.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -81,6 +81,9 @@ find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %{_userunitdir}/xfce4-notifyd.service %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 0.4.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Sat Mar 03 2018 Mukundan Ragavan - 0.4.2-2 - Modernize spec From 3e7dbc283e3b4d2a47d55583a91af46bc6164daa Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sat, 11 Aug 2018 18:15:44 -0400 Subject: [PATCH 56/93] Rebuilt (xfce 4.13) --- xfce4-notifyd.spec | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 3689ab6..cdb56f7 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -1,10 +1,11 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=499282 %global minorversion 0.4 +%global xfceversion 4.13 Name: xfce4-notifyd Version: 0.4.2 -Release: 3%{?dist} +Release: 20%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -13,12 +14,12 @@ URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd #VCS: git:git://http://git.xfce.org/apps/xfce4-notifyd/ Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 -BuildRequires: gcc +BuildRequires: gcc-c++ BuildRequires: gtk3-devel >= 3.20.0 -BuildRequires: libxfce4ui-devel >= 4.12.0 -BuildRequires: libxfce4util-devel >= 4.12.0 -BuildRequires: xfconf-devel >= 4.10.0 -BuildRequires: xfce4-panel-devel >= 4.12.0 +BuildRequires: libxfce4ui-devel >= %{xfceversion} +BuildRequires: libxfce4util-devel >= %{xfceversion} +BuildRequires: xfconf-devel >= %{xfceversion} +BuildRequires: xfce4-panel-devel >= %{xfceversion} BuildRequires: glib2-devel >= 2.42.0 BuildRequires: libnotify-devel >= 0.7.0 BuildRequires: desktop-file-utils @@ -81,6 +82,9 @@ find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %{_userunitdir}/xfce4-notifyd.service %changelog +* Sat Aug 11 2018 Mukundan Ragavan - 0.8.7.4-20 +- Rebuilt (xfce 4.13) + * Sat Jul 14 2018 Fedora Release Engineering - 0.4.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From bbc3224de25ffe8123e1b6e837e7362823d4a2db Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sun, 28 Oct 2018 15:16:30 -0400 Subject: [PATCH 57/93] Update to 0.4.3 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 739f230..780d796 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.4.0.tar.bz2 /xfce4-notifyd-0.4.1.tar.bz2 /xfce4-notifyd-0.4.2.tar.bz2 +/xfce4-notifyd-0.4.3.tar.bz2 diff --git a/sources b/sources index 42424b2..a975127 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.4.2.tar.bz2) = 1cabf478928cbcc13e9f03b2540470c5568bc665b196a8617a0e3b52ce4fe3bd9fdb5e199c4e52afe51c4edab8ba949c4551f65ce77c5fae7fddccd0086fb601 +SHA512 (xfce4-notifyd-0.4.3.tar.bz2) = eed16d863dddfe29ce6dd1e34260ae64f558bc5ffe5af837e293a9492b728a400338b950116fb934f0b3d0a76ed8fd280aacd075d44524be614bb27257b99a9e diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index cdb56f7..c7b0725 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,8 +4,8 @@ %global xfceversion 4.13 Name: xfce4-notifyd -Version: 0.4.2 -Release: 20%{?dist} +Version: 0.4.3 +Release: 1%{?dist} Summary: Simple notification daemon for Xfce Group: User Interface/Desktops @@ -82,7 +82,10 @@ find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %{_userunitdir}/xfce4-notifyd.service %changelog -* Sat Aug 11 2018 Mukundan Ragavan - 0.8.7.4-20 +* Sun Oct 28 2018 Mukundan Ragavan - 0.4.3-1 +- Update to 0.4.3 + +* Sat Aug 11 2018 Mukundan Ragavan - 0.4.2-20 - Rebuilt (xfce 4.13) * Sat Jul 14 2018 Fedora Release Engineering - 0.4.2-3 From 8598d4dd336edae7f0370c316b0b3795bac57bc7 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:31 +0100 Subject: [PATCH 58/93] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- xfce4-notifyd.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index c7b0725..3979e42 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -8,7 +8,6 @@ Version: 0.4.3 Release: 1%{?dist} Summary: Simple notification daemon for Xfce -Group: User Interface/Desktops License: GPLv2 URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd #VCS: git:git://http://git.xfce.org/apps/xfce4-notifyd/ From cbda71c16f970ff0927a0fdd0cb54d7c162ce809 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 12:20:30 +0000 Subject: [PATCH 59/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 3979e42..dc2afc8 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -5,7 +5,7 @@ Name: xfce4-notifyd Version: 0.4.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce License: GPLv2 @@ -81,6 +81,9 @@ find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %{_userunitdir}/xfce4-notifyd.service %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 0.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sun Oct 28 2018 Mukundan Ragavan - 0.4.3-1 - Update to 0.4.3 From d8b83bf4385a4d66397cd40d05226f2077fd2246 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Mon, 22 Apr 2019 20:52:48 -0400 Subject: [PATCH 60/93] Update to 0.4.4 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 780d796..1fc975d 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.4.1.tar.bz2 /xfce4-notifyd-0.4.2.tar.bz2 /xfce4-notifyd-0.4.3.tar.bz2 +/xfce4-notifyd-0.4.4.tar.bz2 diff --git a/sources b/sources index a975127..bcc655b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.4.3.tar.bz2) = eed16d863dddfe29ce6dd1e34260ae64f558bc5ffe5af837e293a9492b728a400338b950116fb934f0b3d0a76ed8fd280aacd075d44524be614bb27257b99a9e +SHA512 (xfce4-notifyd-0.4.4.tar.bz2) = 546a5063673e36ef26bcdac624bfcef41a14918dbb496fb3d282613334f173b51669184b6bcfbee0f07a17863620898be2f464e487ca9755abe7285d6a43d8d5 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index dc2afc8..9455c29 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,8 +4,8 @@ %global xfceversion 4.13 Name: xfce4-notifyd -Version: 0.4.3 -Release: 2%{?dist} +Version: 0.4.4 +Release: 1%{?dist} Summary: Simple notification daemon for Xfce License: GPLv2 @@ -81,6 +81,9 @@ find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %{_userunitdir}/xfce4-notifyd.service %changelog +* Mon Apr 22 2019 Mukundan Ragavan - 0.4.4-1 +- Update to 0.4.4 + * Sun Feb 03 2019 Fedora Release Engineering - 0.4.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 4fab704bdeca96936a07e65a02c2e07e69c9f5f8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 04:07:41 +0000 Subject: [PATCH 61/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 9455c29..0b1f128 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -5,7 +5,7 @@ Name: xfce4-notifyd Version: 0.4.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce License: GPLv2 @@ -81,6 +81,9 @@ find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %{_userunitdir}/xfce4-notifyd.service %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 0.4.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Mon Apr 22 2019 Mukundan Ragavan - 0.4.4-1 - Update to 0.4.4 From 78ccbc9a4b413efda8473524b151fecb9dc21c9f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 04:22:50 +0000 Subject: [PATCH 62/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 0b1f128..48a731b 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -5,7 +5,7 @@ Name: xfce4-notifyd Version: 0.4.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple notification daemon for Xfce License: GPLv2 @@ -81,6 +81,9 @@ find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %{_userunitdir}/xfce4-notifyd.service %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 0.4.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jul 27 2019 Fedora Release Engineering - 0.4.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From e4486516b08c73b6e9585c82c1dbeffe46863976 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Wed, 8 Apr 2020 13:16:45 -0400 Subject: [PATCH 63/93] Update to 0.6.0 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 1fc975d..99b77c1 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.4.2.tar.bz2 /xfce4-notifyd-0.4.3.tar.bz2 /xfce4-notifyd-0.4.4.tar.bz2 +/xfce4-notifyd-0.6.0.tar.bz2 diff --git a/sources b/sources index bcc655b..9a3904a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.4.4.tar.bz2) = 546a5063673e36ef26bcdac624bfcef41a14918dbb496fb3d282613334f173b51669184b6bcfbee0f07a17863620898be2f464e487ca9755abe7285d6a43d8d5 +SHA512 (xfce4-notifyd-0.6.0.tar.bz2) = 31f7977cb4639c90d806e8eaa94c00c19bacf1c9d5df2bc1d66ed791e446ed0ecf6bc59ec402994b1eeab5432dc20cffe67fbb267e86b1848fc2206aa4eaf10c diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 48a731b..0cfb6e9 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -1,11 +1,11 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=499282 -%global minorversion 0.4 +%global minorversion 0.6 %global xfceversion 4.13 Name: xfce4-notifyd -Version: 0.4.4 -Release: 3%{?dist} +Version: 0.6.0 +Release: 1%{?dist} Summary: Simple notification daemon for Xfce License: GPLv2 @@ -81,6 +81,9 @@ find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %{_userunitdir}/xfce4-notifyd.service %changelog +* Wed Apr 08 2020 Mukundan Ragavan - 0.6.0-1 +- Update to 0.6.0 + * Fri Jan 31 2020 Fedora Release Engineering - 0.4.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 5d6997d4ab8e58b650672101bc6287fb7e7f1add Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Mon, 4 May 2020 20:54:13 -0400 Subject: [PATCH 64/93] Update to 0.6.1 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 99b77c1..85f6c04 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.4.3.tar.bz2 /xfce4-notifyd-0.4.4.tar.bz2 /xfce4-notifyd-0.6.0.tar.bz2 +/xfce4-notifyd-0.6.1.tar.bz2 diff --git a/sources b/sources index 9a3904a..968afac 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.6.0.tar.bz2) = 31f7977cb4639c90d806e8eaa94c00c19bacf1c9d5df2bc1d66ed791e446ed0ecf6bc59ec402994b1eeab5432dc20cffe67fbb267e86b1848fc2206aa4eaf10c +SHA512 (xfce4-notifyd-0.6.1.tar.bz2) = d48752cd4e02e515e4c5d147b7bce678a56f47f0bd336e3b9db4e14fc2b0355e0582816957fc43c313a5779b5495c836ee5da4f0cb83616a0164d692a169415f diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 0cfb6e9..f276f5b 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -1,10 +1,10 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=499282 %global minorversion 0.6 -%global xfceversion 4.13 +%global xfceversion 4.14 Name: xfce4-notifyd -Version: 0.6.0 +Version: 0.6.1 Release: 1%{?dist} Summary: Simple notification daemon for Xfce @@ -81,6 +81,9 @@ find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %{_userunitdir}/xfce4-notifyd.service %changelog +* Mon May 04 2020 Mukundan Ragavan - 0.6.1-1 +- Update to 0.6.1 + * Wed Apr 08 2020 Mukundan Ragavan - 0.6.0-1 - Update to 0.6.0 From 4872b18809cb211bc66513a6b5932a411bb7eaf8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 14:40:26 +0000 Subject: [PATCH 65/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index f276f5b..5355963 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -5,7 +5,7 @@ Name: xfce4-notifyd Version: 0.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce License: GPLv2 @@ -81,6 +81,9 @@ find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %{_userunitdir}/xfce4-notifyd.service %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 0.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon May 04 2020 Mukundan Ragavan - 0.6.1-1 - Update to 0.6.1 From a1eb13af559720751c3a922f60272514064712fe Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Mon, 31 Aug 2020 22:04:59 -0400 Subject: [PATCH 66/93] Update to 0.6.2 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 14 +++++++------- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 85f6c04..b2724fa 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.4.4.tar.bz2 /xfce4-notifyd-0.6.0.tar.bz2 /xfce4-notifyd-0.6.1.tar.bz2 +/xfce4-notifyd-0.6.2.tar.bz2 diff --git a/sources b/sources index 968afac..642e5db 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.6.1.tar.bz2) = d48752cd4e02e515e4c5d147b7bce678a56f47f0bd336e3b9db4e14fc2b0355e0582816957fc43c313a5779b5495c836ee5da4f0cb83616a0164d692a169415f +SHA512 (xfce4-notifyd-0.6.2.tar.bz2) = 13fdbcd5031ad44a89327eb65356a4d2c45315e0c8c507e457eee4cc95898794679163de9603a2059d9aaf20d62df317f8a09e0353f6adb526970a21d580b325 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 5355963..31bcbe6 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,8 +4,8 @@ %global xfceversion 4.14 Name: xfce4-notifyd -Version: 0.6.1 -Release: 2%{?dist} +Version: 0.6.2 +Release: 1%{?dist} Summary: Simple notification daemon for Xfce License: GPLv2 @@ -57,9 +57,8 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}-config.deskto %find_lang %{name} # remove libtool archives -find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; +find %{buildroot} -name \*.la -exec rm {} \; -%ldconfig_scriptlets %files -f %{name}.lang %license COPYING @@ -68,8 +67,6 @@ find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %{_libdir}/xfce4/notifyd/ %{_libdir}/xfce4/panel/plugins/libnotification-plugin.so %{_datadir}/applications/xfce4-notifyd-config.desktop -%{_datadir}/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service -%{_datadir}/icons/hicolor/48x48/apps/xfce4-notifyd.png %{_datadir}/themes/Default/xfce-notify-4.0/ %{_datadir}/themes/Smoke/ %{_datadir}/themes/ZOMG-PONIES!/ @@ -78,9 +75,12 @@ find $RPM_BUILD_ROOT -name \*.la -exec rm {} \; %{_datadir}/icons/hicolor/*/*/* %{_datadir}/xfce4/panel/plugins/notification-plugin.desktop %{_mandir}/man1/xfce4-notifyd-config.1.* -%{_userunitdir}/xfce4-notifyd.service +%{_sysconfdir}/xdg/autostart/%{name}.desktop %changelog +* Mon Aug 31 2020 Mukundan Ragavan - 0.6.2-1 +- Update to 0.6.2 + * Wed Jul 29 2020 Fedora Release Engineering - 0.6.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From b302c85d27694eae7b88c29ce817300c9477d90a Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 01:20:34 +0000 Subject: [PATCH 67/93] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- xfce4-notifyd.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 31bcbe6..6430e2e 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -13,6 +13,7 @@ URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd #VCS: git:git://http://git.xfce.org/apps/xfce4-notifyd/ Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 +BuildRequires: make BuildRequires: gcc-c++ BuildRequires: gtk3-devel >= 3.20.0 BuildRequires: libxfce4ui-devel >= %{xfceversion} From 719612b3865e9c5ea94d74f2f59d324c13a8abf6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 23:59:21 +0000 Subject: [PATCH 68/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 6430e2e..4da6649 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -5,7 +5,7 @@ Name: xfce4-notifyd Version: 0.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple notification daemon for Xfce License: GPLv2 @@ -79,6 +79,9 @@ find %{buildroot} -name \*.la -exec rm {} \; %{_sysconfdir}/xdg/autostart/%{name}.desktop %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 0.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Aug 31 2020 Mukundan Ragavan - 0.6.2-1 - Update to 0.6.2 From 107301c5cdd708d451b57900257aa3ee316f401d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 21:30:52 +0000 Subject: [PATCH 69/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 4da6649..826b400 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -5,7 +5,7 @@ Name: xfce4-notifyd Version: 0.6.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple notification daemon for Xfce License: GPLv2 @@ -79,6 +79,9 @@ find %{buildroot} -name \*.la -exec rm {} \; %{_sysconfdir}/xdg/autostart/%{name}.desktop %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 0.6.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 7981cd3c96f204f65725272d23651eb9513ae335 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 05:02:21 +0000 Subject: [PATCH 70/93] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-notifyd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 826b400..0da8094 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -5,7 +5,7 @@ Name: xfce4-notifyd Version: 0.6.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple notification daemon for Xfce License: GPLv2 @@ -79,6 +79,9 @@ find %{buildroot} -name \*.la -exec rm {} \; %{_sysconfdir}/xdg/autostart/%{name}.desktop %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 0.6.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 0.6.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 47d619f3da0e2e3f8d4b204e6bbc08f14fa7d883 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sat, 26 Feb 2022 11:19:58 -0600 Subject: [PATCH 71/93] opt into rpmautospec --- changelog | 172 ++++++++++++++++++++++++++++++++++++++++++++ xfce4-notifyd.spec | 175 +-------------------------------------------- 2 files changed, 174 insertions(+), 173 deletions(-) create mode 100644 changelog diff --git a/changelog b/changelog new file mode 100644 index 0000000..66b42fe --- /dev/null +++ b/changelog @@ -0,0 +1,172 @@ +* Sat Jan 22 2022 Fedora Release Engineering - 0.6.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering - 0.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Wed Jan 27 2021 Fedora Release Engineering - 0.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Mon Aug 31 2020 Mukundan Ragavan - 0.6.2-1 +- Update to 0.6.2 + +* Wed Jul 29 2020 Fedora Release Engineering - 0.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon May 04 2020 Mukundan Ragavan - 0.6.1-1 +- Update to 0.6.1 + +* Wed Apr 08 2020 Mukundan Ragavan - 0.6.0-1 +- Update to 0.6.0 + +* Fri Jan 31 2020 Fedora Release Engineering - 0.4.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Sat Jul 27 2019 Fedora Release Engineering - 0.4.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Mon Apr 22 2019 Mukundan Ragavan - 0.4.4-1 +- Update to 0.4.4 + +* Sun Feb 03 2019 Fedora Release Engineering - 0.4.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Oct 28 2018 Mukundan Ragavan - 0.4.3-1 +- Update to 0.4.3 + +* Sat Aug 11 2018 Mukundan Ragavan - 0.4.2-20 +- Rebuilt (xfce 4.13) + +* Sat Jul 14 2018 Fedora Release Engineering - 0.4.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Sat Mar 03 2018 Mukundan Ragavan - 0.4.2-2 +- Modernize spec + +* Thu Mar 01 2018 Mukundan Ragavan - 0.4.2-1 +- Update to 0.4.2 + +* Fri Feb 09 2018 Fedora Release Engineering - 0.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Tue Dec 12 2017 Kevin Fenzi - 0.4.1-1 +- Update to 0.4.1 + +* Wed Oct 18 2017 Mukundan Ragavan - 0.4.0-2 +- Add xfce4-panel-devel as buildrequires +- Updates files section + +* Wed Oct 18 2017 Mukundan Ragavan - 0.4.0-1 +- Update to 0.4.0 + +* Thu Aug 03 2017 Fedora Release Engineering - 0.3.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 0.3.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon Mar 20 2017 Mukundan Ragavan - 0.3.6-1 +- Update to 0.3.6 + +* Mon Feb 13 2017 Mukundan Ragavan - 0.3.5-1 +- Update to 0.3.5 + +* Sat Feb 11 2017 Fedora Release Engineering - 0.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Nov 09 2016 Mukundan Ragavan - 0.3.4-1 +- Update to 0.3.4 + +* Sun Oct 02 2016 Kevin Fenzi - 0.3.3-1 +- Update to 0.3.3. bugfix release + +* Sat Sep 10 2016 Kevin Fenzi - 0.3.2-1 +- Update to 0.3.2. bugfix release + +* Tue Sep 06 2016 Mukundan Ragavan - 0.3.1-1 +- Update to 0.3.1. bugfix release + +* Fri Jul 29 2016 Kevin Fenzi - 0.3.0-1 +- Update to 0.3.0. Fixes bug #1361562 + +* Fri Feb 05 2016 Fedora Release Engineering - 0.2.4-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Jun 19 2015 Fedora Release Engineering - 0.2.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat Feb 28 2015 Kevin Fenzi 0.2.4-7 +- Rebuild again with provider and against Xfce 4.12 + +* Sat Feb 28 2015 Kevin Fenzi 0.2.4-6 +- Rebuild without provider to bootstrap against Xfce 4.12 + +* Sat Feb 21 2015 Till Maas - 0.2.4-5 +- Rebuilt for Fedora 23 Change + https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code + +* Mon Aug 18 2014 Fedora Release Engineering - 0.2.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering - 0.2.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sun Aug 04 2013 Fedora Release Engineering - 0.2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu May 09 2013 Christoph Wickert - 0.2.4-1 +- Update to 0.2.4 + +* Mon Apr 22 2013 Christoph Wickert - 0.2.3-1 +- Update to 0.2.3 (fixes #759053 and #926785) +- BR libnotify-devel +- Drop upstreamed patches + +* Fri Feb 15 2013 Fedora Release Engineering - 0.2.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Oct 06 2012 Christoph Wickert - 0.2.2-6 +- Remove obsolete libsexy checks +- Add patch to avoid flickering +- Add patch to support image URI locations +- Make xfce4-notifyd-config show up in xfce4-settings-manager + +* Sun Jul 22 2012 Fedora Release Engineering - 0.2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sun Apr 01 2012 Kevin Fenzi - 0.2.2-4 +- Rebuild for new lbxfce4util + +* Sat Jan 14 2012 Fedora Release Engineering - 0.2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Dec 06 2011 Adam Jackson - 0.2.2-2 +- Rebuild for new libpng + +* Tue Aug 09 2011 Christoph Wickert - 0.2.2-1 +- Update to 0.2.2 +- Remove upstreamed Fix-race-with-window-becoming-invalid.patch + +* Sun Jul 31 2011 Christoph Wickert - 0.2.1-3 +- Fix crash in handle_error. Thanks to Ricky Zhou (#706677) +- Remove obsolete BuildRequires libglade2-devel + +* Mon Feb 07 2011 Fedora Release Engineering - 0.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 02 2011 Christoph Wickert - 0.2.1-1 +- Update to 0.2.1 (fixes #660549) +- Own %%{_libdir}/xfce4/notifyd/ + +* Sat Nov 27 2010 Christoph Wickert - 0.2.0-1 +- Update to 0.2.0 + +* Mon Jul 27 2009 Fedora Release Engineering - 0.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Feb 23 2009 Christoph Wickert - 0.1.0-2 +- Patch to rename dbus-service file to avoid conflict with notification-daemon +- Add Debian's patch support the reason arg in libnotify 0.4.5 + +* Mon Feb 23 2009 Christoph Wickert - 0.1.0-1 +- Initial Fedora Package diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 0da8094..d779403 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -5,7 +5,7 @@ Name: xfce4-notifyd Version: 0.6.2 -Release: 4%{?dist} +Release: %autorelease Summary: Simple notification daemon for Xfce License: GPLv2 @@ -79,175 +79,4 @@ find %{buildroot} -name \*.la -exec rm {} \; %{_sysconfdir}/xdg/autostart/%{name}.desktop %changelog -* Sat Jan 22 2022 Fedora Release Engineering - 0.6.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jul 23 2021 Fedora Release Engineering - 0.6.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Wed Jan 27 2021 Fedora Release Engineering - 0.6.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Mon Aug 31 2020 Mukundan Ragavan - 0.6.2-1 -- Update to 0.6.2 - -* Wed Jul 29 2020 Fedora Release Engineering - 0.6.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Mon May 04 2020 Mukundan Ragavan - 0.6.1-1 -- Update to 0.6.1 - -* Wed Apr 08 2020 Mukundan Ragavan - 0.6.0-1 -- Update to 0.6.0 - -* Fri Jan 31 2020 Fedora Release Engineering - 0.4.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Sat Jul 27 2019 Fedora Release Engineering - 0.4.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Mon Apr 22 2019 Mukundan Ragavan - 0.4.4-1 -- Update to 0.4.4 - -* Sun Feb 03 2019 Fedora Release Engineering - 0.4.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sun Oct 28 2018 Mukundan Ragavan - 0.4.3-1 -- Update to 0.4.3 - -* Sat Aug 11 2018 Mukundan Ragavan - 0.4.2-20 -- Rebuilt (xfce 4.13) - -* Sat Jul 14 2018 Fedora Release Engineering - 0.4.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Sat Mar 03 2018 Mukundan Ragavan - 0.4.2-2 -- Modernize spec - -* Thu Mar 01 2018 Mukundan Ragavan - 0.4.2-1 -- Update to 0.4.2 - -* Fri Feb 09 2018 Fedora Release Engineering - 0.4.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Tue Dec 12 2017 Kevin Fenzi - 0.4.1-1 -- Update to 0.4.1 - -* Wed Oct 18 2017 Mukundan Ragavan - 0.4.0-2 -- Add xfce4-panel-devel as buildrequires -- Updates files section - -* Wed Oct 18 2017 Mukundan Ragavan - 0.4.0-1 -- Update to 0.4.0 - -* Thu Aug 03 2017 Fedora Release Engineering - 0.3.6-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 0.3.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Mon Mar 20 2017 Mukundan Ragavan - 0.3.6-1 -- Update to 0.3.6 - -* Mon Feb 13 2017 Mukundan Ragavan - 0.3.5-1 -- Update to 0.3.5 - -* Sat Feb 11 2017 Fedora Release Engineering - 0.3.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Wed Nov 09 2016 Mukundan Ragavan - 0.3.4-1 -- Update to 0.3.4 - -* Sun Oct 02 2016 Kevin Fenzi - 0.3.3-1 -- Update to 0.3.3. bugfix release - -* Sat Sep 10 2016 Kevin Fenzi - 0.3.2-1 -- Update to 0.3.2. bugfix release - -* Tue Sep 06 2016 Mukundan Ragavan - 0.3.1-1 -- Update to 0.3.1. bugfix release - -* Fri Jul 29 2016 Kevin Fenzi - 0.3.0-1 -- Update to 0.3.0. Fixes bug #1361562 - -* Fri Feb 05 2016 Fedora Release Engineering - 0.2.4-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Jun 19 2015 Fedora Release Engineering - 0.2.4-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sat Feb 28 2015 Kevin Fenzi 0.2.4-7 -- Rebuild again with provider and against Xfce 4.12 - -* Sat Feb 28 2015 Kevin Fenzi 0.2.4-6 -- Rebuild without provider to bootstrap against Xfce 4.12 - -* Sat Feb 21 2015 Till Maas - 0.2.4-5 -- Rebuilt for Fedora 23 Change - https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code - -* Mon Aug 18 2014 Fedora Release Engineering - 0.2.4-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering - 0.2.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 0.2.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Thu May 09 2013 Christoph Wickert - 0.2.4-1 -- Update to 0.2.4 - -* Mon Apr 22 2013 Christoph Wickert - 0.2.3-1 -- Update to 0.2.3 (fixes #759053 and #926785) -- BR libnotify-devel -- Drop upstreamed patches - -* Fri Feb 15 2013 Fedora Release Engineering - 0.2.2-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Sat Oct 06 2012 Christoph Wickert - 0.2.2-6 -- Remove obsolete libsexy checks -- Add patch to avoid flickering -- Add patch to support image URI locations -- Make xfce4-notifyd-config show up in xfce4-settings-manager - -* Sun Jul 22 2012 Fedora Release Engineering - 0.2.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sun Apr 01 2012 Kevin Fenzi - 0.2.2-4 -- Rebuild for new lbxfce4util - -* Sat Jan 14 2012 Fedora Release Engineering - 0.2.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue Dec 06 2011 Adam Jackson - 0.2.2-2 -- Rebuild for new libpng - -* Tue Aug 09 2011 Christoph Wickert - 0.2.2-1 -- Update to 0.2.2 -- Remove upstreamed Fix-race-with-window-becoming-invalid.patch - -* Sun Jul 31 2011 Christoph Wickert - 0.2.1-3 -- Fix crash in handle_error. Thanks to Ricky Zhou (#706677) -- Remove obsolete BuildRequires libglade2-devel - -* Mon Feb 07 2011 Fedora Release Engineering - 0.2.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Feb 02 2011 Christoph Wickert - 0.2.1-1 -- Update to 0.2.1 (fixes #660549) -- Own %%{_libdir}/xfce4/notifyd/ - -* Sat Nov 27 2010 Christoph Wickert - 0.2.0-1 -- Update to 0.2.0 - -* Mon Jul 27 2009 Fedora Release Engineering - 0.1.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Mon Feb 23 2009 Christoph Wickert - 0.1.0-2 -- Patch to rename dbus-service file to avoid conflict with notification-daemon -- Add Debian's patch support the reason arg in libnotify 0.4.5 - -* Mon Feb 23 2009 Christoph Wickert - 0.1.0-1 -- Initial Fedora Package +%autochangelog From 05843725ab636d5e7449c194fdfa8020458c3500 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sat, 26 Feb 2022 17:39:53 -0600 Subject: [PATCH 72/93] local build --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b2724fa..56dfe76 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.6.0.tar.bz2 /xfce4-notifyd-0.6.1.tar.bz2 /xfce4-notifyd-0.6.2.tar.bz2 +/xfce4-notifyd-0.6.3.tar.bz2 diff --git a/sources b/sources index 642e5db..f6c1279 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.6.2.tar.bz2) = 13fdbcd5031ad44a89327eb65356a4d2c45315e0c8c507e457eee4cc95898794679163de9603a2059d9aaf20d62df317f8a09e0353f6adb526970a21d580b325 +SHA512 (xfce4-notifyd-0.6.3.tar.bz2) = 9113018c238878c2584cb4221dd5aaaab9d8af5a86fb738f8f9deb863147343c0527582d8e45619bec3b7aaf3bbe045e41a33e306eacc20f946c971a8164935a diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index d779403..0e9d355 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ %global xfceversion 4.14 Name: xfce4-notifyd -Version: 0.6.2 +Version: 0.6.3 Release: %autorelease Summary: Simple notification daemon for Xfce @@ -13,7 +13,7 @@ URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd #VCS: git:git://http://git.xfce.org/apps/xfce4-notifyd/ Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 -BuildRequires: make +BuildRequires: make BuildRequires: gcc-c++ BuildRequires: gtk3-devel >= 3.20.0 BuildRequires: libxfce4ui-devel >= %{xfceversion} From 26d1649eddc127ae423fb9e517234d8c92509b59 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 13:03:51 +0000 Subject: [PATCH 73/93] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering From 7e206969cab9f56bf0c96a28b1e3b0935340831b Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 3 Sep 2022 11:50:42 -0700 Subject: [PATCH 74/93] Update to 0.6.4. Signed-off-by: Kevin Fenzi --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 56dfe76..6878812 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.6.1.tar.bz2 /xfce4-notifyd-0.6.2.tar.bz2 /xfce4-notifyd-0.6.3.tar.bz2 +/xfce4-notifyd-0.6.4.tar.bz2 diff --git a/sources b/sources index f6c1279..e664420 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.6.3.tar.bz2) = 9113018c238878c2584cb4221dd5aaaab9d8af5a86fb738f8f9deb863147343c0527582d8e45619bec3b7aaf3bbe045e41a33e306eacc20f946c971a8164935a +SHA512 (xfce4-notifyd-0.6.4.tar.bz2) = 644e2e49092892e386a9f82edc6ab3b2b59ba67617d9217fb43dd3cf74ae5cfc9b9bea6ed0fab4c4440eca68613aa996d9f8dc73deb1f60926217b7db18cc73b diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 0e9d355..c531e27 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ %global xfceversion 4.14 Name: xfce4-notifyd -Version: 0.6.3 +Version: 0.6.4 Release: %autorelease Summary: Simple notification daemon for Xfce From dfef3c3161f653140dae8175928c6924ddcefc95 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sun, 15 Jan 2023 21:44:00 -0600 Subject: [PATCH 75/93] Update to v0.6.5 (Xfce 4.18) --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 6878812..78f7444 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.6.2.tar.bz2 /xfce4-notifyd-0.6.3.tar.bz2 /xfce4-notifyd-0.6.4.tar.bz2 +/xfce4-notifyd-0.6.5.tar.bz2 diff --git a/sources b/sources index e664420..e30fea9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.6.4.tar.bz2) = 644e2e49092892e386a9f82edc6ab3b2b59ba67617d9217fb43dd3cf74ae5cfc9b9bea6ed0fab4c4440eca68613aa996d9f8dc73deb1f60926217b7db18cc73b +SHA512 (xfce4-notifyd-0.6.5.tar.bz2) = 9953dd456520bd80e0d48da013703d7b976f953b9b41cd55f3ac236a74c55277d04f38a092e2a9024cd67cbcde3f3989daadf6b4f41e57c7e005c20f4acdf1ac diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index c531e27..a4b3715 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -1,10 +1,10 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=499282 %global minorversion 0.6 -%global xfceversion 4.14 +%global xfceversion 4.18 Name: xfce4-notifyd -Version: 0.6.4 +Version: 0.6.5 Release: %autorelease Summary: Simple notification daemon for Xfce From 4cd22911e4de2424e4c30896cd63506f31492f84 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 07:24:13 +0000 Subject: [PATCH 76/93] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering From 8f344ae42bb7065deffaa3c6ef5aa2c74fe57d70 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sat, 21 Jan 2023 17:08:26 -0600 Subject: [PATCH 77/93] Update to v0.7.1 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 78f7444..1e31864 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.6.3.tar.bz2 /xfce4-notifyd-0.6.4.tar.bz2 /xfce4-notifyd-0.6.5.tar.bz2 +/xfce4-notifyd-0.7.1.tar.bz2 diff --git a/sources b/sources index e30fea9..52086db 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.6.5.tar.bz2) = 9953dd456520bd80e0d48da013703d7b976f953b9b41cd55f3ac236a74c55277d04f38a092e2a9024cd67cbcde3f3989daadf6b4f41e57c7e005c20f4acdf1ac +SHA512 (xfce4-notifyd-0.7.1.tar.bz2) = 92f4387d705a8c345635542c9d4583af1db3f63c76fdee33210930acd68beffe3f334206692bb0aacfb28a18039f745ff26ab97f7b50fa7eb0f53e69208e5f6d diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index a4b3715..b674df1 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -1,10 +1,10 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=499282 -%global minorversion 0.6 +%global minorversion 0.7 %global xfceversion 4.18 Name: xfce4-notifyd -Version: 0.6.5 +Version: 0.7.1 Release: %autorelease Summary: Simple notification daemon for Xfce From be4e858f7f18ed7df7b586b939b5d237afd47140 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sun, 22 Jan 2023 10:49:46 -0600 Subject: [PATCH 78/93] Update to v0.7.2 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1e31864..8b6b73e 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.6.4.tar.bz2 /xfce4-notifyd-0.6.5.tar.bz2 /xfce4-notifyd-0.7.1.tar.bz2 +/xfce4-notifyd-0.7.2.tar.bz2 diff --git a/sources b/sources index 52086db..10ffe60 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.7.1.tar.bz2) = 92f4387d705a8c345635542c9d4583af1db3f63c76fdee33210930acd68beffe3f334206692bb0aacfb28a18039f745ff26ab97f7b50fa7eb0f53e69208e5f6d +SHA512 (xfce4-notifyd-0.7.2.tar.bz2) = 7a2a162db82f7760a455c32c5a5dc25eba6f747bb76da56bc49f5c37e1386416496fa7bc51fe010fe403e958a8ab665ae7359ed334589b0b55942dcccd370894 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index b674df1..35d0b8e 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ %global xfceversion 4.18 Name: xfce4-notifyd -Version: 0.7.1 +Version: 0.7.2 Release: %autorelease Summary: Simple notification daemon for Xfce From f36aa33eba4f52eb6c5c79931d50c3b237466638 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Wed, 8 Feb 2023 21:10:49 -0600 Subject: [PATCH 79/93] Update to v0.7.3 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8b6b73e..c9c9183 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.6.5.tar.bz2 /xfce4-notifyd-0.7.1.tar.bz2 /xfce4-notifyd-0.7.2.tar.bz2 +/xfce4-notifyd-0.7.3.tar.bz2 diff --git a/sources b/sources index 10ffe60..60dc3bd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.7.2.tar.bz2) = 7a2a162db82f7760a455c32c5a5dc25eba6f747bb76da56bc49f5c37e1386416496fa7bc51fe010fe403e958a8ab665ae7359ed334589b0b55942dcccd370894 +SHA512 (xfce4-notifyd-0.7.3.tar.bz2) = 525fcf5dfa8c4a2bf48b4276b19f5fd1d5010bdeacd52f6d9189aabf1d5fe2a79efa542796c62d62c6a7bfc83d7eddf3ed671fa171be96c255907b7c7f599bee diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 35d0b8e..7cf172f 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ %global xfceversion 4.18 Name: xfce4-notifyd -Version: 0.7.2 +Version: 0.7.3 Release: %autorelease Summary: Simple notification daemon for Xfce From d79d63a26c2e6805b9b1482b3d45eca7c9f897ce Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sun, 12 Feb 2023 08:48:57 -0600 Subject: [PATCH 80/93] Update to v0.8.0 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 5 +++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c9c9183..a453325 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.7.1.tar.bz2 /xfce4-notifyd-0.7.2.tar.bz2 /xfce4-notifyd-0.7.3.tar.bz2 +/xfce4-notifyd-0.8.0.tar.bz2 diff --git a/sources b/sources index 60dc3bd..b16b05a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.7.3.tar.bz2) = 525fcf5dfa8c4a2bf48b4276b19f5fd1d5010bdeacd52f6d9189aabf1d5fe2a79efa542796c62d62c6a7bfc83d7eddf3ed671fa171be96c255907b7c7f599bee +SHA512 (xfce4-notifyd-0.8.0.tar.bz2) = 3b53036105fc194f87a4a76d5c5c578d0435bacf0fc10b5d0eeba37230cd76c9ce56cd30c840ee1d47baedffb1f1c1f2b8c88a0d6ca36207f0596ebc6ba75271 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 7cf172f..0e8b740 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -1,10 +1,10 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=499282 -%global minorversion 0.7 +%global minorversion 0.8 %global xfceversion 4.18 Name: xfce4-notifyd -Version: 0.7.3 +Version: 0.8.0 Release: %autorelease Summary: Simple notification daemon for Xfce @@ -22,6 +22,7 @@ BuildRequires: xfconf-devel >= %{xfceversion} BuildRequires: xfce4-panel-devel >= %{xfceversion} BuildRequires: glib2-devel >= 2.42.0 BuildRequires: libnotify-devel >= 0.7.0 +BuildRequires: sqlite-devel BuildRequires: desktop-file-utils BuildRequires: intltool BuildRequires: systemd From f2ce0fe7910943be2296ec9dfa250aaac2f37163 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Tue, 21 Feb 2023 20:29:37 -0600 Subject: [PATCH 81/93] Update to v0.8.1 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a453325..7bd32bf 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.7.2.tar.bz2 /xfce4-notifyd-0.7.3.tar.bz2 /xfce4-notifyd-0.8.0.tar.bz2 +/xfce4-notifyd-0.8.1.tar.bz2 diff --git a/sources b/sources index b16b05a..061796e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.8.0.tar.bz2) = 3b53036105fc194f87a4a76d5c5c578d0435bacf0fc10b5d0eeba37230cd76c9ce56cd30c840ee1d47baedffb1f1c1f2b8c88a0d6ca36207f0596ebc6ba75271 +SHA512 (xfce4-notifyd-0.8.1.tar.bz2) = 555261a5931030e50686c4fb86fe62c5455ecba3ed6251851e0fae8652fbc85cb3c4fff3444a3dd6df3d9c44955d4f3049720c04635560170e3eb2c98aa95122 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 0e8b740..ce65b0e 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ %global xfceversion 4.18 Name: xfce4-notifyd -Version: 0.8.0 +Version: 0.8.1 Release: %autorelease Summary: Simple notification daemon for Xfce @@ -64,7 +64,7 @@ find %{buildroot} -name \*.la -exec rm {} \; %files -f %{name}.lang %license COPYING -%doc AUTHORS ChangeLog NEWS README TODO +%doc AUTHORS NEWS TODO %{_bindir}/xfce4-notifyd-config %{_libdir}/xfce4/notifyd/ %{_libdir}/xfce4/panel/plugins/libnotification-plugin.so From 78a9fb5b2c6235d9555b78f5bfea09451146faa7 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Tue, 28 Feb 2023 19:50:59 -0600 Subject: [PATCH 82/93] Update to v0.8.2 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7bd32bf..03f6c0e 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.7.3.tar.bz2 /xfce4-notifyd-0.8.0.tar.bz2 /xfce4-notifyd-0.8.1.tar.bz2 +/xfce4-notifyd-0.8.2.tar.bz2 diff --git a/sources b/sources index 061796e..f5bcd6a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.8.1.tar.bz2) = 555261a5931030e50686c4fb86fe62c5455ecba3ed6251851e0fae8652fbc85cb3c4fff3444a3dd6df3d9c44955d4f3049720c04635560170e3eb2c98aa95122 +SHA512 (xfce4-notifyd-0.8.2.tar.bz2) = 8da4bc1f81c1baa91367ba508be87e2bac71180734062cdcb308076acf97a5ccb52382b7e1bd031750253dda6a69882eb92f4679220bb042426092a47eb8c7e0 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index ce65b0e..962b8df 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -4,7 +4,7 @@ %global xfceversion 4.18 Name: xfce4-notifyd -Version: 0.8.1 +Version: 0.8.2 Release: %autorelease Summary: Simple notification daemon for Xfce From 29dcf0c1102b20ae92210d40febae8a18f80b6ad Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 18:46:50 +0000 Subject: [PATCH 83/93] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering From d20d09b98081fde21fc3018561b7aeb6d8b578d8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 09:36:12 +0000 Subject: [PATCH 84/93] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From d97a6b29c1e18f15b794ee8ec5c8e63fdcc1a8d9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:59:35 +0000 Subject: [PATCH 85/93] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From a6af1026017107fc11d39ac54992f0593a60fa48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 29 Jul 2024 12:32:05 +0200 Subject: [PATCH 86/93] convert GPLv2 license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- xfce4-notifyd.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 962b8df..b6d6a49 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -8,7 +8,8 @@ Version: 0.8.2 Release: %autorelease Summary: Simple notification daemon for Xfce -License: GPLv2 +# Automatically converted from old format: GPLv2 - review is highly recommended. +License: GPL-2.0-only URL: http://goodies.xfce.org/projects/applications/xfce4-notifyd #VCS: git:git://http://git.xfce.org/apps/xfce4-notifyd/ Source0: http://archive.xfce.org/src/apps/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 From 6cdd78145771bdba375940d952c73c6cd4612453 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sat, 17 Aug 2024 14:58:55 -0500 Subject: [PATCH 87/93] Update to v0.9.6 --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 03f6c0e..155a0c7 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.8.0.tar.bz2 /xfce4-notifyd-0.8.1.tar.bz2 /xfce4-notifyd-0.8.2.tar.bz2 +/xfce4-notifyd-0.9.6.tar.bz2 diff --git a/sources b/sources index f5bcd6a..82d165a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.8.2.tar.bz2) = 8da4bc1f81c1baa91367ba508be87e2bac71180734062cdcb308076acf97a5ccb52382b7e1bd031750253dda6a69882eb92f4679220bb042426092a47eb8c7e0 +SHA512 (xfce4-notifyd-0.9.6.tar.bz2) = deef625fdb7828ac25a3eeb2c5e5813f285310354b33a81e1c7943024d9dee9e9b5765f94f7e7ccedd1998dab77eb2c62a2803864d56aed6f831f08b910f0071 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index b6d6a49..468a281 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -1,10 +1,10 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=499282 -%global minorversion 0.8 +%global minorversion 0.9 %global xfceversion 4.18 Name: xfce4-notifyd -Version: 0.8.2 +Version: 0.9.6 Release: %autorelease Summary: Simple notification daemon for Xfce @@ -79,6 +79,9 @@ find %{buildroot} -name \*.la -exec rm {} \; %{_datadir}/xfce4/panel/plugins/notification-plugin.desktop %{_mandir}/man1/xfce4-notifyd-config.1.* %{_sysconfdir}/xdg/autostart/%{name}.desktop +%{_userunitdir}/xfce4-notifyd.service +%{_datadir}/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service +%{_datadir}/dbus-1/services/org.xfce.xfce4-notifyd.Notifyd.service %changelog %autochangelog From 1a5200f8ad62471296cc5d83e5603a3b793d4755 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 15:44:49 +0000 Subject: [PATCH 88/93] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 74204cc962fd69732e0dbcce648b725ef6f4a155 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 10 Mar 2025 19:07:09 -0700 Subject: [PATCH 89/93] Update to 0.9.7. Signed-off-by: Kevin Fenzi --- .gitignore | 1 + sources | 2 +- xfce4-notifyd.spec | 5 +++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 155a0c7..59004a7 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ xfce4-notifyd-0.1.0.tar.bz2 /xfce4-notifyd-0.8.1.tar.bz2 /xfce4-notifyd-0.8.2.tar.bz2 /xfce4-notifyd-0.9.6.tar.bz2 +/xfce4-notifyd-0.9.7.tar.bz2 diff --git a/sources b/sources index 82d165a..aa17411 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-notifyd-0.9.6.tar.bz2) = deef625fdb7828ac25a3eeb2c5e5813f285310354b33a81e1c7943024d9dee9e9b5765f94f7e7ccedd1998dab77eb2c62a2803864d56aed6f831f08b910f0071 +SHA512 (xfce4-notifyd-0.9.7.tar.bz2) = 8bbc7eff631704c7ac9417d3eaba151a0e6de54e48e0b75f7e7ec67c596a11b5ecd3b7ed12ffe6d657d335cb11102686fd69d5f0d1ab5b6645a594d6f0cbd6a6 diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index 468a281..f8506c4 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -1,10 +1,10 @@ # Review: https://bugzilla.redhat.com/show_bug.cgi?id=499282 %global minorversion 0.9 -%global xfceversion 4.18 +%global xfceversion 4.20 Name: xfce4-notifyd -Version: 0.9.6 +Version: 0.9.7 Release: %autorelease Summary: Simple notification daemon for Xfce @@ -75,6 +75,7 @@ find %{buildroot} -name \*.la -exec rm {} \; %{_datadir}/themes/ZOMG-PONIES!/ %{_datadir}/themes/Bright/ %{_datadir}/themes/Retro/ +%{_datadir}/themes/XP-Balloon/ %{_datadir}/icons/hicolor/*/*/* %{_datadir}/xfce4/panel/plugins/notification-plugin.desktop %{_mandir}/man1/xfce4-notifyd-config.1.* From 1a524c33e9d9b6c7476e480f1b49d0169019f993 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sun, 6 Apr 2025 11:37:12 -0500 Subject: [PATCH 90/93] Update to v0.9.7; switch to meson build system; add new build dependencies --- xfce4-notifyd.spec | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/xfce4-notifyd.spec b/xfce4-notifyd.spec index f8506c4..61b55c5 100644 --- a/xfce4-notifyd.spec +++ b/xfce4-notifyd.spec @@ -25,7 +25,10 @@ BuildRequires: glib2-devel >= 2.42.0 BuildRequires: libnotify-devel >= 0.7.0 BuildRequires: sqlite-devel BuildRequires: desktop-file-utils -BuildRequires: intltool +BuildRequires: gtk-layer-shell-devel +BuildRequires: libcanberra-devel +BuildRequires: libcanberra-gtk3 +BuildRequires: meson BuildRequires: systemd Requires: dbus @@ -50,11 +53,11 @@ Features: %build -%configure -%make_build +%meson +%meson_build %install -%make_install +%meson_install desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}-config.desktop %find_lang %{name} From b4ff9492f52e658f326502cd00f6148842fd8cf2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:47:35 +0000 Subject: [PATCH 91/93] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 5ee7f4263c347d5f720ebc58bad4408de16c6003 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:37:36 +0000 Subject: [PATCH 92/93] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild From fcf43e2c3c41685b9f7a88fea373dcb3b3a6bf44 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 09:10:43 +0000 Subject: [PATCH 93/93] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild