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 9CC7F158092 for ; Sun, 19 Sep 2021 05:42:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA936E0940; Sun, 19 Sep 2021 05:42:55 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CB7FDE0940 for ; Sun, 19 Sep 2021 05:42:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8F6F6343425 for ; Sun, 19 Sep 2021 05:42:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C9492A for ; Sun, 19 Sep 2021 05:42:53 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1632030160.cf2415df1ebc1296ae6e59dc58f3c08d297b79ab.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/ecasound/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/ecasound/ecasound-2.9.3.ebuild X-VCS-Directories: media-sound/ecasound/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cf2415df1ebc1296ae6e59dc58f3c08d297b79ab X-VCS-Branch: master Date: Sun, 19 Sep 2021 05:42:53 +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: 048e0673-d6ea-4453-b303-700140818187 X-Archives-Hash: 80b5c2ea82231c8b062ca9e5e561d4fc commit: cf2415df1ebc1296ae6e59dc58f3c08d297b79ab Author: Kerin Millar plushkava net> AuthorDate: Sun Sep 19 05:24:25 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 19 05:42:40 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf2415df media-sound/ecasound: build with -std=c++11 To specify the c++98 dialect is no longer compatible with lilv. Closes: https://bugs.gentoo.org/751583 Closes: https://bugs.gentoo.org/787620 Signed-off-by: Kerin Millar plushkava.net> Signed-off-by: Sam James gentoo.org> media-sound/ecasound/ecasound-2.9.3.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/media-sound/ecasound/ecasound-2.9.3.ebuild b/media-sound/ecasound/ecasound-2.9.3.ebuild index 7cdadd6983e..3b3f4545b17 100644 --- a/media-sound/ecasound/ecasound-2.9.3.ebuild +++ b/media-sound/ecasound/ecasound-2.9.3.ebuild @@ -35,6 +35,7 @@ RDEPEND="sys-libs/readline:0= sndfile? ( media-libs/libsndfile:= )" DEPEND="${RDEPEND} virtual/pkgconfig" +BDEPEND="sys-apps/ed" PATCHES=( "${FILESDIR}"/${P}-ldflags.patch "${FILESDIR}"/${PN}-2.9.1-tinfo.patch @@ -47,10 +48,9 @@ pkg_setup() { src_prepare() { default -# if use python ; then -# sed -i -e "s:\$(ecasoundc_libs):\0 $(python_get_library -l):" \ -# pyecasound/Makefile.am || die "sed failed" -# fi + # https://bugs.gentoo.org/787620 + printf '%s\n' H '/^EXTRACXXFLAGS="-std=c++98"$/s/98/11/' w q | + ed -s configure.ac || die "Couldn't patch EXTRACXXFLAGS in configure.ac" eautoreconf }