From owner-svn-ports-all@freebsd.org Mon Sep 25 00:57:36 2017 Return-Path: Delivered-To: svn-ports-all@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 AD1B7E06052; Mon, 25 Sep 2017 00:57:36 +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 mx1.freebsd.org (Postfix) with ESMTPS id 8771C687AF; Mon, 25 Sep 2017 00:57:36 +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 v8P0vZiq055010; Mon, 25 Sep 2017 00:57:35 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8P0vZNa055009; Mon, 25 Sep 2017 00:57:35 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201709250057.v8P0vZNa055009@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 25 Sep 2017 00:57:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450563 - head/databases/clickhouse X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/databases/clickhouse X-SVN-Commit-Revision: 450563 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Sep 2017 00:57:36 -0000 Author: jbeich Date: Mon Sep 25 00:57:35 2017 New Revision: 450563 URL: https://svnweb.freebsd.org/changeset/ports/450563 Log: databases/clickhouse: mark BROKEN after r450560 In file included from dbms/src/Storages/MergeTree/MergeTreeDataSelectExecutor.cpp:19: In file included from contrib/libboost/boost_1_65_0/boost/rational.hpp:82: contrib/libboost/boost_1_65_0/boost/integer/common_factor_rt.hpp:447:44: error: no member named 'min' in 'std::__1::numeric_limits<__uint128_t>' if(a == (std::numeric_limits::min)()) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ contrib/libboost/boost_1_65_0/boost/rational.hpp:854:26: note: in instantiation of function template specialization 'boost::integer::gcd' requested here IntType g = integer::gcd(num, den); ^ contrib/libboost/boost_1_65_0/boost/rational.hpp:163:8: note: in instantiation of member function 'boost::rational::normalize' requested here normalize(); ^ contrib/libboost/boost_1_65_0/boost/rational.hpp:251:23: note: in instantiation of function template specialization 'boost::rational::rational' requested here return *this = rational(static_cast(n), static_cast(d)); ^ contrib/libboost/boost_1_65_0/boost/rational.hpp:211:8: note: in instantiation of function template specialization 'boost::rational::assign' requested here assign(n, static_cast(1)); ^ dbms/src/Storages/MergeTree/MergeTreeDataSelectExecutor.cpp:122:16: note: in instantiation of function template specialization 'boost::rational::rational' requested here return 1; ^ [...] PR: 222439 Pointy hat to: jbeich (bundled boost didn't help) Modified: head/databases/clickhouse/Makefile (contents, props changed) Modified: head/databases/clickhouse/Makefile ============================================================================== --- head/databases/clickhouse/Makefile Mon Sep 25 00:51:02 2017 (r450562) +++ head/databases/clickhouse/Makefile Mon Sep 25 00:57:35 2017 (r450563) @@ -12,6 +12,8 @@ CATEGORIES= databases MAINTAINER= proler@gmail.com COMMENT= ClickHouse is an column-oriented database management system +BROKEN= fails to build with boost 1.65 (bundled & system), see bug 222439 + LICENSE= APACHE20 BUILD_DEPENDS= bash:shells/bash \ @@ -22,6 +24,7 @@ LIB_DEPENDS= libtcmalloc.so:devel/google-perftools \ libodbc.so:databases/unixODBC \ libltdl.so:devel/libltdl \ libicudata.so:devel/icu \ + libboost_program_options.so:devel/boost-libs \ libzookeeper_mt.so:devel/libzookeeper \ libre2.so:devel/re2 \ libdouble-conversion.so:devel/libdouble-conversion \ @@ -42,9 +45,7 @@ BROKEN_FreeBSD_10= Builds but does not work USES= compiler:c++14-lang cmake iconv mysql ssl readline USE_LDCONFIG= yes -# Bug 222439: use bundled boost 1.65.0 to avoid 1.65.1 bustage CMAKE_ARGS= -DUNBUNDLED=1 \ - -DUSE_INTERNAL_BOOST_LIBRARY=1 \ -DUSE_STATIC_LIBRARIES=0 \ -DNO_WERROR=1 \ -DENABLE_TESTS=0 \