From owner-svn-ports-all@freebsd.org Fri Oct 19 19:26:59 2018 Return-Path: Delivered-To: svn-ports-all@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 0495CFD94B3; Fri, 19 Oct 2018 19:26:59 +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 AA2B58A474; Fri, 19 Oct 2018 19:26:58 +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 A523B134F8; Fri, 19 Oct 2018 19:26:58 +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 w9JJQwu4013683; Fri, 19 Oct 2018 19:26:58 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9JJQwaB013682; Fri, 19 Oct 2018 19:26:58 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810191926.w9JJQwaB013682@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 19 Oct 2018 19:26:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482451 - head/math/libqalculate X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/math/libqalculate X-SVN-Commit-Revision: 482451 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.29 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: Fri, 19 Oct 2018 19:26:59 -0000 Author: jbeich Date: Fri Oct 19 19:26:58 2018 New Revision: 482451 URL: https://svnweb.freebsd.org/changeset/ports/482451 Log: math/libqalculate: unbreak with ICU 63 In file included from Calculator.cc:45: In file included from /usr/local/include/unicode/ucasemap.h:25: /usr/local/include/unicode/localpointer.h:221:40: error: expected ';' at end of declaration list LocalPointer(LocalPointer &&src) U_NOEXCEPT : LocalPointerBase(src.ptr) { ^ /usr/local/include/unicode/localpointer.h:366:36: error: expected ';' at end of declaration list LocalArray(LocalArray &&src) U_NOEXCEPT : LocalPointerBase(src.ptr) { ^ In file included from Calculator.cc:45: /usr/local/include/unicode/ucasemap.h:96:1: error: expected ';' at end of declaration list U_DEFINE_LOCAL_OPEN_POINTER(LocalUCaseMapPointer, UCaseMap, ucasemap_close); ^ /usr/local/include/unicode/localpointer.h:493:60: note: expanded from macro 'U_DEFINE_LOCAL_OPEN_POINTER' LocalPointerClassName(LocalPointerClassName &&src) U_NOEXCEPT \ ^ /usr/local/include/unicode/platform.h:503:23: note: expanded from macro 'U_NOEXCEPT' # define U_NOEXCEPT noexcept ^ Regressed by: https://github.com/unicode-org/icu/commit/35ce5296c1d3 PR: 232300 Reported by: antoine (via exp-run) Modified: head/math/libqalculate/Makefile (contents, props changed) Modified: head/math/libqalculate/Makefile ============================================================================== --- head/math/libqalculate/Makefile Fri Oct 19 19:26:44 2018 (r482450) +++ head/math/libqalculate/Makefile Fri Oct 19 19:26:58 2018 (r482451) @@ -17,7 +17,7 @@ LIB_DEPENDS= libicuuc.so:devel/icu \ libgmp.so:math/gmp \ libmpfr.so:math/mpfr -USES= compiler:c++11-lang gettext gmake gnome iconv libtool \ +USES= compiler:c++14-lang gettext gmake gnome iconv libtool \ localbase ncurses pathfix pkgconfig readline:port USE_GNOME= intltool libxml2 USE_LDCONFIG= yes