summaryrefslogtreecommitdiff
path: root/net/rtorrent
diff options
context:
space:
mode:
authortron <tron>2007-04-20 13:37:57 +0000
committertron <tron>2007-04-20 13:37:57 +0000
commitedfe35d34fd41e889a404f0260516a2098e48124 (patch)
treef18cfd5c2f448b057015a588b5e9dc6b6f2f5474 /net/rtorrent
parent3504cda09f707634d2b6615cc3c245e88016f232 (diff)
downloadpkgsrc-edfe35d34fd41e889a404f0260516a2098e48124.tar.gz
Update "libtorrent" package to version 0.11.4 and "rtorrent" package
to version 0.7.4. Changes since versions 0.11.1 and 0.7.1 respectively: - Added "max_open_http" option that limits the max number of simultaneous http connections. By default set to 32. - Directory structured view of the file list. The '/' key collapses directories, while the right arrow or ^F enters the selected directory. Changing the priority for a directory changes all contained files. - Added "create_link" and "delete_link" options which apply to a download. These must be used with the new "on_*" options, so as to allow you to create symbolic links when starting, stopping, finishing, etc, a torrent. - The "tos" option was parsing the hex value with unit == 0, which caused it to always zero it. - Forgot to check if there were any torrents hashing before starting new non-fast-resume checks, which would cause multiple torrents to be hashed at once. - File progress is now updated when hash_check is called, and no longer cleared on close. This fixes a bug with >100% file progress being reported and optimizes file progress updating for completed torrents. - Disabled IPv6 http requests so the trackers won't think we support it, and enabled curl's support for gzip encodings. - Added 'seeding' view on key 8. - Added "max_{up,down}loads_{div,global}" options. See the man page for more information. - Added support for dvorak keyboard layout. Patch by matled at gmx.net. - The STOPPED request was being canceled when a download was closed with f.ex ^K, moved it so it only happens when the download is removed. - Allow properly quoted and escaped arguments to options. F.ex "schedule = wd,10,10,load_start=~/Foo\ Bar/*.torrent" and "schedule = wd,10,10,load_start="~/Foo Bar/*.torrent"" now works. - Added unlimited setting for max unchoked in ChokeManager and made it the default. Set with 0 as a temporary hack. - Don't resize empty files used for creating directories.
Diffstat (limited to 'net/rtorrent')
-rw-r--r--net/rtorrent/Makefile7
-rw-r--r--net/rtorrent/distinfo9
-rw-r--r--net/rtorrent/patches/patch-aa16
3 files changed, 7 insertions, 25 deletions
diff --git a/net/rtorrent/Makefile b/net/rtorrent/Makefile
index 0e0378faff7..f215fd3b815 100644
--- a/net/rtorrent/Makefile
+++ b/net/rtorrent/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.19 2007/01/30 14:22:36 tron Exp $
+# $NetBSD: Makefile,v 1.20 2007/04/20 13:37:58 tron Exp $
-DISTNAME= rtorrent-0.7.1
-PKGREVISION= 1
+DISTNAME= rtorrent-0.7.4
CATEGORIES= net
-MASTER_SITES= http://libtorrent.rakshasa.no/downloads/
+MASTER_SITES= ${HOMEPAGE:=downloads/}
MAINTAINER= tron@NetBSD.org
HOMEPAGE= http://libtorrent.rakshasa.no/
diff --git a/net/rtorrent/distinfo b/net/rtorrent/distinfo
index 32bbe890b12..7c1fe6cdb4e 100644
--- a/net/rtorrent/distinfo
+++ b/net/rtorrent/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.12 2007/01/26 18:48:53 tron Exp $
+$NetBSD: distinfo,v 1.13 2007/04/20 13:37:58 tron Exp $
-SHA1 (rtorrent-0.7.1.tar.gz) = cb41c013f82f12dec4962f68a7677eb0b00785cd
-RMD160 (rtorrent-0.7.1.tar.gz) = 01b42bc520abe7a6cae0b31e9b72dd65d4ae6a90
-Size (rtorrent-0.7.1.tar.gz) = 414447 bytes
-SHA1 (patch-aa) = b64756f960036fcb50e4648aecd31fe004e3ad04
+SHA1 (rtorrent-0.7.4.tar.gz) = 4060913d19204c0978d6378a71f4898714ac20e4
+RMD160 (rtorrent-0.7.4.tar.gz) = 17c72af77b3184db0488147c4ae80d4019bea6f0
+Size (rtorrent-0.7.4.tar.gz) = 451415 bytes
SHA1 (patch-ab) = 87d7741906f6d7c8572b80d2a3f42910175e182f
diff --git a/net/rtorrent/patches/patch-aa b/net/rtorrent/patches/patch-aa
deleted file mode 100644
index b4cf3298884..00000000000
--- a/net/rtorrent/patches/patch-aa
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-aa,v 1.5 2007/01/04 12:46:38 tron Exp $
-
---- rak/socket_address.h.orig 2007-01-04 01:55:46.851086425 +0100
-+++ rak/socket_address.h
-@@ -62,7 +62,11 @@ class socket_address_inet6;
-
- class socket_address {
- public:
-+#if defined(__sun) && defined(__SVR4)
-+ static const sa_family_t af_local = AF_UNIX;
-+#else
- static const sa_family_t af_local = AF_LOCAL;
-+#endif
- static const sa_family_t af_unix = AF_UNIX;
- // static const sa_family_t af_file = AF_FILE;
- static const sa_family_t af_inet = AF_INET;