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 C944B13835D for ; Mon, 19 Apr 2021 08:04:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DE97E0871; Mon, 19 Apr 2021 08:04:36 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C5605E0871 for ; Mon, 19 Apr 2021 08:04:35 +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 9BD41340E95 for ; Mon, 19 Apr 2021 08:04:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26C8B722 for ; Mon, 19 Apr 2021 08:04:21 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1618794931.556d223d1e4531cb91e44a21bba602ac92f2a25d.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sci-mathematics/why3/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sci-mathematics/why3/why3-1.3.3.ebuild sci-mathematics/why3/why3-1.4.0.ebuild X-VCS-Directories: sci-mathematics/why3/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 556d223d1e4531cb91e44a21bba602ac92f2a25d X-VCS-Branch: master Date: Mon, 19 Apr 2021 08:04:21 +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: 0d7d8a47-b274-4bfd-952d-6a69b93a6324 X-Archives-Hash: 4ff1d8073e17eb9a9741c9d86fbd66ec commit: 556d223d1e4531cb91e44a21bba602ac92f2a25d Author: François-Xavier Carton gmail com> AuthorDate: Mon Apr 19 01:03:43 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Mon Apr 19 01:15:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=556d223d sci-mathematics/why3: respect CFLAGS & LDFLAGS Closes: https://bugs.gentoo.org/781650 Signed-off-by: François-Xavier Carton gmail.com> sci-mathematics/why3/why3-1.3.3.ebuild | 3 +++ sci-mathematics/why3/why3-1.4.0.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/sci-mathematics/why3/why3-1.3.3.ebuild b/sci-mathematics/why3/why3-1.3.3.ebuild index b5665dc3a..b710f8a1a 100644 --- a/sci-mathematics/why3/why3-1.3.3.ebuild +++ b/sci-mathematics/why3/why3-1.3.3.ebuild @@ -39,6 +39,9 @@ src_prepare() { mv doc/why.1 doc/why3.1 || die mv configure.in configure.ac || die sed -i 's/configure\.in/configure.ac/g' Makefile.in || die + sed -e '/^lib\/why3[a-z]*\$(EXE):/{n;s/-Wall/$(CFLAGS) $(LDFLAGS)/}' \ + -e '/^%.o: %.c/{n;s/\$(CC).*-o/$(CC) $(CFLAGS) -o/}' \ + -i Makefile.in || die eautoreconf eapply_user } diff --git a/sci-mathematics/why3/why3-1.4.0.ebuild b/sci-mathematics/why3/why3-1.4.0.ebuild index d85c95cfc..7a1ab9ca4 100644 --- a/sci-mathematics/why3/why3-1.4.0.ebuild +++ b/sci-mathematics/why3/why3-1.4.0.ebuild @@ -41,6 +41,9 @@ DOCS=( CHANGES.md README.md ) src_prepare() { mv configure.in configure.ac || die sed -i 's/configure\.in/configure.ac/g' Makefile.in || die + sed -e '/^lib\/why3[a-z]*\$(EXE):/{n;s/-Wall/$(CFLAGS) $(LDFLAGS)/}' \ + -e '/^%.o: %.c/{n;s/\$(CC).*-o/$(CC) $(CFLAGS) -o/}' \ + -i Makefile.in || die eautoreconf eapply_user }