From owner-svn-ports-head@freebsd.org Fri Apr 13 13:05:18 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0159DF874AB; Fri, 13 Apr 2018 13:05:18 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A38197A2B5; Fri, 13 Apr 2018 13:05:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9A7101A1CB; Fri, 13 Apr 2018 13:05:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3DD5HUg029595; Fri, 13 Apr 2018 13:05:17 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3DD5HBc029592; Fri, 13 Apr 2018 13:05:17 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201804131305.w3DD5HBc029592@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 13 Apr 2018 13:05:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467238 - head/net-p2p/libtorrent-rasterbar X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/net-p2p/libtorrent-rasterbar X-SVN-Commit-Revision: 467238 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Apr 2018 13:05:18 -0000 Author: jbeich Date: Fri Apr 13 13:05:17 2018 New Revision: 467238 URL: https://svnweb.freebsd.org/changeset/ports/467238 Log: net-p2p/libtorrent-rasterbar: unbreak with boost 1.67 In file included from disk_buffer_holder.cpp:34: In file included from ../include/libtorrent/aux_/session_impl.hpp:73: ../include/libtorrent/ip_filter.hpp:168:34: error: no member named 'prior' in namespace 'boost'; did you mean 'perror'? boost::uint32_t last_access = boost::prior(j)->access; ^~~~~~~~~~~~ perror /usr/include/stdio.h:266:7: note: 'perror' declared here void perror(const char *); ^ In file included from disk_buffer_holder.cpp:34: In file included from ../include/libtorrent/aux_/session_impl.hpp:73: ../include/libtorrent/ip_filter.hpp:174:43: error: no member named 'prior' in namespace 'boost'; did you mean 'perror'? else if (i != m_access_list.begin() && boost::prior(i)->access == flags) ^~~~~~~~~~~~ perror /usr/include/stdio.h:266:7: note: 'perror' declared here void perror(const char *); ^ In file included from disk_buffer_holder.cpp:34: In file included from ../include/libtorrent/aux_/session_impl.hpp:73: ../include/libtorrent/ip_filter.hpp:182:43: error: no member named 'next' in namespace 'boost' if (i != j) m_access_list.erase(boost::next(i), j); ~~~~~~~^ kademlia/routing_table.cpp:716:26: error: no member named 'next' in namespace 'boost'; did you mean 'std::next'? bool const can_split = (boost::next(i) == m_buckets.end() ^~~~~~~~~~~ std::next /usr/include/c++/v1/iterator:519:1: note: 'std::next' declared here next(_ForwardIter __x, ^ kademlia/routing_table.cpp:719:40: error: no member named 'prior' in namespace 'boost' && (i == m_buckets.begin() || boost::prior(i)->live_nodes.size() > 1); ~~~~~~~^ PR: 227427 Obtained from: upstream Modified: head/net-p2p/libtorrent-rasterbar/Makefile (contents, props changed) head/net-p2p/libtorrent-rasterbar/distinfo (contents, props changed) Modified: head/net-p2p/libtorrent-rasterbar/Makefile ============================================================================== --- head/net-p2p/libtorrent-rasterbar/Makefile Fri Apr 13 12:31:30 2018 (r467237) +++ head/net-p2p/libtorrent-rasterbar/Makefile Fri Apr 13 13:05:17 2018 (r467238) @@ -6,6 +6,9 @@ PORTVERSION= 1.1.6 CATEGORIES?= net-p2p ipv6 MASTER_SITES= https://github.com/arvidn/libtorrent/releases/download/libtorrent-${PORTVERSION:S/./_/g}/ +PATCH_SITES= https://github.com/arvidn/libtorrent/commit/ +PATCHFILES= 64d6b4900448.patch:-p1 3a1b0f1abb1d.patch:-p1 + MAINTAINER= rezny@FreeBSD.org COMMENT?= C++ library implementing a BitTorrent client Modified: head/net-p2p/libtorrent-rasterbar/distinfo ============================================================================== --- head/net-p2p/libtorrent-rasterbar/distinfo Fri Apr 13 12:31:30 2018 (r467237) +++ head/net-p2p/libtorrent-rasterbar/distinfo Fri Apr 13 13:05:17 2018 (r467238) @@ -1,3 +1,7 @@ TIMESTAMP = 1514730099 SHA256 (libtorrent-rasterbar-1.1.6.tar.gz) = b7c74d004bd121bd6e9f8975ee1fec3c95c74044c6a6250f6b07f259f55121ef SIZE (libtorrent-rasterbar-1.1.6.tar.gz) = 3846476 +SHA256 (64d6b4900448.patch) = 0c3aa08437905c74f0a153cf73d551de5ab3dff57df9193baa4fe724c2039034 +SIZE (64d6b4900448.patch) = 902 +SHA256 (3a1b0f1abb1d.patch) = 7c63f165230657620125abfb842f86d5e3f590a0b3ddf441d02589ec9b292eba +SIZE (3a1b0f1abb1d.patch) = 784