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 B33DF158020 for ; Fri, 28 Oct 2022 12:37:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6A83E07D0; Fri, 28 Oct 2022 12:37:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 9B3BDE07D0 for ; Fri, 28 Oct 2022 12:37:55 +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 B32CB3410C8 for ; Fri, 28 Oct 2022 12:37:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25FEB644 for ; Fri, 28 Oct 2022 12:37:53 +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: <1666960651.28d674673b7e0198d2770ec5a780966555dbbc6a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/perl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/perl/perl-5.34.1-r3.ebuild dev-lang/perl/perl-5.34.1-r4.ebuild dev-lang/perl/perl-5.36.0-r1.ebuild dev-lang/perl/perl-5.36.0.ebuild X-VCS-Directories: dev-lang/perl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 28d674673b7e0198d2770ec5a780966555dbbc6a X-VCS-Branch: master Date: Fri, 28 Oct 2022 12:37:53 +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: 610fc21e-edb2-48fd-8861-ae64902086d1 X-Archives-Hash: ebfcff31a536b18de095eb5833ac3930 commit: 28d674673b7e0198d2770ec5a780966555dbbc6a Author: Sam James gentoo org> AuthorDate: Fri Oct 28 12:36:37 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Oct 28 12:37:31 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28d67467 dev-lang/perl: always pass -fno-strict-aliasing We keep getting these bugs where it turns out the build system didn't pass it for us, so just unconditionally do it. Closes: https://bugs.gentoo.org/877659 Signed-off-by: Sam James gentoo.org> dev-lang/perl/{perl-5.34.1-r3.ebuild => perl-5.34.1-r4.ebuild} | 5 ++++- dev-lang/perl/{perl-5.36.0.ebuild => perl-5.36.0-r1.ebuild} | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-lang/perl/perl-5.34.1-r3.ebuild b/dev-lang/perl/perl-5.34.1-r4.ebuild similarity index 99% rename from dev-lang/perl/perl-5.34.1-r3.ebuild rename to dev-lang/perl/perl-5.34.1-r4.ebuild index c92f6b9c1571..608bf4e02465 100644 --- a/dev-lang/perl/perl-5.34.1-r3.ebuild +++ b/dev-lang/perl/perl-5.34.1-r4.ebuild @@ -600,9 +600,12 @@ src_configure() { # modifying 'optimize' prevents cross configure script from appending required flags if tc-is-cross-compiler; then - append-cflags "-fwrapv -fno-strict-aliasing" + append-cflags "-fwrapv" fi + # bug #877659, bug #821577 + append-cflags -fno-strict-aliasing + # Autodiscover all old version directories, some of them will even be newer # if you downgrade if [[ -z ${PERL_OLDVERSEN} ]]; then diff --git a/dev-lang/perl/perl-5.36.0.ebuild b/dev-lang/perl/perl-5.36.0-r1.ebuild similarity index 99% rename from dev-lang/perl/perl-5.36.0.ebuild rename to dev-lang/perl/perl-5.36.0-r1.ebuild index bcc7e531057a..1ae7dd84b33a 100644 --- a/dev-lang/perl/perl-5.36.0.ebuild +++ b/dev-lang/perl/perl-5.36.0-r1.ebuild @@ -583,9 +583,12 @@ src_configure() { # modifying 'optimize' prevents cross configure script from appending required flags if tc-is-cross-compiler; then - append-cflags "-fwrapv -fno-strict-aliasing" + append-cflags "-fwrapv" fi + # bug #877659, bug #821577 + append-cflags -fno-strict-aliasing + # Autodiscover all old version directories, some of them will even be newer # if you downgrade if [[ -z ${PERL_OLDVERSEN} ]]; then