maintenance update to 1.51

This commit is contained in:
naddy 2009-03-04 20:59:52 +00:00
parent bf90306d70
commit f7794129b7
7 changed files with 37 additions and 51 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.30 2009/02/15 18:09:29 naddy Exp $ # $OpenBSD: Makefile,v 1.31 2009/03/04 20:59:52 naddy Exp $
COMMENT-main= lightweight BitTorrent command line and daemon client COMMENT-main= lightweight BitTorrent command line and daemon client
COMMENT-gui= lightweight BitTorrent client with graphical interface COMMENT-gui= lightweight BitTorrent client with graphical interface
VER= 1.50 VER= 1.51
DISTNAME= transmission-${VER} DISTNAME= transmission-${VER}
PKGNAME-main= transmission-${VER} PKGNAME-main= transmission-${VER}
PKGNAME-gui= transmission-gui-${VER} PKGNAME-gui= transmission-gui-${VER}

View File

@ -1,5 +1,5 @@
MD5 (transmission-1.50.tar.bz2) = k0IAQknwnV6Ph/m9FHb6Uw== MD5 (transmission-1.51.tar.bz2) = uTQ5+9AECtbrRI9wpINV9Q==
RMD160 (transmission-1.50.tar.bz2) = zbyyWdDdpmVXdzWRcX0fzdqP1Z8= RMD160 (transmission-1.51.tar.bz2) = G1M0T7RAsL6D3eOcnumDZTB6cEM=
SHA1 (transmission-1.50.tar.bz2) = ip9g5SK0kGgYpgJooPv1Tt26Mxo= SHA1 (transmission-1.51.tar.bz2) = PbffjAYE1JrM1qTJJBOVFlCMIdI=
SHA256 (transmission-1.50.tar.bz2) = 9wlfID5RHIXECK1vIVYVInhPR91eHJkncMszmX470OQ= SHA256 (transmission-1.51.tar.bz2) = UHd18ML7liWXokM+21qD4VujrFYkultLBKl8Uj/xem4=
SIZE (transmission-1.50.tar.bz2) = 4620898 SIZE (transmission-1.51.tar.bz2) = 4574671

View File

@ -1,36 +1,23 @@
$OpenBSD: patch-configure,v 1.11 2009/02/15 18:09:29 naddy Exp $ $OpenBSD: patch-configure,v 1.12 2009/03/04 20:59:52 naddy Exp $
--- configure.orig Fri Feb 13 17:43:45 2009 --- configure.orig Sun Mar 1 17:08:56 2009
+++ configure Sat Feb 14 15:37:05 2009 +++ configure Sun Mar 1 17:09:48 2009
@@ -20147,8 +20147,8 @@ LIBTOOL='$(SHELL) $(top_builddir)/libtool' @@ -20148,8 +20148,8 @@ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
if test 0 = "0"; then if test 0 = "0"; then
supported_build=yes supported_build=yes
if test "x$GCC" = "xyes" ; then
- CFLAGS="$CFLAGS -g -O3 -funroll-loops " - CFLAGS="$CFLAGS -g -O3 -funroll-loops "
- CXXFLAGS="$CXXFLAGS -g -O3 -funroll-loops " - CXXFLAGS="$CXXFLAGS -g -O3 -funroll-loops "
+ : CFLAGS="$CFLAGS -g -O3 -funroll-loops " + : CFLAGS="$CFLAGS -g -O3 -funroll-loops "
+ : CXXFLAGS="$CXXFLAGS -g -O3 -funroll-loops " + : CXXFLAGS="$CXXFLAGS -g -O3 -funroll-loops "
fi
cat >>confdefs.h <<\_ACEOF cat >>confdefs.h <<\_ACEOF
#define TR_STABLE_RELEASE 1 @@ -21544,7 +21544,7 @@ _ACEOF
@@ -20156,8 +20156,8 @@ _ACEOF
else
supported_build=no
- CFLAGS="$CFLAGS -g -O0"
- CXXFLAGS="$CXXFLAGS -g -O0"
+ : CFLAGS="$CFLAGS -g -O0"
+ : CXXFLAGS="$CXXFLAGS -g -O0"
if test 0 = "X"; then
cat >>confdefs.h <<\_ACEOF
@@ -21540,8 +21540,8 @@ _ACEOF
esac esac
if test "x$GCC" = "xyes" ; then if test "x$GCC" = "xyes" ; then
- CFLAGS="-std=gnu99 -ggdb3 -Wall -Wextra -Wredundant-decls -Wpointer-arith -Wformat-security -W -Wmissing-declarations -Wdeclaration-after-statement -Wcast-align -Winit-self -Wundef -Wnested-externs -Wmissing-format-attribute" - CFLAGS="$CFLAGS -std=gnu99 -ggdb3 -Wall -Wextra -Wredundant-decls -Wpointer-arith -Wformat-security -W -Wmissing-declarations -Wdeclaration-after-statement -Wcast-align -Winit-self -Wundef -Wnested-externs -Wmissing-format-attribute"
- CXXFLAGS="-Wall -Wformat-security -W" + : CFLAGS="$CFLAGS -std=gnu99 -ggdb3 -Wall -Wextra -Wredundant-decls -Wpointer-arith -Wformat-security -W -Wmissing-declarations -Wdeclaration-after-statement -Wcast-align -Winit-self -Wundef -Wnested-externs -Wmissing-format-attribute"
+ : CFLAGS="-std=gnu99 -ggdb3 -Wall -Wextra -Wredundant-decls -Wpointer-arith -Wformat-security -W -Wmissing-declarations -Wdeclaration-after-statement -Wcast-align -Winit-self -Wundef -Wnested-externs -Wmissing-format-attribute"
+ : CXXFLAGS="-Wall -Wformat-security -W"
fi fi
{ $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5 { $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-daemon_remote_c,v 1.3 2009/02/15 18:09:29 naddy Exp $ $OpenBSD: patch-daemon_remote_c,v 1.4 2009/03/04 20:59:52 naddy Exp $
--- daemon/remote.c.orig Thu Feb 12 22:00:51 2009 --- daemon/remote.c.orig Fri Feb 27 17:46:36 2009
+++ daemon/remote.c Fri Feb 13 15:33:03 2009 +++ daemon/remote.c Sun Mar 1 17:10:43 2009
@@ -628,11 +628,11 @@ strlratio2( char * buf, double ratio, size_t buflen ) @@ -630,11 +630,11 @@ strlratio2( char * buf, double ratio, size_t buflen )
else if( (int)ratio == TR_RATIO_INF ) else if( (int)ratio == TR_RATIO_INF )
tr_strlcpy( buf, "Inf", buflen ); tr_strlcpy( buf, "Inf", buflen );
else if( ratio < 10.0 ) else if( ratio < 10.0 )
@ -16,7 +16,7 @@ $OpenBSD: patch-daemon_remote_c,v 1.3 2009/02/15 18:09:29 naddy Exp $
return buf; return buf;
} }
@@ -660,24 +660,24 @@ strlsize( char * buf, int64_t size, size_t buflen ) @@ -662,24 +662,24 @@ strlsize( char * buf, int64_t size, size_t buflen )
if( !size ) if( !size )
tr_strlcpy( buf, "None", buflen ); tr_strlcpy( buf, "None", buflen );
else if( size < (int64_t)KILOBYTE_FACTOR ) else if( size < (int64_t)KILOBYTE_FACTOR )

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-gtk_details_c,v 1.5 2009/02/15 18:09:29 naddy Exp $ $OpenBSD: patch-gtk_details_c,v 1.6 2009/03/04 20:59:52 naddy Exp $
--- gtk/details.c.orig Sat Jan 17 16:25:47 2009 --- gtk/details.c.orig Fri Feb 27 17:46:14 2009
+++ gtk/details.c Tue Jan 20 20:59:56 2009 +++ gtk/details.c Sun Mar 1 17:10:43 2009
@@ -498,7 +498,7 @@ fmtpeercount( GtkWidget * l, @@ -499,7 +499,7 @@ fmtpeercount( GtkWidget * l,
else else
{ {
char str[16]; char str[16];
@ -10,7 +10,7 @@ $OpenBSD: patch-gtk_details_c,v 1.5 2009/02/15 18:09:29 naddy Exp $
gtk_label_set_text( GTK_LABEL( l ), str ); gtk_label_set_text( GTK_LABEL( l ), str );
} }
} }
@@ -909,7 +909,7 @@ info_page_new( tr_torrent * tor ) @@ -911,7 +911,7 @@ info_page_new( tr_torrent * tor )
hig_workarea_add_section_title ( t, &row, _( "Details" ) ); hig_workarea_add_section_title ( t, &row, _( "Details" ) );
g_snprintf( countStr, sizeof( countStr ), g_snprintf( countStr, sizeof( countStr ),

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-gtk_tr-prefs_c,v 1.3 2009/02/15 18:09:29 naddy Exp $ $OpenBSD: patch-gtk_tr-prefs_c,v 1.4 2009/03/04 20:59:52 naddy Exp $
--- gtk/tr-prefs.c.orig Sat Jan 17 16:25:47 2009 --- gtk/tr-prefs.c.orig Fri Feb 27 17:46:14 2009
+++ gtk/tr-prefs.c Tue Jan 20 20:59:57 2009 +++ gtk/tr-prefs.c Sun Mar 1 17:10:43 2009
@@ -381,8 +381,8 @@ updateBlocklistText( GtkWidget * w, @@ -383,8 +383,8 @@ updateBlocklistText( GtkWidget * w,
char buf[512]; char buf[512];
g_snprintf( buf, sizeof( buf ), g_snprintf( buf, sizeof( buf ),

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST-main,v 1.9 2008/12/02 15:29:07 naddy Exp $ @comment $OpenBSD: PLIST-main,v 1.10 2009/03/04 20:59:52 naddy Exp $
@pkgpath net/transmission @pkgpath net/transmission
@bin bin/transmission-daemon @bin bin/transmission-daemon
@bin bin/transmission-remote @bin bin/transmission-remote
@ -20,9 +20,6 @@ share/transmission/web/images/buttons/torrent_buttons.png
share/transmission/web/images/favicon.ico share/transmission/web/images/favicon.ico
share/transmission/web/images/favicon.png share/transmission/web/images/favicon.png
share/transmission/web/images/graphics/ share/transmission/web/images/graphics/
share/transmission/web/images/graphics/browser_firefox.gif
share/transmission/web/images/graphics/browser_opera.gif
share/transmission/web/images/graphics/browser_safari.gif
share/transmission/web/images/graphics/chrome.png share/transmission/web/images/graphics/chrome.png
share/transmission/web/images/graphics/filter_bar.png share/transmission/web/images/graphics/filter_bar.png
share/transmission/web/images/graphics/filter_icon.png share/transmission/web/images/graphics/filter_icon.png
@ -49,4 +46,6 @@ share/transmission/web/javascript/transmission.js
share/transmission/web/javascript/transmission.remote.js share/transmission/web/javascript/transmission.remote.js
share/transmission/web/stylesheets/ share/transmission/web/stylesheets/
share/transmission/web/stylesheets/common.css share/transmission/web/stylesheets/common.css
share/transmission/web/stylesheets/ie6.css
share/transmission/web/stylesheets/ie7.css
share/transmission/web/stylesheets/iphone.css share/transmission/web/stylesheets/iphone.css