From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A840A1382C5 for ; Mon, 19 Feb 2018 19:43:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66364E0C9A; Mon, 19 Feb 2018 19:43:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4255CE0C9C for ; Mon, 19 Feb 2018 19:43:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EC88F335C5B for ; Mon, 19 Feb 2018 19:43:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2530244 for ; Mon, 19 Feb 2018 19:42:42 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1519069247.26131763888b487694813b33de0eda81a6caf998.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/xdmf2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/xdmf2/xdmf2-1.0_p141226-r1.ebuild sci-libs/xdmf2/xdmf2-1.0_p141226-r2.ebuild X-VCS-Directories: sci-libs/xdmf2/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 26131763888b487694813b33de0eda81a6caf998 X-VCS-Branch: master Date: Mon, 19 Feb 2018 19:42:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5edb4ea0-021c-43e9-b6c1-4936489b346e X-Archives-Hash: 7f43c9e4785b44fe2c4d488e452099eb commit: 26131763888b487694813b33de0eda81a6caf998 Author: David Seifert gentoo org> AuthorDate: Mon Feb 19 18:17:21 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 19 19:40:47 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26131763 sci-libs/xdmf2: Always build in C++14 mode Closes: https://bugs.gentoo.org/619604 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sci-libs/xdmf2/xdmf2-1.0_p141226-r1.ebuild | 7 +++++-- sci-libs/xdmf2/xdmf2-1.0_p141226-r2.ebuild | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/sci-libs/xdmf2/xdmf2-1.0_p141226-r1.ebuild b/sci-libs/xdmf2/xdmf2-1.0_p141226-r1.ebuild index fc04d4922d9..a0cf89a2529 100644 --- a/sci-libs/xdmf2/xdmf2-1.0_p141226-r1.ebuild +++ b/sci-libs/xdmf2/xdmf2-1.0_p141226-r1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 PYTHON_COMPAT=( python2_7 ) -inherit cmake-utils multilib python-single-r1 +inherit cmake-utils flag-o-matic multilib python-single-r1 DESCRIPTION="eXtensible Data Model and Format" HOMEPAGE="http://xdmf.org/index.php/Main_Page" @@ -49,6 +49,9 @@ src_prepare() { } src_configure() { + # bug 619604 + append-cxxflags -std=c++14 + local mycmakeargs=( $(cmake-utils_use doc XDMF_BUILD_DOCUMENTATION) $(cmake-utils_use_build test TESTING) diff --git a/sci-libs/xdmf2/xdmf2-1.0_p141226-r2.ebuild b/sci-libs/xdmf2/xdmf2-1.0_p141226-r2.ebuild index c7d39a5b0c8..605039d40cf 100644 --- a/sci-libs/xdmf2/xdmf2-1.0_p141226-r2.ebuild +++ b/sci-libs/xdmf2/xdmf2-1.0_p141226-r2.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 PYTHON_COMPAT=( python2_7 ) -inherit cmake-utils python-single-r1 +inherit cmake-utils flag-o-matic python-single-r1 DESCRIPTION="eXtensible Data Model and Format" HOMEPAGE="http://xdmf.org/index.php/Main_Page" @@ -53,6 +53,9 @@ src_prepare() { } src_configure() { + # bug 619604 + append-cxxflags -std=c++14 + local mycmakeargs=( -DBUILD_SHARED_LIBS=1 -DXDMF_BUILD_DOCUMENTATION=$(usex doc)