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 9F6CE1382C5 for ; Mon, 19 Feb 2018 19:43:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64E94E0CA8; Mon, 19 Feb 2018 19:43:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 31F72E0CAA for ; Mon, 19 Feb 2018 19:43:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D233C335C54 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 8AC41241 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: <1519069238.f33409c4dd10e9de91ddfacf032c0f8e625b986d.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opencollada/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/opencollada/opencollada-1.6.36.ebuild media-libs/opencollada/opencollada-1.6.58.ebuild media-libs/opencollada/opencollada-1.6.62.ebuild X-VCS-Directories: media-libs/opencollada/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: f33409c4dd10e9de91ddfacf032c0f8e625b986d 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: 5cc99d52-bc72-412e-940f-e63a40a70a95 X-Archives-Hash: e7d661247a578d6c0035c3b1d0b0fdec commit: f33409c4dd10e9de91ddfacf032c0f8e625b986d 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:38 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f33409c4 media-libs/opencollada: Always build in C++14 mode Closes: https://bugs.gentoo.org/619670 Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-libs/opencollada/opencollada-1.6.36.ebuild | 7 +++++-- media-libs/opencollada/opencollada-1.6.58.ebuild | 7 +++++-- media-libs/opencollada/opencollada-1.6.62.ebuild | 5 ++++- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/media-libs/opencollada/opencollada-1.6.36.ebuild b/media-libs/opencollada/opencollada-1.6.36.ebuild index 4646fb614e5..8389c5d0edd 100644 --- a/media-libs/opencollada/opencollada-1.6.36.ebuild +++ b/media-libs/opencollada/opencollada-1.6.36.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit cmake-utils versionator +inherit cmake-utils flag-o-matic versionator DESCRIPTION="Stream based read/write library for COLLADA files" HOMEPAGE="http://www.opencollada.org/" @@ -45,6 +45,9 @@ src_prepare() { } src_configure() { + # bug 619670 + append-cxxflags -std=c++14 + local mycmakeargs=( -DUSE_SHARED=ON -DUSE_STATIC=$(usex static-libs) diff --git a/media-libs/opencollada/opencollada-1.6.58.ebuild b/media-libs/opencollada/opencollada-1.6.58.ebuild index d3037374c6d..77649f9a662 100644 --- a/media-libs/opencollada/opencollada-1.6.58.ebuild +++ b/media-libs/opencollada/opencollada-1.6.58.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit cmake-utils versionator +inherit cmake-utils flag-o-matic versionator DESCRIPTION="Stream based read/write library for COLLADA files" HOMEPAGE="http://www.opencollada.org/" @@ -43,6 +43,9 @@ src_prepare() { } src_configure() { + # bug 619670 + append-cxxflags -std=c++14 + local mycmakeargs=( -DUSE_SHARED=ON -DUSE_STATIC=$(usex static-libs) diff --git a/media-libs/opencollada/opencollada-1.6.62.ebuild b/media-libs/opencollada/opencollada-1.6.62.ebuild index 4a0d0c352bd..554964a4b87 100644 --- a/media-libs/opencollada/opencollada-1.6.62.ebuild +++ b/media-libs/opencollada/opencollada-1.6.62.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit cmake-utils versionator +inherit cmake-utils flag-o-matic versionator DESCRIPTION="Stream based read/write library for COLLADA files" HOMEPAGE="http://www.opencollada.org/" @@ -40,6 +40,9 @@ src_prepare() { } src_configure() { + # bug 619670 + append-cxxflags -std=c++14 + local mycmakeargs=( -DUSE_SHARED=ON -DUSE_STATIC=$(usex static-libs)