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 15EB615803E for ; Fri, 5 Jan 2024 13:31:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92A8B2BC1C9; Fri, 5 Jan 2024 13:31:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 41DFD2BC1C9 for ; Fri, 5 Jan 2024 13:31:26 +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 2AE6D343105 for ; Fri, 5 Jan 2024 13:31:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F75E14A8 for ; Fri, 5 Jan 2024 13:31:23 +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: <1704461086.c552aae1e4c2dc88ad964fd4134505c2cdf0d26e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/gperf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/gperf/gperf-3.1-r2.ebuild X-VCS-Directories: dev-util/gperf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c552aae1e4c2dc88ad964fd4134505c2cdf0d26e X-VCS-Branch: master Date: Fri, 5 Jan 2024 13:31:23 +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: bb0e6e86-9ea9-4c33-b817-6243a72b31c9 X-Archives-Hash: ede5fec1c8261ada57e4a17610e2989b commit: c552aae1e4c2dc88ad964fd4134505c2cdf0d26e Author: Sam James gentoo org> AuthorDate: Fri Jan 5 13:24:08 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 5 13:24:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c552aae1 dev-util/gperf: filter LTO, disable strict aliasing Closes: https://bugs.gentoo.org/858377 Signed-off-by: Sam James gentoo.org> dev-util/gperf/gperf-3.1-r2.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/dev-util/gperf/gperf-3.1-r2.ebuild b/dev-util/gperf/gperf-3.1-r2.ebuild new file mode 100644 index 000000000000..f5fd37924abf --- /dev/null +++ b/dev-util/gperf/gperf-3.1-r2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit flag-o-matic + +DESCRIPTION="A perfect hash function generator" +HOMEPAGE="https://www.gnu.org/software/gperf/" +SRC_URI="mirror://gnu/gperf/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" + +PATCHES=( + "${FILESDIR}"/${P}-strncmp-decl-mismatch.patch + "${FILESDIR}"/${P}-clang-16-wregister.patch + "${FILESDIR}"/${P}-parallel-tests.patch +) + +src_prepare() { + sed -i \ + -e "/^CPPFLAGS /s:=:+=:" \ + */Makefile.in || die #444078 + + default +} + +src_configure() { + # Aliasing violation (bug #858377) + append-flags -fno-strict-aliasing + filter-lto + + econf --cache-file="${S}"/config.cache +}