diff -Nru liferea-1.6.4/debian/changelog liferea-1.6.4/debian/changelog --- liferea-1.6.4/debian/changelog 2011-04-07 17:29:22.000000000 +0700 +++ liferea-1.6.4/debian/changelog 2011-06-07 20:08:46.000000000 +0700 @@ -1,3 +1,12 @@ +liferea (1.6.4-1ubuntu8) oneiric; urgency=low + + * debian/patches/notification-append: + - Apply libnotify 0.7 API change, fixes FTBFS. (LP: #794010) + * Rebuild to correctly update connected state with Network Manager 0.9. + (LP: #791548) + + -- Maia Kozheva Tue, 07 Jun 2011 19:52:56 +0700 + liferea (1.6.4-1ubuntu7) natty; urgency=low * Rebuild against latest libunity (soname bump) diff -Nru liferea-1.6.4/debian/patches/notification-append liferea-1.6.4/debian/patches/notification-append --- liferea-1.6.4/debian/patches/notification-append 2011-03-11 22:24:58.000000000 +0600 +++ liferea-1.6.4/debian/patches/notification-append 2011-06-07 20:04:09.000000000 +0700 @@ -1,6 +1,7 @@ -diff -ur liferea-1.6.0-rc6/src/notification/libnotify.c liferea-ted/src/notification/libnotify.c ---- liferea-1.6.0-rc6/src/notification/libnotify.c 2009-06-20 13:33:19.000000000 -0500 -+++ liferea-ted/src/notification/libnotify.c 2009-09-10 23:00:39.000000000 -0500 +Index: liferea-1.6.4/src/notification/libnotify.c +=================================================================== +--- liferea-1.6.4.orig/src/notification/libnotify.c 2011-06-07 19:50:14.350498266 +0700 ++++ liferea-1.6.4/src/notification/libnotify.c 2011-06-07 19:50:44.470498271 +0700 @@ -44,6 +44,7 @@ #include "notification/notification.h" @@ -9,6 +10,15 @@ static void notif_libnotify_callback_open ( NotifyNotification *n, gchar *action, gpointer user_data ) { g_assert(action != NULL); +@@ -150,7 +151,7 @@ + // notify_notification_update ( n, node_get_title(node_p), labelText_now_p, NULL); + // notify_notification_clear_actions(n); + +- n = notify_notification_new (node_get_title(node_p), labelText_now_p, NULL, NULL); ++ n = notify_notification_new (node_get_title(node_p), labelText_now_p, NULL); + + notify_notification_set_icon_from_pixbuf (n,node_get_icon(node_p)); + @@ -188,7 +189,11 @@ for (c = caps; c != NULL; c = c->next) { if (g_str_equal ((char*)c->data, "actions")) { @@ -30,7 +40,7 @@ + labelSummary_p = g_strdup_printf (ngettext ("%s has %d update", "%s has %d updates", item_count), node_get_title (node), item_count); - n = notify_notification_new ( _("Feed Update"), labelSummary_p, NULL, NULL); -+ n = notify_notification_new ( _("Feed Update"), labelSummary_p, "liferea", NULL); ++ n = notify_notification_new ( _("Feed Update"), labelSummary_p, "liferea"); g_free(labelSummary_p); - notify_notification_set_icon_from_pixbuf (n, node_get_icon (node));