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 56534158041 for ; Thu, 29 Feb 2024 00:50:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23C09E2A27; Thu, 29 Feb 2024 00:50:51 +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 06C89E2A27 for ; Thu, 29 Feb 2024 00:50:51 +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 028AE343063 for ; Thu, 29 Feb 2024 00:50:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6948F1384 for ; Thu, 29 Feb 2024 00:50:48 +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: <1709167676.d5413c49a093b77dd397f5343936c9926599fde7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/EV/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/EV/EV-4.330.0.ebuild X-VCS-Directories: dev-perl/EV/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d5413c49a093b77dd397f5343936c9926599fde7 X-VCS-Branch: master Date: Thu, 29 Feb 2024 00:50:48 +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: 53baca30-397f-4ce8-9ea1-7ae79cf36e93 X-Archives-Hash: 0ba718deab01e8664e225a5384d5aaa9 commit: d5413c49a093b77dd397f5343936c9926599fde7 Author: Sam James gentoo org> AuthorDate: Thu Feb 29 00:47:56 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Feb 29 00:47:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5413c49 dev-perl/EV: filter LTO, no-SA Broken quite badly via bundled liebv, no upstream bug tracker for libev AFAICT. And broken in many bundled copies all over the place (which are modified...) Closes: https://bugs.gentoo.org/856109 Signed-off-by: Sam James gentoo.org> dev-perl/EV/EV-4.330.0.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-perl/EV/EV-4.330.0.ebuild b/dev-perl/EV/EV-4.330.0.ebuild index ec997f6507ff..374a2b8ab945 100644 --- a/dev-perl/EV/EV-4.330.0.ebuild +++ b/dev-perl/EV/EV-4.330.0.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DIST_AUTHOR=MLEHMANN DIST_VERSION=4.33 -inherit perl-module +inherit flag-o-matic perl-module DESCRIPTION="Perl interface to libev, a high performance full-featured event loop" LICENSE=" || ( Artistic GPL-1+ ) || ( BSD-2 GPL-2+ )" @@ -21,6 +21,10 @@ BDEPEND="${RDEPEND} dev-perl/Canary-Stability " src_compile() { + # See bug #855869 and its large number of dupes in bundled libev copies. + filter-lto + append-flags -fno-strict-aliasing + mymake=( "OPTIMIZE=${CFLAGS}" )