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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C1C07158094 for ; Mon, 3 Oct 2022 09:57:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA6A5E08A0; Mon, 3 Oct 2022 09:57:34 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D6C95E08A0 for ; Mon, 3 Oct 2022 09:57:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DAE61340C58 for ; Mon, 3 Oct 2022 09:57:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 355D65A0 for ; Mon, 3 Oct 2022 09:57:31 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1664791033.78cccf372d0748efd8e99af373e5cd2487c4bebc.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/wv/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/wv/wv-1.2.9-r3.ebuild X-VCS-Directories: app-text/wv/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 78cccf372d0748efd8e99af373e5cd2487c4bebc X-VCS-Branch: master Date: Mon, 3 Oct 2022 09:57:31 +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: da74ef72-28ac-4d89-9ba9-e2e54d278e3a X-Archives-Hash: 17391669bbf0233bbf2b869b8e9a8e53 commit: 78cccf372d0748efd8e99af373e5cd2487c4bebc Author: David Seifert gentoo org> AuthorDate: Mon Oct 3 09:57:13 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Oct 3 09:57:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78cccf37 app-text/wv: prevent suppression of POSIX decls Closes: https://bugs.gentoo.org/874396 Signed-off-by: David Seifert gentoo.org> app-text/wv/wv-1.2.9-r3.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-text/wv/wv-1.2.9-r3.ebuild b/app-text/wv/wv-1.2.9-r3.ebuild index cf99d1c2a144..c2a286d095f4 100644 --- a/app-text/wv/wv-1.2.9-r3.ebuild +++ b/app-text/wv/wv-1.2.9-r3.ebuild @@ -36,11 +36,16 @@ PATCHES=( src_prepare() { default + # remove -ansi flag, since it disables POSIX + # function declarations (bug #874396) + sed -i -e 's/-ansi//' configure || die + if ! use tools; then sed -i -e '/bin_/d' GNUmakefile.am || die sed -i -e '/SUBDIRS/d' GNUmakefile.am || die sed -i -e '/\/GNUmakefile/d' configure.ac || die sed -i -e '/wv[[:upper:]]/d' configure.ac || die + sed -i -e 's/-ansi//' configure.ac || die # automake-1.13 fix, bug #467620 sed -i -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' configure.ac || die