Update to libtorrent 0.11.0 and rtorrent 0.7.0; from maintainer Henrik Enberg.
* Encrypted (obfuscated) handshake and connection support. * Added support for tunneling through HTTP 1.0 proxies. * Support for the CANCEL piece request message. * Allow the user to configure the max file size a torrent is allowed to create, and the option to split large files. Take maintainer, as Henrik doesn't have the time any longer.
This commit is contained in:
parent
86dd917fbd
commit
2ea1227c6f
@ -1,13 +1,13 @@
|
||||
# $OpenBSD: Makefile,v 1.10 2006/12/16 12:22:34 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.11 2006/12/21 19:13:07 naddy Exp $
|
||||
|
||||
COMMENT= "BitTorrent Library written in C++"
|
||||
COMMENT= "BitTorrent library written in C++"
|
||||
|
||||
DISTNAME= libtorrent-0.10.4
|
||||
SHARED_LIBS += torrent 10.0 # .9.0
|
||||
DISTNAME= libtorrent-0.11.0
|
||||
SHARED_LIBS += torrent 11.0 # .10.0
|
||||
CATEGORIES= net devel
|
||||
|
||||
HOMEPAGE= http://libtorrent.rakshasa.no/
|
||||
MAINTAINER= Henrik Enberg <enberg@printf.se>
|
||||
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
||||
|
||||
# GPL
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
@ -22,7 +22,7 @@ LIB_DEPENDS= sigc-2.0:libsigc++-2.*:devel/libsigc++-2
|
||||
USE_LIBTOOL= Yes
|
||||
|
||||
CONFIGURE_STYLE= gnu
|
||||
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
||||
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
||||
--with-openssl=/usr \
|
||||
--with-kqueue \
|
||||
--disable-debug
|
||||
|
@ -1,4 +1,4 @@
|
||||
MD5 (libtorrent-0.10.4.tar.gz) = 3154a686d9616f04012596b8daa2ff52
|
||||
RMD160 (libtorrent-0.10.4.tar.gz) = 43fdfe827e6f56c7caed2406f5c0c6df28dcf007
|
||||
SHA1 (libtorrent-0.10.4.tar.gz) = f809a013469be9a933c1032f8e4ebe08d4150e5a
|
||||
SIZE (libtorrent-0.10.4.tar.gz) = 485174
|
||||
MD5 (libtorrent-0.11.0.tar.gz) = 1dd6d6c7cbb8a44810452c924f27c104
|
||||
RMD160 (libtorrent-0.11.0.tar.gz) = a67017ac522d4acf303fa5e13bfdede03815d47b
|
||||
SHA1 (libtorrent-0.11.0.tar.gz) = d2a18ed35d0e6cd573ee284a6fe14574b85c86c4
|
||||
SIZE (libtorrent-0.11.0.tar.gz) = 475919
|
||||
|
@ -1,26 +1,34 @@
|
||||
@comment $OpenBSD: PLIST,v 1.4 2006/10/19 15:21:20 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.5 2006/12/21 19:13:07 naddy Exp $
|
||||
%%SHARED%%
|
||||
include/torrent/
|
||||
include/torrent/bitfield.h
|
||||
include/torrent/block.h
|
||||
include/torrent/block_list.h
|
||||
include/torrent/block_transfer.h
|
||||
include/torrent/chunk_manager.h
|
||||
include/torrent/common.h
|
||||
include/torrent/connection_manager.h
|
||||
include/torrent/data/
|
||||
include/torrent/data/block.h
|
||||
include/torrent/data/block_list.h
|
||||
include/torrent/data/block_transfer.h
|
||||
include/torrent/data/file.h
|
||||
include/torrent/data/file_list.h
|
||||
include/torrent/data/file_utils.h
|
||||
include/torrent/data/piece.h
|
||||
include/torrent/data/transfer_list.h
|
||||
include/torrent/download.h
|
||||
include/torrent/error.h
|
||||
include/torrent/event.h
|
||||
include/torrent/exceptions.h
|
||||
include/torrent/file.h
|
||||
include/torrent/file_list.h
|
||||
include/torrent/hash_string.h
|
||||
include/torrent/http.h
|
||||
include/torrent/object.h
|
||||
include/torrent/object_stream.h
|
||||
include/torrent/path.h
|
||||
include/torrent/peer.h
|
||||
include/torrent/peer_info.h
|
||||
include/torrent/peer_list.h
|
||||
include/torrent/piece.h
|
||||
include/torrent/peer/
|
||||
include/torrent/peer/client_info.h
|
||||
include/torrent/peer/client_list.h
|
||||
include/torrent/peer/peer.h
|
||||
include/torrent/peer/peer_info.h
|
||||
include/torrent/peer/peer_list.h
|
||||
include/torrent/poll.h
|
||||
include/torrent/poll_epoll.h
|
||||
include/torrent/poll_kqueue.h
|
||||
@ -30,7 +38,6 @@ include/torrent/resume.h
|
||||
include/torrent/torrent.h
|
||||
include/torrent/tracker.h
|
||||
include/torrent/tracker_list.h
|
||||
include/torrent/transfer_list.h
|
||||
lib/libtorrent.a
|
||||
lib/libtorrent.la
|
||||
lib/pkgconfig/
|
||||
|
@ -1,12 +1,12 @@
|
||||
# $OpenBSD: Makefile,v 1.10 2006/12/16 12:22:34 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.11 2006/12/21 19:13:07 naddy Exp $
|
||||
|
||||
COMMENT= "Ncurses BitTorrent Client based on LibTorrent"
|
||||
|
||||
DISTNAME= rtorrent-0.6.4
|
||||
DISTNAME= rtorrent-0.7.0
|
||||
CATEGORIES= net
|
||||
HOMEPAGE= http://libtorrent.rakshasa.no/
|
||||
|
||||
MAINTAINER= Henrik Enberg <enberg@printf.se>
|
||||
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
||||
|
||||
# GPL
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
@ -18,7 +18,7 @@ WANTLIB= c crypto m ncurses sigc-2.0 ssl stdc++ z
|
||||
|
||||
MASTER_SITES= ${HOMEPAGE}downloads/
|
||||
|
||||
LIB_DEPENDS= torrent.>=10::net/libtorrent \
|
||||
LIB_DEPENDS= torrent.>=11::net/libtorrent \
|
||||
curl.>=3::net/curl
|
||||
|
||||
USE_LIBTOOL= Yes
|
||||
|
@ -1,4 +1,4 @@
|
||||
MD5 (rtorrent-0.6.4.tar.gz) = 9077817e5a0f505e0b71add9c57b89f7
|
||||
RMD160 (rtorrent-0.6.4.tar.gz) = fa9fb6e8693a9d16926b022f97db6145847bb4c6
|
||||
SHA1 (rtorrent-0.6.4.tar.gz) = df3e39a78334284262fe71e9db63b3e47ca5ab29
|
||||
SIZE (rtorrent-0.6.4.tar.gz) = 438407
|
||||
MD5 (rtorrent-0.7.0.tar.gz) = 26758f948874e1ee9732628772483b7b
|
||||
RMD160 (rtorrent-0.7.0.tar.gz) = 8e0d598de52530d9483fc48096522019add75c5c
|
||||
SHA1 (rtorrent-0.7.0.tar.gz) = 2a6b99725f36dcd2fb439aae5a372245bfda5ec9
|
||||
SIZE (rtorrent-0.7.0.tar.gz) = 413247
|
||||
|
Loading…
Reference in New Issue
Block a user