Thu Apr 23 10:54:51 2020 UTC ()
libtorrent-rasterbar: updated to 1.2.6

1.2.6:
fix peer timeout logic
simplify proxy handling. A proxy now overrides listen_interfaces
fix issues when configured to use a non-default choking algorithm
fix issue in reading resume data
revert NXDOMAIN change from 1.2.4
don't open any listen sockets if listen_interfaces is empty or misconfigured
fix bug in auto disk cache size logic
fix issue with outgoing_interfaces setting, where bind() would be called twice
add build option to disable share-mode
support validation of HTTPS trackers
deprecate strict super seeding mode
make UPnP port-mapping lease duration configurable
deprecate the bittyrant choking algorithm
add build option to disable streaming


(adam)
diff -r1.7 -r1.8 pkgsrc/net/libtorrent-rasterbar/Makefile
diff -r1.3 -r1.4 pkgsrc/net/libtorrent-rasterbar/buildlink3.mk
diff -r1.4 -r1.5 pkgsrc/net/libtorrent-rasterbar/distinfo

cvs diff -r1.7 -r1.8 pkgsrc/net/libtorrent-rasterbar/Makefile (expand / switch to unified diff)

--- pkgsrc/net/libtorrent-rasterbar/Makefile 2020/03/30 17:13:21 1.7
+++ pkgsrc/net/libtorrent-rasterbar/Makefile 2020/04/23 10:54:51 1.8
@@ -1,28 +1,28 @@ @@ -1,28 +1,28 @@
1# $NetBSD: Makefile,v 1.7 2020/03/30 17:13:21 adam Exp $ 1# $NetBSD: Makefile,v 1.8 2020/04/23 10:54:51 adam Exp $
2 2
3DISTNAME= libtorrent-rasterbar-1.2.5 3DISTNAME= libtorrent-rasterbar-1.2.6
4CATEGORIES= net 4CATEGORIES= net
5MASTER_SITES= ${MASTER_SITE_GITHUB:=arvidn/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=arvidn/}
6GITHUB_PROJECT= libtorrent 6GITHUB_PROJECT= libtorrent
7GITHUB_RELEASE= libtorrent-${PKGVERSION_NOREV:S/./_/g} 7GITHUB_RELEASE= libtorrent-${PKGVERSION_NOREV:S/./_/g}
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= https://www.libtorrent.org/ 10HOMEPAGE= https://www.libtorrent.org/
11COMMENT= Feature complete C++ bittorrent implementation 11COMMENT= Feature complete C++ bittorrent implementation
12LICENSE= modified-bsd 12LICENSE= modified-bsd
13 13
14USE_CMAKE= yes 14USE_CMAKE= yes
15USE_LANGUAGES= c c++14 15USE_LANGUAGES= c c++14
16USE_TOOLS+= pkg-config 16USE_TOOLS+= pkg-config
17 17
18GCC_REQD+= 6 # c++14 18GCC_REQD+= 6 # c++14
19 19
20PKGCONFIG_OVERRIDE+= libtorrent-rasterbar.pc.in 20PKGCONFIG_OVERRIDE+= libtorrent-rasterbar.pc.in
21 21
22post-install: 22post-install:
23 ${FIND} ${DESTDIR} -name '*.orig' -print0 | ${XARGS} -0 ${RM} -f 23 ${FIND} ${DESTDIR} -name '*.orig' -exec ${RM} -f {} +
24 24
25.include "../../converters/libiconv/buildlink3.mk" 25.include "../../converters/libiconv/buildlink3.mk"
26.include "../../devel/boost-libs/buildlink3.mk" 26.include "../../devel/boost-libs/buildlink3.mk"
27.include "../../security/openssl/buildlink3.mk" 27.include "../../security/openssl/buildlink3.mk"
28.include "../../mk/bsd.pkg.mk" 28.include "../../mk/bsd.pkg.mk"

cvs diff -r1.3 -r1.4 pkgsrc/net/libtorrent-rasterbar/buildlink3.mk (expand / switch to unified diff)

--- pkgsrc/net/libtorrent-rasterbar/buildlink3.mk 2020/01/18 21:48:19 1.3
+++ pkgsrc/net/libtorrent-rasterbar/buildlink3.mk 2020/04/23 10:54:51 1.4
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: buildlink3.mk,v 1.3 2020/01/18 21:48:19 jperkin Exp $ 1# $NetBSD: buildlink3.mk,v 1.4 2020/04/23 10:54:51 adam Exp $
2 2
3BUILDLINK_TREE+= libtorrent-rasterbar 3BUILDLINK_TREE+= libtorrent-rasterbar
4 4
5.if !defined(LIBTORRENT_RASTERBAR_BUILDLINK3_MK) 5.if !defined(LIBTORRENT_RASTERBAR_BUILDLINK3_MK)
6LIBTORRENT_RASTERBAR_BUILDLINK3_MK:= 6LIBTORRENT_RASTERBAR_BUILDLINK3_MK:=
7 7
8BUILDLINK_API_DEPENDS.libtorrent-rasterbar+= libtorrent-rasterbar>=1.2.2 8BUILDLINK_API_DEPENDS.libtorrent-rasterbar+= libtorrent-rasterbar>=1.2.2
9BUILDLINK_ABI_DEPENDS.libtorrent-rasterbar?= libtorrent-rasterbar>=1.2.3nb3 9BUILDLINK_ABI_DEPENDS.libtorrent-rasterbar+= libtorrent-rasterbar>=1.2.3nb3
10BUILDLINK_PKGSRCDIR.libtorrent-rasterbar?= ../../net/libtorrent-rasterbar 10BUILDLINK_PKGSRCDIR.libtorrent-rasterbar?= ../../net/libtorrent-rasterbar
11 11
12.include "../../devel/boost-libs/buildlink3.mk" 12.include "../../devel/boost-libs/buildlink3.mk"
13.include "../../security/openssl/buildlink3.mk" 13.include "../../security/openssl/buildlink3.mk"
14.endif # LIBTORRENT_RASTERBAR_BUILDLINK3_MK 14.endif # LIBTORRENT_RASTERBAR_BUILDLINK3_MK
15 15
16BUILDLINK_TREE+= -libtorrent-rasterbar 16BUILDLINK_TREE+= -libtorrent-rasterbar

cvs diff -r1.4 -r1.5 pkgsrc/net/libtorrent-rasterbar/distinfo (expand / switch to unified diff)

--- pkgsrc/net/libtorrent-rasterbar/distinfo 2020/03/20 11:57:43 1.4
+++ pkgsrc/net/libtorrent-rasterbar/distinfo 2020/04/23 10:54:51 1.5
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.4 2020/03/20 11:57:43 nia Exp $ 1$NetBSD: distinfo,v 1.5 2020/04/23 10:54:51 adam Exp $
2 2
3SHA1 (libtorrent-rasterbar-1.2.5.tar.gz) = 2dadbd7b51cb210a3a764f34b391a4b4c2d536ab 3SHA1 (libtorrent-rasterbar-1.2.6.tar.gz) = 3415ef9a87060ceada1013090f24183219cca636
4RMD160 (libtorrent-rasterbar-1.2.5.tar.gz) = c30546490e699f9f92115b4a142b4f1b7e6ba748 4RMD160 (libtorrent-rasterbar-1.2.6.tar.gz) = a50c1ebf97d8f5341f31d310dc6ffe5f907e6abe
5SHA512 (libtorrent-rasterbar-1.2.5.tar.gz) = b907916bb2b4d550a5173783163cb192c31c0db5e25a4807a4701d1e5fa7e0d4fd9f1fb2c89b43f613a750b42816b07576fb773663fbf3cfb2e3e4b9de380f26 5SHA512 (libtorrent-rasterbar-1.2.6.tar.gz) = 78f9120b1b824dac37ec8bd16a29abdfcd7fd6af3c56e0cc9048d74412d000ef5ea1e8421f757eddb914f8bb20de9fb4192d5b8a3f781fa2e1d4f134ea24b1ee
6Size (libtorrent-rasterbar-1.2.5.tar.gz) = 4131979 bytes 6Size (libtorrent-rasterbar-1.2.6.tar.gz) = 4144922 bytes
7SHA1 (patch-include_libtorrent_buffer.hpp) = 365f04a6a4b63f86288119201bfec0b9d9e67bee 7SHA1 (patch-include_libtorrent_buffer.hpp) = 365f04a6a4b63f86288119201bfec0b9d9e67bee