rpms/transmission/F-8 transmission-1.11-copt.patch, NONE, 1.1 transmission-1.11-socket.patch, NONE, 1.1 .cvsignore, 1.14, 1.15 sources, 1.14, 1.15 transmission.spec, 1.17, 1.18

Denis Leroy (denis) fedora-extras-commits at redhat.com
Tue May 6 07:11:56 UTC 2008


Author: denis

Update of /cvs/pkgs/rpms/transmission/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv3551

Modified Files:
	.cvsignore sources transmission.spec 
Added Files:
	transmission-1.11-copt.patch transmission-1.11-socket.patch 
Log Message:
- Update to upstream 1.11, many bug fixes
- Patch to fix opening issue from browser (#431769)
- Patch to fix hardcoded optimize compile flags


transmission-1.11-copt.patch:

--- NEW FILE transmission-1.11-copt.patch ---
--- transmission-1.11/configure.orig	2008-05-02 15:58:10.000000000 +0200
+++ transmission-1.11/configure	2008-05-02 15:58:20.000000000 +0200
@@ -20809,8 +20809,8 @@
 
 
 if test "x$GCC" = "xyes" ; then
-    CFLAGS="-g -Wall -W -O3 -funroll-loops"
-    CXXFLAGS="-g -Wall -W -O3 -funroll-loops"
+    CFLAGS="-Wall -W"
+    CXXFLAGS="-Wall -W"
 fi
 { echo "$as_me:$LINENO: checking for ANSI C header files" >&5
 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }

transmission-1.11-socket.patch:

--- NEW FILE transmission-1.11-socket.patch ---
--- transmission-1.11/gtk/conf.c~	2008-04-04 21:27:33.000000000 +0200
+++ transmission-1.11/gtk/conf.c	2008-05-02 18:11:16.000000000 +0200
@@ -103,8 +103,10 @@
 static void
 cf_removelocks( void )
 {
-    g_unlink( gl_lockpath );
-    g_free( gl_lockpath );
+    if ( gl_lockpath ) {
+	g_unlink( gl_lockpath );
+	g_free( gl_lockpath );
+    }
 }
 
 /* errstr may be NULL, this might be called before GTK is initialized */
--- transmission-1.11/gtk/ipc.c~	2008-04-04 21:27:33.000000000 +0200
+++ transmission-1.11/gtk/ipc.c	2008-05-02 18:56:50.000000000 +0200
@@ -339,7 +350,7 @@
   }
 
   g_main_loop_run(con->u.client.loop);
-
+  sleep(1);
   return ret;
 }
 


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/transmission/F-8/.cvsignore,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- .cvsignore	21 Mar 2008 20:04:14 -0000	1.14
+++ .cvsignore	6 May 2008 07:11:19 -0000	1.15
@@ -1 +1 @@
-transmission-1.06.tar.bz2
+transmission-1.11.tar.bz2


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/transmission/F-8/sources,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- sources	21 Mar 2008 20:04:14 -0000	1.14
+++ sources	6 May 2008 07:11:19 -0000	1.15
@@ -1 +1 @@
-471e4bd40e1464067a3e266ecf3cb724  transmission-1.06.tar.bz2
+4582d7aff489a9425b147634653df1d1  transmission-1.11.tar.bz2


Index: transmission.spec
===================================================================
RCS file: /cvs/pkgs/rpms/transmission/F-8/transmission.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- transmission.spec	21 Mar 2008 20:04:14 -0000	1.17
+++ transmission.spec	6 May 2008 07:11:19 -0000	1.18
@@ -1,6 +1,6 @@
 
 Name:           transmission
-Version:        1.06
+Version:        1.11
 Release:        1%{?dist}
 Summary:        A lightweight GTK+ BitTorrent client
 
@@ -9,13 +9,15 @@
 URL:            http://www.transmissionbt.com/
 Source0:        http://download.m0k.org/transmission/files/transmission-%{version}.tar.bz2
 Patch0:         transmission-0.81-downloaddir.patch
+Patch1:         transmission-1.11-copt.patch
+Patch2:         transmission-1.11-socket.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildRequires:  openssl-devel >= 0.9.4
 BuildRequires:  gtk2-devel >= 2.6.0
+BuildRequires:  libnotify-devel >= 0.4.4
 BuildRequires:  desktop-file-utils
 BuildRequires:  gettext intltool
-BuildRequires:  libevent-devel
 
 
 %description
@@ -27,6 +29,8 @@
 %prep
 %setup -q
 %patch0 -p1 -b .dwnldir
+%patch1 -p1 -b .copt
+%patch2 -p1 -b .socket
 
 
 %build
@@ -61,6 +65,7 @@
 %defattr(-, root, root, -)
 %doc AUTHORS LICENSE NEWS README
 %{_bindir}/transmission*
+%{_bindir}/benc2php
 %{_datadir}/pixmaps/*
 %{_datadir}/icons/hicolor/*/apps/transmission.*
 %{_datadir}/applications/*transmission.desktop
@@ -68,6 +73,11 @@
 
 
 %changelog
+* Fri May  2 2008 Denis Leroy <denis at poolshark.org> - 1.11-1
+- Update to upstream 1.11, many bug fixes
+- Patch to fix opening issue from browser (#431769)
+- Patch to fix hardcoded optimize compile flags
+
 * Fri Mar 21 2008 Denis Leroy <denis at poolshark.org> - 1.06-1
 - Update to 1.06, bugfix release
 




More information about the fedora-extras-commits mailing list