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 C59C31382C5 for ; Fri, 23 Apr 2021 06:18:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD89EE0893; Fri, 23 Apr 2021 06:18:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 56861E0893 for ; Fri, 23 Apr 2021 06:18:05 +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 0A06A340FED for ; Fri, 23 Apr 2021 06:18:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69A6C647 for ; Fri, 23 Apr 2021 06:18:02 +0000 (UTC) From: "Brian Gloyer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Gloyer" Message-ID: <1619158423.3ee8cf71ffe42d630b5f0612a6efa9dd648a2b2e.brian.gloyer@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/gsl-lite/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild X-VCS-Directories: dev-cpp/gsl-lite/ X-VCS-Committer: brian.gloyer X-VCS-Committer-Name: Brian Gloyer X-VCS-Revision: 3ee8cf71ffe42d630b5f0612a6efa9dd648a2b2e X-VCS-Branch: dev Date: Fri, 23 Apr 2021 06:18:02 +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: 1c48cf9f-8885-45a4-84b5-6b232682a1aa X-Archives-Hash: a09dcab4499ee38d3165652117d880be commit: 3ee8cf71ffe42d630b5f0612a6efa9dd648a2b2e Author: brian gloyer gmail com> AuthorDate: Fri Apr 23 06:10:05 2021 +0000 Commit: Brian Gloyer gmail com> CommitDate: Fri Apr 23 06:13:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3ee8cf71 dev-cpp/gsl-lite: Drop -Werror Closes: https://bugs.gentoo.org/783981 Closes: https://bugs.gentoo.org/784014 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: brian gloyer gmail.com> dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild b/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild index ebd5b7b41..b2b2c3933 100644 --- a/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild +++ b/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild @@ -24,4 +24,6 @@ src_configure() { -DGSL_LITE_OPT_BUILD_TESTS=$(usex test) ) cmake_src_configure + + sed -i -e 's/"-*Werror"//g' test/MakeTestTarget.cmake || die }