From owner-svn-ports-head@freebsd.org Fri Sep 16 07:06:15 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00A8CBDC457; Fri, 16 Sep 2016 07:06:15 +0000 (UTC) (envelope-from antoine@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 mx1.freebsd.org (Postfix) with ESMTPS id D2A80D07; Fri, 16 Sep 2016 07:06:14 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G76ERn091620; Fri, 16 Sep 2016 07:06:14 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G76EuM091619; Fri, 16 Sep 2016 07:06:14 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609160706.u8G76EuM091619@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 16 Sep 2016 07:06:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422243 - head/net-p2p/qbittorrent X-SVN-Group: ports-head 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.23 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, 16 Sep 2016 07:06:15 -0000 Author: antoine Date: Fri Sep 16 07:06:13 2016 New Revision: 422243 URL: https://svnweb.freebsd.org/changeset/ports/422243 Log: Mark BROKEN: fails to build In file included from app/application.cpp:70: In file included from ./base/bittorrent/session.h:43: ./base/bittorrent/torrentinfo.h:50:37: error: no type named 'intrusive_ptr' in namespace 'boost' explicit TorrentInfo(boost::intrusive_ptr nativeInfo = boost::intrusive_ptr()); ~~~~~~~^ ./base/bittorrent/torrentinfo.h:50:50: error: expected ')' explicit TorrentInfo(boost::intrusive_ptr nativeInfo = boost::intrusive_ptr()); ^ ./base/bittorrent/torrentinfo.h:50:29: note: to match this '(' explicit TorrentInfo(boost::intrusive_ptr nativeInfo = boost::intrusive_ptr()); ^ ./base/bittorrent/torrentinfo.h:80:16: error: no type named 'intrusive_ptr' in namespace 'boost' boost::intrusive_ptr nativeInfo() const; ~~~~~~~^ ./base/bittorrent/torrentinfo.h:80:29: error: expected member name or ';' after declaration specifiers boost::intrusive_ptr nativeInfo() const; ~~~~~~~~~~~~~~~~~~~~^ ./base/bittorrent/torrentinfo.h:83:16: error: no type named 'intrusive_ptr' in namespace 'boost' boost::intrusive_ptr m_nativeInfo; ~~~~~~~^ ./base/bittorrent/torrentinfo.h:83:29: error: expected member name or ';' after declaration specifiers boost::intrusive_ptr m_nativeInfo; ~~~~~~~~~~~~~~~~~~~~^ In file included from app/application.cpp:70: ./base/bittorrent/session.h:291:63: error: no matching constructor for initialization of 'BitTorrent::TorrentInfo' const TorrentInfo &torrentInfo = TorrentInfo(), ^ ./base/bittorrent/torrentinfo.h:51:9: note: candidate constructor not viable: requires single argument 'other', but no arguments were provided TorrentInfo(const TorrentInfo &other); ^ In file included from app/application.cpp:71: ./base/bittorrent/torrenthandle.h:386:36: error: field has incomplete type 'libtorrent::torrent_status' libtorrent::torrent_status m_nativeStatus; ^ /usr/local/include/libtorrent/torrent_handle.hpp:72:9: note: forward declaration of 'libtorrent::torrent_status' struct torrent_status; ^ Reported by: pkg-fallout Modified: head/net-p2p/qbittorrent/Makefile Modified: head/net-p2p/qbittorrent/Makefile ============================================================================== --- head/net-p2p/qbittorrent/Makefile Fri Sep 16 07:01:19 2016 (r422242) +++ head/net-p2p/qbittorrent/Makefile Fri Sep 16 07:06:13 2016 (r422243) @@ -11,6 +11,8 @@ COMMENT?= Bittorrent client using Qt4 an LICENSE= GPLv2 +BROKEN= fails to build + # ABI versions specified on purpose for libtorrent-rasterbar LIB_DEPENDS= libtorrent-rasterbar.so:net-p2p/libtorrent-rasterbar \ libboost_system.so:devel/boost-libs