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 4DEAF13835D for ; Fri, 23 Apr 2021 08:48:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9554BE0957; Fri, 23 Apr 2021 08:48:00 +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 73EF2E0956 for ; Fri, 23 Apr 2021 08:48:00 +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 25F6534137A for ; Fri, 23 Apr 2021 08:47:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A9C474A for ; Fri, 23 Apr 2021 08:47:39 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1619158423.3ee8cf71ffe42d630b5f0612a6efa9dd648a2b2e.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: 3ee8cf71ffe42d630b5f0612a6efa9dd648a2b2e X-VCS-Branch: master Date: Fri, 23 Apr 2021 08:47:39 +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: 19e09d09-cf96-41d7-a3fe-64e85dba9afb X-Archives-Hash: b2d0f21854e31eaa249f8280aade56d9 commit: 3ee8cf71ffe42d630b5f0612a6efa9dd648a2b2e Author: brian gloyer gmail com> AuthorDate: Fri Apr 23 06:10:05 2021 +0000 Commit: Haelwenn Monnier hacktivis me> 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 }