[transmission] * Sun Nov 07 2010 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 2.11-2 - added patch to fix br

Ankur Sinha ankursinha at fedoraproject.org
Sun Nov 7 06:48:44 UTC 2010


commit e94b5972fe544734a02e95c0754d962df5998125
Author: Ankur Sinha <ankursinha at fedoraproject.org>
Date:   Sun Nov 7 12:19:15 2010 +0530

    * Sun Nov 07 2010 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 2.11-2
    - added patch to fix breakage for libnotify API changes

 transmission-libnotify-change.patch |   18 ++++++++++++++++++
 transmission.spec                   |    5 ++++-
 2 files changed, 22 insertions(+), 1 deletions(-)
---
diff --git a/transmission-libnotify-change.patch b/transmission-libnotify-change.patch
new file mode 100644
index 0000000..9f50805
--- /dev/null
+++ b/transmission-libnotify-change.patch
@@ -0,0 +1,18 @@
+diff -ur ../transmission-2.11.orig/gtk/notify.c ./gtk/notify.c
+--- ../transmission-2.11.orig/gtk/notify.c	2010-10-17 05:44:40.000000000 +0530
++++ ./gtk/notify.c	2010-11-07 12:14:20.375068547 +0530
+@@ -129,8 +129,12 @@
+         NotifyNotification * n;
+ 
+         n = notify_notification_new( _( "Torrent Complete" ),
+-                                     info->name,
+-                                     NULL, NULL );
++                                     info->name, NULL
++/* the fourth argument was removed in libnotify 0.7.0 */
++#if !defined(NOTIFY_VERSION_MINOR) || (NOTIFY_VERSION_MAJOR == 0 && NOTIFY_VERSION_MINOR < 7)
++                                                     , NULL
++#endif
++                                                            );
+         addIcon( n );
+ 
+         if( can_support_actions( ) )
diff --git a/transmission.spec b/transmission.spec
index 5a6a119..48cda63 100644
--- a/transmission.spec
+++ b/transmission.spec
@@ -1,6 +1,6 @@
 Name:           transmission
 Version:        2.11
-Release:        1%{?dist}
+Release:        2%{?dist}
 Summary:        A lightweight GTK+ BitTorrent client
 
 Group:          Applications/Internet
@@ -205,6 +205,9 @@ update-desktop-database > /dev/null 2>&1 || :
 %doc %{_mandir}/man1/transmission-qt.*
 
 %changelog
+* Sun Nov 07 2010 Ankur Sinha <ankursinha AT fedoraproject DOT org> - 2.11-2
+- added patch to fix breakage for libnotify API changes
+
 * Thu Oct 21 2010 Pavol Šimo <palos AT fedoraproject DOT org> - 2.11-1
 - updated to latest release version
 - added new files, updated fix-optflag.patch


More information about the scm-commits mailing list