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 D71BB1382C5 for ; Fri, 1 Jan 2021 22:22:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 154ABE0824; Fri, 1 Jan 2021 22:22:07 +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 EC000E081B for ; Fri, 1 Jan 2021 22:22:06 +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 B6559335CCF for ; Fri, 1 Jan 2021 22:22:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45754C3 for ; Fri, 1 Jan 2021 22:22:04 +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: <1609539713.85d706b3d2841c4bc90293f8e527ab087c4832ce.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/bcg729/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/bcg729/bcg729-1.0.4-r1.ebuild media-libs/bcg729/bcg729-1.1.1.ebuild X-VCS-Directories: media-libs/bcg729/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 85d706b3d2841c4bc90293f8e527ab087c4832ce X-VCS-Branch: master Date: Fri, 1 Jan 2021 22:22:04 +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: cda5f378-c9e9-4731-9123-12b34f274de3 X-Archives-Hash: aeadf9bac3c8b78536f40555f5defd29 commit: 85d706b3d2841c4bc90293f8e527ab087c4832ce Author: Sam James gentoo org> AuthorDate: Fri Jan 1 06:20:38 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 1 22:21:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85d706b3 media-libs/bcg729: don't use -Werror Closes: https://bugs.gentoo.org/751301 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> media-libs/bcg729/bcg729-1.0.4-r1.ebuild | 7 ++++++- media-libs/bcg729/bcg729-1.1.1.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/media-libs/bcg729/bcg729-1.0.4-r1.ebuild b/media-libs/bcg729/bcg729-1.0.4-r1.ebuild index ce3201c782e..04926f70bcf 100644 --- a/media-libs/bcg729/bcg729-1.0.4-r1.ebuild +++ b/media-libs/bcg729/bcg729-1.0.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -20,6 +20,11 @@ RDEPEND=" S=${WORKDIR}/${P/_/-} DOCS=( AUTHORS NEWS README.md ) +src_prepare() { + sed -i -e '/-Werror/d' CMakeLists.txt || die + cmake-utils_src_prepare +} + src_configure() { mycmakeargs=( -DENABLE_STATIC=$(usex static-libs) diff --git a/media-libs/bcg729/bcg729-1.1.1.ebuild b/media-libs/bcg729/bcg729-1.1.1.ebuild index e724197e7cf..3a492a09a32 100644 --- a/media-libs/bcg729/bcg729-1.1.1.ebuild +++ b/media-libs/bcg729/bcg729-1.1.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -17,6 +17,11 @@ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~x86" RDEPEND="!media-plugins/mediastreamer-bcg729" +src_prepare() { + sed -i -e 's/-Werror //' CMakeLists.txt || die + cmake_src_prepare +} + src_configure() { local mycmakeargs=( -DENABLE_STATIC=no