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 C2081158020 for ; Sat, 3 Dec 2022 13:27:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1687FE0D71; Sat, 3 Dec 2022 13:27:38 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 02172E0D71 for ; Sat, 3 Dec 2022 13:27:38 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E2755335DCD for ; Sat, 3 Dec 2022 13:27:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 668B8692 for ; Sat, 3 Dec 2022 13:27:35 +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: <1670074044.6cbe4c3ed96b51d68b37610dfc9605839736a0d7.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/hfsplusutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/hfsplusutils/hfsplusutils-1.0.4-r2.ebuild sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild X-VCS-Directories: sys-fs/hfsplusutils/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 6cbe4c3ed96b51d68b37610dfc9605839736a0d7 X-VCS-Branch: master Date: Sat, 3 Dec 2022 13:27:35 +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: 70b829ab-16a7-437a-b731-f384470e932f X-Archives-Hash: be442e6a9eaeefe8efd8b081cc7a8db1 commit: 6cbe4c3ed96b51d68b37610dfc9605839736a0d7 Author: David Seifert gentoo org> AuthorDate: Sat Dec 3 13:27:24 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Dec 3 13:27:24 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cbe4c3e sys-fs/hfsplusutils: add -fno-strict-aliasing to avoid LTO breakage Closes: https://bugs.gentoo.org/863902 Signed-off-by: David Seifert gentoo.org> ...s-1.0.4-r2.ebuild => hfsplusutils-1.0.4-r3.ebuild} | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r2.ebuild b/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild similarity index 72% rename from sys-fs/hfsplusutils/hfsplusutils-1.0.4-r2.ebuild rename to sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild index 34c9cf508cba..efffe757f332 100644 --- a/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r2.ebuild +++ b/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild @@ -1,22 +1,21 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit autotools +inherit autotools flag-o-matic MY_P="hfsplus_${PV}" DESCRIPTION="HFS+ Filesystem Access Utilities (a PPC filesystem)" HOMEPAGE="http://penguinppc.org/historical/hfsplus/" SRC_URI="http://penguinppc.org/historical/hfsplus/${MY_P}.src.tar.bz2" +S="${WORKDIR}/hfsplus-${PV}" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ppc ppc64 x86" -S="${WORKDIR}/hfsplus-${PV}" - PATCHES=( "${FILESDIR}"/${P}-glob.patch "${FILESDIR}"/${P}-errno.patch @@ -31,18 +30,20 @@ PATCHES=( src_prepare() { default - # let's avoid the Makefile.cvs since isn't working for us - mv configure.{in,ac} || die + # let's avoid the Makefile.cvs since it isn't working for us eautoreconf } src_configure() { - econf --disable-static + # brittle codebase with lots of type punning, breaks LTO (#863902) + append-cflags -fno-strict-aliasing + + default } src_install() { default newman doc/man/hfsp.man hfsp.1 - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die }