Hello community, here is the log from the commit of package twitux for openSUSE:Factory checked in at Wed Jun 1 09:48:21 CEST 2011.
-------- --- GNOME/twitux/twitux.changes 2011-02-12 20:27:32.000000000 +0100 +++ /mounts/work_src_done/STABLE/twitux/twitux.changes 2011-05-30 17:27:28.000000000 +0200 @@ -1,0 +2,5 @@ +Sun May 22 20:38:03 UTC 2011 - dims...@opensuse.org + +- Add twitux-libnotify-0.7.patch: Fix build with libnotify 0.7. + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- twitux-libnotify-0.7.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ twitux.spec ++++++ --- /var/tmp/diff_new_pack.mm2KGI/_old 2011-06-01 09:48:12.000000000 +0200 +++ /var/tmp/diff_new_pack.mm2KGI/_new 2011-06-01 09:48:12.000000000 +0200 @@ -19,14 +19,16 @@ Name: twitux Version: 0.69 -Release: 10 +Release: 15 License: GPLv2+ Summary: A twitter client for GNOME Url: http://twitux.sf.net/ Group: Productivity/Networking/Other Source: %{name}-%{version}.tar.bz2 # PATCH-MISSING-TAG -- See http://en.opensuse.org/Packaging/Patches -Patch: twitux-desktop.patch +Patch0: twitux-desktop.patch +# PATCH-FIX-UPSTREAM twitux-libnotify-0.7.patch sf#3306017 dims...@opensuse.org -- Fix build with libnotify 0.7 +Patch1: twitux-libnotify-0.7.patch BuildRequires: dbus-1-devel BuildRequires: enchant-devel BuildRequires: gconf2-devel @@ -58,7 +60,8 @@ %lang_package %prep %setup -q -%patch -p1 +%patch0 -p1 +%patch1 -p1 %build autoreconf -f -i ++++++ twitux-libnotify-0.7.patch ++++++ Index: twitux-0.69/src/twitux-app.c =================================================================== --- twitux-0.69.orig/src/twitux-app.c +++ twitux-0.69/src/twitux-app.c @@ -30,6 +30,9 @@ #include <gtk/gtk.h> #include <glib/gi18n.h> #include <libnotify/notify.h> +#ifndef NOTIFY_CHECK_VERSION +#define NOTIFY_CHECK_VERSION(x,y,z) 0 +#endif #include <libtwitux/twitux-debug.h> #include <libtwitux/twitux-conf.h> @@ -1446,8 +1449,12 @@ twitux_app_notify (gchar *msg) notification = notify_notification_new (PACKAGE_NAME, msg, - "twitux", - NULL); + "twitux" +#if NOTIFY_CHECK_VERSION (0, 7, 0) + ); +#else + ,NULL); +#endif notify_notification_set_timeout (notification, 8 * 1000); notify_notification_show (notification, &error); ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org