[pnmixer] Add TryExec to pnmixer.desktop
by Christoph Wickert
commit b7ea8f13e1ae2dccc3769d0df6c80b2e178a2ad1
Author: Christoph Wickert <cwickert(a)fedoraproject.org>
Date: Fri Jul 1 01:52:27 2011 +0200
Add TryExec to pnmixer.desktop
pnmixer.desktop | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/pnmixer.desktop b/pnmixer.desktop
index 2267fbe..a6714bb 100644
--- a/pnmixer.desktop
+++ b/pnmixer.desktop
@@ -103,6 +103,7 @@ Comment[zh_CN]=显示桌面音量控制
Comment[zh_HK]=顯示桌面音量控制
Comment[zh_TW]=顯示桌面音量控制
Exec=pnmixer
+TryExec=pnmixer
Icon=multimedia-volume-control
Type=Application
Terminal=false
11 years, 8 months
[xfce4-notifyd] Add missing patch
by Christoph Wickert
commit 3cc4b670cad89e38a5835211eac66fc3c92b650e
Author: Christoph Wickert <cwickert(a)fedoraproject.org>
Date: Fri Jul 1 00:44:05 2011 +0200
Add missing patch
...2.1-Fix-race-with-window-becoming-invalid.patch | 40 ++++++++++++++++++++
1 files changed, 40 insertions(+), 0 deletions(-)
---
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 <ricky(a)fedoraproject.org>
+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
+
11 years, 8 months
[xfce4-notifyd] Fix crash in handle_error (#706677) Remove obsolete BuildRequires libglade2-devel
by Christoph Wickert
commit 61facd21a593f51ef4226cecc24bf7a856276678
Author: Christoph Wickert <cwickert(a)fedoraproject.org>
Date: Fri Jul 1 00:17:55 2011 +0200
Fix crash in handle_error (#706677)
Remove obsolete BuildRequires libglade2-devel
xfce4-notifyd.spec | 10 +++++++---
1 files 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}-%{versio...
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 <cwickert(a)fedoraproject.org> - 0.2.1-3
+- Fix crash in handle_error (#706677)
+- Remove obsolete BuildRequires libglade2-devel
+
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng(a)lists.fedoraproject.org> - 0.2.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
11 years, 8 months
[scsi-target-utils/f14] (10 commits) ...new upstream release
by Andy Grover
Summary of changes:
9e1d773... - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass (*)
4cbcb2e... fix docs patch (*)
14f9b23... fix dynamic patch (*)
8f33e7b... remove merged patches (*)
cf2145c... update to 1.0.13 upstream release. (*)
971b61b... update gitignore (*)
0b68e2b... update to 1.0.14 (*)
9373fe8... update to 1.0.14-2 (*)
4d28ff9... no InfiniBand on s390(x) (*)
dbf158b... new upstream release (*)
(*) This commit already existed in another branch; no separate mail sent
11 years, 8 months