pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net update to BitTorrent 4.0.2



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9a1216997016
branches:  trunk
changeset: 496727:9a1216997016
user:      recht <recht%pkgsrc.org@localhost>
date:      Sun Jul 10 19:11:02 2005 +0000

description:
update to BitTorrent 4.0.2

Changes in this release:
- Opening a torrent that is already open in the GUI now has the correct behavior rather than
  raising an error
- Backported --chop_max_allow_in from 4.1 to help fix TCP stack flaking out problem on Windows
- Robustly handle config files corrupted by Windows
- Better error messages when a torrent already meets seeding limits
- File filters

diffstat:

 net/bittorrent-gui/Makefile    |   5 ++---
 net/bittorrent-gui/PLIST       |  22 +++++++++++-----------
 net/bittorrent/Makefile        |   3 +--
 net/bittorrent/Makefile.common |   4 ++--
 net/bittorrent/PLIST           |  20 ++++++++++----------
 net/bittorrent/distinfo        |   8 ++++----
 6 files changed, 30 insertions(+), 32 deletions(-)

diffs (122 lines):

diff -r fe827770353d -r 9a1216997016 net/bittorrent-gui/Makefile
--- a/net/bittorrent-gui/Makefile       Sun Jul 10 16:46:37 2005 +0000
+++ b/net/bittorrent-gui/Makefile       Sun Jul 10 19:11:02 2005 +0000
@@ -1,14 +1,13 @@
-# $NetBSD: Makefile,v 1.11 2005/06/19 02:49:23 salo Exp $
+# $NetBSD: Makefile,v 1.12 2005/07/10 19:11:02 recht Exp $
 #
 
 .include "../../net/bittorrent/Makefile.common"
 
 PKGNAME=       ${DISTNAME:S/BitTorrent/bittorrent-gui/}
-PKGREVISION=   1
 
 COMMENT+=      (GTK+ GUI)
 
-DEPENDS+=      bittorrent>=4.0.1:../../net/bittorrent
+DEPENDS+=      bittorrent>=4.0.2:../../net/bittorrent
 
 PYTHON_PATCH_SCRIPTS= btdownloadgui.py btmaketorrentgui.py
 
diff -r fe827770353d -r 9a1216997016 net/bittorrent-gui/PLIST
--- a/net/bittorrent-gui/PLIST  Sun Jul 10 16:46:37 2005 +0000
+++ b/net/bittorrent-gui/PLIST  Sun Jul 10 19:11:02 2005 +0000
@@ -1,13 +1,13 @@
-@comment $NetBSD: PLIST,v 1.3 2005/06/19 02:49:24 salo Exp $
+@comment $NetBSD: PLIST,v 1.4 2005/07/10 19:11:02 recht Exp $
 bin/btdownloadgui.py
 bin/btmaketorrentgui.py
-share/pixmaps/BitTorrent-4.0.1/bittorrent.ico
-share/pixmaps/BitTorrent-4.0.1/broken.png
-share/pixmaps/BitTorrent-4.0.1/finished.png
-share/pixmaps/BitTorrent-4.0.1/info.png
-share/pixmaps/BitTorrent-4.0.1/pause.png
-share/pixmaps/BitTorrent-4.0.1/paused.png
-share/pixmaps/BitTorrent-4.0.1/play.png
-share/pixmaps/BitTorrent-4.0.1/queued.png
-share/pixmaps/BitTorrent-4.0.1/remove.png
-share/pixmaps/BitTorrent-4.0.1/running.png
+share/pixmaps/BitTorrent-4.0.2/bittorrent.ico
+share/pixmaps/BitTorrent-4.0.2/broken.png
+share/pixmaps/BitTorrent-4.0.2/finished.png
+share/pixmaps/BitTorrent-4.0.2/info.png
+share/pixmaps/BitTorrent-4.0.2/pause.png
+share/pixmaps/BitTorrent-4.0.2/paused.png
+share/pixmaps/BitTorrent-4.0.2/play.png
+share/pixmaps/BitTorrent-4.0.2/queued.png
+share/pixmaps/BitTorrent-4.0.2/remove.png
+share/pixmaps/BitTorrent-4.0.2/running.png
diff -r fe827770353d -r 9a1216997016 net/bittorrent/Makefile
--- a/net/bittorrent/Makefile   Sun Jul 10 16:46:37 2005 +0000
+++ b/net/bittorrent/Makefile   Sun Jul 10 19:11:02 2005 +0000
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.26 2005/06/19 02:49:23 salo Exp $
+# $NetBSD: Makefile,v 1.27 2005/07/10 19:11:02 recht Exp $
 #
 
 .include "Makefile.common"
 
 PKGNAME=       ${DISTNAME:S/BitT/bitt/}
-PKGREVISION=   1
 
 PYDISTUTILSPKG=        YES
 
diff -r fe827770353d -r 9a1216997016 net/bittorrent/Makefile.common
--- a/net/bittorrent/Makefile.common    Sun Jul 10 16:46:37 2005 +0000
+++ b/net/bittorrent/Makefile.common    Sun Jul 10 19:11:02 2005 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile.common,v 1.11 2005/04/11 21:46:45 tv Exp $
+# $NetBSD: Makefile.common,v 1.12 2005/07/10 19:11:02 recht Exp $
 #
 
-DISTNAME=      BitTorrent-4.0.1
+DISTNAME=      BitTorrent-4.0.2
 CATEGORIES=    net
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=bittorrent/}
 
diff -r fe827770353d -r 9a1216997016 net/bittorrent/PLIST
--- a/net/bittorrent/PLIST      Sun Jul 10 16:46:37 2005 +0000
+++ b/net/bittorrent/PLIST      Sun Jul 10 19:11:02 2005 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2005/06/19 02:49:23 salo Exp $
+@comment $NetBSD: PLIST,v 1.11 2005/07/10 19:11:02 recht Exp $
 bin/btdownloadcurses.py
 bin/btdownloadheadless.py
 bin/btlaunchmany.py
@@ -125,13 +125,13 @@
 ${PYSITELIB}/BitTorrent/zurllib.py
 ${PYSITELIB}/BitTorrent/zurllib.pyc
 ${PYSITELIB}/BitTorrent/zurllib.pyo
-share/doc/BitTorrent-4.0.1/credits.txt
-share/doc/BitTorrent-4.0.1/LICENSE.txt
-share/doc/BitTorrent-4.0.1/README.txt
-share/doc/BitTorrent-4.0.1/redirdonate.html
-share/pixmaps/BitTorrent-4.0.1/logo/bittorrent_32.png
-share/pixmaps/BitTorrent-4.0.1/logo/bittorrent_96.png
-@dirrm share/pixmaps/BitTorrent-4.0.1/logo
-@dirrm share/pixmaps/BitTorrent-4.0.1
-@dirrm share/doc/BitTorrent-4.0.1
+share/doc/BitTorrent-4.0.2/LICENSE.txt
+share/doc/BitTorrent-4.0.2/README.txt
+share/doc/BitTorrent-4.0.2/credits.txt
+share/doc/BitTorrent-4.0.2/redirdonate.html
+share/pixmaps/BitTorrent-4.0.2/logo/bittorrent_32.png
+share/pixmaps/BitTorrent-4.0.2/logo/bittorrent_96.png
+@dirrm share/pixmaps/BitTorrent-4.0.2/logo
+@dirrm share/pixmaps/BitTorrent-4.0.2
+@dirrm share/doc/BitTorrent-4.0.2
 @dirrm ${PYSITELIB}/BitTorrent
diff -r fe827770353d -r 9a1216997016 net/bittorrent/distinfo
--- a/net/bittorrent/distinfo   Sun Jul 10 16:46:37 2005 +0000
+++ b/net/bittorrent/distinfo   Sun Jul 10 19:11:02 2005 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.15 2005/06/19 02:49:23 salo Exp $
+$NetBSD: distinfo,v 1.16 2005/07/10 19:11:02 recht Exp $
 
-SHA1 (BitTorrent-4.0.1.tar.gz) = 577db045897e02dcf8d3546f93a2525c5b7ba6cf
-RMD160 (BitTorrent-4.0.1.tar.gz) = 9ccec667802df40aa21c00be7930ac5ad4d65821
-Size (BitTorrent-4.0.1.tar.gz) = 154427 bytes
+SHA1 (BitTorrent-4.0.2.tar.gz) = c45507be7f47fa90925ba57a1a5975c61380dc04
+RMD160 (BitTorrent-4.0.2.tar.gz) = feae7a846eb5f6b3c89d65f5f52fb34adc8f3086
+Size (BitTorrent-4.0.2.tar.gz) = 155062 bytes
 SHA1 (patch-aa) = fad5fb4d6b6c4aed9988cd4484aad042a3de5cef



Home | Main Index | Thread Index | Old Index