Package: transmission
Version: 2.03-2
Severity: normal
Tags: patch pending

Dear maintainer,

I've prepared an NMU for transmission (versioned as 2.03-2.1) and
uploaded it to DELAYED/3. Please feel free to tell me if I
should delay it longer.

Regards.
diff -Nru transmission-2.03/debian/changelog transmission-2.03/debian/changelog
--- transmission-2.03/debian/changelog  2010-10-18 00:31:17.000000000 +0200
+++ transmission-2.03/debian/changelog  2011-08-02 19:33:38.000000000 +0200
@@ -1,3 +1,16 @@
+transmission (2.03-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/patches/0003-libnotify0-7.patch: Transition to libnotify 0.7
+    (Closes: #630305)
+  * debian/patches/0004-add-missing-zlib.path: Add explicit linking against
+    zlib, fix FTBFS (Closes: #634398)
+  * debian/control:
+    - Bump libnotify build-dependency to 0.7
+    - Add zlib1g-dev as build-dependency
+
+ -- Laurent Bigonville <bi...@debian.org>  Tue, 02 Aug 2011 19:33:25 +0200
+
 transmission (2.03-2) unstable; urgency=low
   
   * debian/patches: add fix-rpc-server-URL.patch
diff -Nru transmission-2.03/debian/control transmission-2.03/debian/control
--- transmission-2.03/debian/control    2010-10-18 00:16:34.000000000 +0200
+++ transmission-2.03/debian/control    2011-08-02 19:19:26.000000000 +0200
@@ -5,8 +5,8 @@
 Uploaders: Philipp Benner <pben...@uni-osnabrueck.de>
 DM-Upload-Allowed: yes
 Build-Depends: debhelper (>= 7), autotools-dev, libgtk2.0-dev, libevent-dev 
- (>= 1.4), libglib2.0-dev, libnotify-dev, libssl-dev, libcurl4-dev | 
- libcurl-dev, chrpath, intltool (>= 0.40), qt4-qmake, libqt4-dev, 
+ (>= 1.4), libglib2.0-dev, libnotify-dev (>= 0.7), libssl-dev, libcurl4-dev | 
+ libcurl-dev, chrpath, intltool (>= 0.40), qt4-qmake, libqt4-dev, zlib1g-dev
 # libcanberra-gtk-dev, libgconf2-dev
 Standards-Version: 3.9.0
 Vcs-Browser: http://svn.debian.org/wsvn/collab-maint/deb-maint/transmission/
diff -Nru transmission-2.03/debian/patches/0003-libnotify0-7.patch 
transmission-2.03/debian/patches/0003-libnotify0-7.patch
--- transmission-2.03/debian/patches/0003-libnotify0-7.patch    1970-01-01 
01:00:00.000000000 +0100
+++ transmission-2.03/debian/patches/0003-libnotify0-7.patch    2011-08-02 
19:31:47.000000000 +0200
@@ -0,0 +1,47 @@
+Description: Transition to libnotify 0.7
+Author: Laurent Bigonville <bi...@debian.org>
+Date: Tue, 02 Aug 2011 19:29:45 +0200
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=630305
+
+--- a/configure.ac
++++ b/configure.ac
+@@ -73,7 +73,7 @@
+ GIO_MINIMUM=2.15.5
+ AC_SUBST(GIO_MINIMUM)
+ # pop up a "download done" notice...
+-LIBNOTIFY_MINIMUM=0.4.3
++LIBNOTIFY_MINIMUM=0.7.0
+ AC_SUBST(LIBNOTIFY_MINIMUM)
+ # create the tray icon with AppIndicator
+ LIBAPPINDICATOR_MINIMUM=0.0.11
+--- a/gtk/notify.c
++++ b/gtk/notify.c
+@@ -130,7 +130,7 @@
+ 
+         n = notify_notification_new( _( "Torrent Complete" ),
+                                      info->name,
+-                                     NULL, NULL );
++                                     NULL );
+         addIcon( n );
+ 
+         if( can_support_actions( ) )
+@@ -156,7 +156,7 @@
+     if( pref_flag_get( PREF_KEY_SHOW_DESKTOP_NOTIFICATION ) )
+     {
+         NotifyNotification * n = notify_notification_new(
+-            _( "Torrent Added" ), name, NULL, NULL );
++            _( "Torrent Added" ), name, NULL );
+         addIcon( n );
+         notify_notification_set_timeout( n, NOTIFY_EXPIRES_DEFAULT );
+         notify_notification_show( n, NULL );
+--- a/configure
++++ b/configure
+@@ -10923,7 +10923,7 @@
+ GIO_MINIMUM=2.15.5
+ 
+ # pop up a "download done" notice...
+-LIBNOTIFY_MINIMUM=0.4.3
++LIBNOTIFY_MINIMUM=0.7.0
+ 
+ # create the tray icon with AppIndicator
+ LIBAPPINDICATOR_MINIMUM=0.0.11
diff -Nru transmission-2.03/debian/patches/0004-add-missing-zlib.path 
transmission-2.03/debian/patches/0004-add-missing-zlib.path
--- transmission-2.03/debian/patches/0004-add-missing-zlib.path 1970-01-01 
01:00:00.000000000 +0100
+++ transmission-2.03/debian/patches/0004-add-missing-zlib.path 2011-08-02 
19:31:24.000000000 +0200
@@ -0,0 +1,16 @@
+Description: Link against libz library to fix FTBFS
+Author: Laurent Bigonville <bi...@debian.org>
+Date: Tue, 02 Aug 2011 19:30:45 +0200
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=634398
+
+--- a/qt/qtr.pro
++++ b/qt/qtr.pro
+@@ -9,7 +9,7 @@
+ 
+ CONFIG += qt qdbus thread debug link_pkgconfig
+ QT += network
+-PKGCONFIG = fontconfig libcurl openssl
++PKGCONFIG = fontconfig libcurl openssl zlib
+ 
+ TRANSMISSION_TOP = ..
+ INCLUDEPATH += $${TRANSMISSION_TOP}
diff -Nru transmission-2.03/debian/patches/series 
transmission-2.03/debian/patches/series
--- transmission-2.03/debian/patches/series     2010-10-18 00:16:34.000000000 
+0200
+++ transmission-2.03/debian/patches/series     2011-08-02 19:14:51.000000000 
+0200
@@ -1,2 +1,4 @@
 0001-libnatpmp_freebsd_ftbfs.patch
 0002-fix-rpc-server-URL.patch
+0003-libnotify0-7.patch
+0004-add-missing-zlib.path



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/debian-bugs-dist

Reply via email to