View | Details | Raw Unified | Return to bug 230854
Collapse All | Expand All

(-)Makefile (-6 / +2 lines)
Lines 2-16 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	libtorrent-rasterbar
4
PORTNAME=	libtorrent-rasterbar
5
PORTVERSION=	1.1.6
5
PORTVERSION=	1.1.9
6
PORTREVISION=	4
7
CATEGORIES?=	net-p2p ipv6
6
CATEGORIES?=	net-p2p ipv6
8
MASTER_SITES=	https://github.com/arvidn/libtorrent/releases/download/libtorrent-${PORTVERSION:S/./_/g}/
7
MASTER_SITES=	https://github.com/arvidn/libtorrent/releases/download/libtorrent-${PORTVERSION:S/./_/g}/
9
8
10
PATCH_SITES=	https://github.com/arvidn/libtorrent/commit/
9
MAINTAINER=	ports@FreeBSD.org
11
PATCHFILES=	64d6b4900448.patch:-p1 3a1b0f1abb1d.patch:-p1
12
13
MAINTAINER=	rezny@FreeBSD.org
14
COMMENT?=	C++ library implementing a BitTorrent client
10
COMMENT?=	C++ library implementing a BitTorrent client
15
11
16
LICENSE=	BSD3CLAUSE
12
LICENSE=	BSD3CLAUSE
(-)distinfo (-7 / +3 lines)
Lines 1-7 Link Here
1
TIMESTAMP = 1514730099
1
TIMESTAMP = 1534791500
2
SHA256 (libtorrent-rasterbar-1.1.6.tar.gz) = b7c74d004bd121bd6e9f8975ee1fec3c95c74044c6a6250f6b07f259f55121ef
2
SHA256 (libtorrent-rasterbar-1.1.9.tar.gz) = d57a0f5b159f58003c3031943463503f0d05ae3e428dd7c2383d1e35fb2c4e8c
3
SIZE (libtorrent-rasterbar-1.1.6.tar.gz) = 3846476
3
SIZE (libtorrent-rasterbar-1.1.9.tar.gz) = 3903742
4
SHA256 (64d6b4900448.patch) = 0c3aa08437905c74f0a153cf73d551de5ab3dff57df9193baa4fe724c2039034
5
SIZE (64d6b4900448.patch) = 902
6
SHA256 (3a1b0f1abb1d.patch) = 7c63f165230657620125abfb842f86d5e3f590a0b3ddf441d02589ec9b292eba
7
SIZE (3a1b0f1abb1d.patch) = 784
(-)files/patch-src_kademlia_dht__tracker.cpp (-12 lines)
Lines 1-12 Link Here
1
--- src/kademlia/dht_tracker.cpp.orig	2016-08-23 04:28:09 UTC
2
+++ src/kademlia/dht_tracker.cpp
3
@@ -224,7 +224,8 @@ namespace libtorrent { namespace dht
4
 	void dht_tracker::get_peers(sha1_hash const& ih
5
 		, boost::function<void(std::vector<tcp::endpoint> const&)> f)
6
 	{
7
-		m_dht.get_peers(ih, f, NULL, false);
8
+		boost::function<void(std::vector<std::pair<node_entry, std::string> > const&)> empty;
9
+		m_dht.get_peers(ih, f, empty, false);
10
 	}
11
 
12
 	void dht_tracker::announce(sha1_hash const& ih, int listen_port, int flags
(-)pkg-plist (+1 lines)
Lines 28-33 Link Here
28
include/libtorrent/aux_/merkle.hpp
28
include/libtorrent/aux_/merkle.hpp
29
include/libtorrent/aux_/openssl.hpp
29
include/libtorrent/aux_/openssl.hpp
30
include/libtorrent/aux_/proxy_settings.hpp
30
include/libtorrent/aux_/proxy_settings.hpp
31
include/libtorrent/aux_/route.h
31
include/libtorrent/aux_/session_call.hpp
32
include/libtorrent/aux_/session_call.hpp
32
include/libtorrent/aux_/session_impl.hpp
33
include/libtorrent/aux_/session_impl.hpp
33
include/libtorrent/aux_/session_interface.hpp
34
include/libtorrent/aux_/session_interface.hpp

Return to bug 230854