Changeset 1849

Show
Ignore:
Timestamp:
06/01/11 14:45:34 (2 years ago)
Author:
matthijs
Message:

transmission: Update to version 2.11.

This also updates some patches so they still apply and updates the
torrent plugin version as well.

Closes: #564

Location:
trunk/fon
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/fon/plugins/plugin-torrent/Makefile

    r1752 r1849  
    99 
    1010PKG_NAME:=plugin-torrent 
    11 PKG_VERSION:=2.04 
     11PKG_VERSION:=2.11 
    1212PKG_RELEASE:=1 
    1313# Build a .fmg plugin 
  • trunk/fon/transmission/Makefile

    r1741 r1849  
    99 
    1010PKG_NAME:=transmission 
    11 PKG_VERSION:=2.04 
     11PKG_VERSION:=2.11 
    1212PKG_RELEASE:=1 
    1313 
    1414PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 
    1515PKG_SOURCE_URL:=http://mirrors.m0k.org/transmission/files 
    16 PKG_MD5SUM:=84fe15eb7e000fdc369def513299358b 
     16PKG_MD5SUM:=ef2b40ddc2c17a57c47bfe15b1f23cc4 
    1717 
    1818PKG_FIXUP = libtool 
     
    7979define Package/transmission-cli/install 
    8080        $(INSTALL_DIR) $(1)/sbin 
    81         $(INSTALL_BIN) $(PKG_BUILD_DIR)/cli/transmissioncli $(1)/sbin/ 
     81        $(INSTALL_BIN) $(PKG_BUILD_DIR)/cli/transmission-cli $(1)/sbin/ 
    8282        $(INSTALL_BIN) $(PKG_BUILD_DIR)/daemon/transmission-remote $(1)/sbin/ 
    8383endef 
  • trunk/fon/transmission/patches/200-crypt.patch

    r1741 r1849  
    167167     @DHT_LIBS@ \ 
    168168     @LIBCURL_LIBS@ \ 
     169Index: transmission-2.11/utils/Makefile.in 
     170=================================================================== 
     171--- transmission-2.11/utils/Makefile.in 2010-10-25 20:35:08.000000000 +0200 
     172+++ transmission-2.11/utils/Makefile.in 2010-10-25 20:35:50.000000000 +0200 
     173@@ -338,6 +338,7 @@ 
     174     $(top_builddir)/libtransmission/libtransmission.a \ 
     175     $(top_builddir)/third-party/miniupnp/libminiupnp.a \ 
     176     $(top_builddir)/third-party/libnatpmp/libnatpmp.a \ 
     177+    -lcrypt \ 
     178     @DHT_LIBS@ \ 
     179     @LIBEVENT_LIBS@ \ 
     180     @LIBCURL_LIBS@ \ 
  • trunk/fon/transmission/patches/400-remote.patch

    r1123 r1849  
    1 Index: transmission-1.72/daemon/remote.c 
     1Index: transmission-2.11/daemon/remote.c 
    22=================================================================== 
    3 --- transmission-1.72.orig/daemon/remote.c      2009-07-16 15:33:45.000000000 +0200 
    4 +++ transmission-1.72/daemon/remote.c   2009-07-16 15:38:54.000000000 +0200 
     3--- transmission-2.11.orig/daemon/remote.c      2010-10-25 18:21:35.000000000 +0200 
     4+++ transmission-2.11/daemon/remote.c   2010-10-25 18:22:31.000000000 +0200 
    55@@ -1,3 +1,4 @@ 
    66+ 
    77 /* 
    8   * This file Copyright (C) 2008-2009 Charles Kerr <charles@transmissionbt.com> 
     8  * This file Copyright (C) 2008-2010 Mnemosyne LLC 
    99  * 
    10 @@ -1247,10 +1248,10 @@ 
    11          int64_t total_up = 0, total_down = 0, total_size = 0; 
     10@@ -1195,10 +1196,10 @@ 
     11         double total_up=0, total_down=0; 
    1212         char haveStr[32]; 
    1313  
     
    2121         { 
    2222             int64_t      id, eta, status, up, down; 
    23 @@ -1291,14 +1292,13 @@ 
     23@@ -1239,14 +1240,13 @@ 
    2424                 else 
    2525                     errorMark = ' '; 
     
    3232                     haveStr, 
    3333                     etaStr, 
    34                      up / 1024.0, 
    35                      down / 1024.0, 
     34                     up/(double)tr_speed_K, 
     35                     down/(double)tr_speed_K, 
    3636-                    strlratio2( ratioStr, ratio, sizeof( ratioStr ) ), 
    3737                     getStatusString( d, statusStr, sizeof( statusStr ) ), 
    3838                     name ); 
    3939  
    40 @@ -1308,10 +1308,10 @@ 
     40@@ -1256,10 +1256,10 @@ 
    4141             } 
    4242         } 
     
    4545+/*        printf( "Sum:         %9s            %6.1f  %6.1f\n", 
    4646                 strlsize( haveStr, total_size, sizeof( haveStr ) ), 
    47                  total_up / 1024.0, 
    48 -                total_down / 1024.0 ); 
    49 +                total_down / 1024.0 );*/ 
     47                 total_up/(double)tr_speed_K, 
     48-                total_down/(double)tr_speed_K ); 
     49+                total_down/(double)tr_speed_K );*/ 
    5050     } 
    5151 }