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 40581138334 for ; Tue, 12 Feb 2019 13:19:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 341CAE0822; Tue, 12 Feb 2019 13:19:34 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 07871E0822 for ; Tue, 12 Feb 2019 13:19:33 +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 A3DC133BEE5 for ; Tue, 12 Feb 2019 13:19:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5223F53E for ; Tue, 12 Feb 2019 13:19:31 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1549977560.0bbf3625a6d486b9a6484c7f0418d1c6d4d3136c.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/sonic-visualiser/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/sonic-visualiser/sonic-visualiser-3.1.1.ebuild X-VCS-Directories: media-sound/sonic-visualiser/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 0bbf3625a6d486b9a6484c7f0418d1c6d4d3136c X-VCS-Branch: master Date: Tue, 12 Feb 2019 13:19:31 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 25164fcd-82f1-4cab-9db7-254061451b82 X-Archives-Hash: 716070795bb5bed7f6fcac775add355d commit: 0bbf3625a6d486b9a6484c7f0418d1c6d4d3136c Author: Alexis Ballier gentoo org> AuthorDate: Tue Feb 12 13:18:45 2019 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Tue Feb 12 13:19:20 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bbf3625 media-sound/sonic-visualiser: build in c++14 mode (required by capnproto 0.7) Package-Manager: Portage-2.3.60, Repoman-2.3.12 Signed-off-by: Alexis Ballier gentoo.org> media-sound/sonic-visualiser/sonic-visualiser-3.1.1.ebuild | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/media-sound/sonic-visualiser/sonic-visualiser-3.1.1.ebuild b/media-sound/sonic-visualiser/sonic-visualiser-3.1.1.ebuild index 264d383f4b8..788100ee415 100644 --- a/media-sound/sonic-visualiser/sonic-visualiser-3.1.1.ebuild +++ b/media-sound/sonic-visualiser/sonic-visualiser-3.1.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -49,6 +49,7 @@ RDEPEND=" DEPEND="${RDEPEND} dev-qt/qttest:5 virtual/pkgconfig + sys-devel/autoconf-archive " REQUIRED_USE="|| ( jack pulseaudio portaudio )" @@ -77,6 +78,12 @@ src_prepare() { use portaudio || sv_disable_opt portaudio use pulseaudio || sv_disable_opt libpulse + # capnproto 0.7 requires c++14 now + sed -e 's/AX_CXX_COMPILE_STDCXX_11/AX_CXX_COMPILE_STDCXX_14/g' \ + -i configure.ac \ + -i */configure.ac \ + || die + eautoreconf # Those need to be regenerated as they must match current capnproto version @@ -92,6 +99,10 @@ src_configure() { export QMAKE="$(qt5_get_bindir)"/qmake econf eqmake5 -r sonic-visualiser.pro + sed -e 's/std=gnu++11/std=gnu++14/g' \ + -i Makefile.* \ + -i checker/Makefile.* \ + || die } src_test() {