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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3AF5E138334 for ; Wed, 16 Oct 2019 12:35:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53305E0982; Wed, 16 Oct 2019 12:35:39 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2C67AE0982 for ; Wed, 16 Oct 2019 12:35:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E120C34BDB8 for ; Wed, 16 Oct 2019 12:35:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B1B188A for ; Wed, 16 Oct 2019 12:35:36 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1571229309.44dca7fe88de3c6b1ea877f977313eda3fbd0831.dilfridge@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.28.2-r1.ebuild dev-lang/perl/perl-5.30.0.ebuild X-VCS-Directories: dev-lang/perl/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 44dca7fe88de3c6b1ea877f977313eda3fbd0831 X-VCS-Branch: master Date: Wed, 16 Oct 2019 12:35:36 +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: e5c0009c-fdff-48fc-8442-a8cf4f92b2aa X-Archives-Hash: bb45c7a0b4f2943711ea74ae5004b26b commit: 44dca7fe88de3c6b1ea877f977313eda3fbd0831 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed Oct 16 12:33:35 2019 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed Oct 16 12:35:09 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44dca7fe dev-lang/perl: Add alignment fix also for armv5te, bug 688432 Closes: https://bugs.gentoo.org/688432 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-lang/perl/perl-5.28.2-r1.ebuild | 8 +++++--- dev-lang/perl/perl-5.30.0.ebuild | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/dev-lang/perl/perl-5.28.2-r1.ebuild b/dev-lang/perl/perl-5.28.2-r1.ebuild index 9ef9792798d..7b7d5e187df 100644 --- a/dev-lang/perl/perl-5.28.2-r1.ebuild +++ b/dev-lang/perl/perl-5.28.2-r1.ebuild @@ -468,9 +468,11 @@ src_configure() { # fix unaligned access misdetection # https://rt.perl.org/Public/Bug/Display.html?id=133495 - # bug #676062 - use hppa || use sparc || [[ ${CHOST} == sparc*-solaris* ]] && \ - myconf "-Dd_u32align='define'" + # https://rt.perl.org/Public/Bug/Display.html?id=133803 + # bug #676062, bug #688432 + use hppa || use sparc || [[ ${CHOST} == sparc*-solaris* ]] || \ + [[ ${CHOST} == armv5tel* ]] \ + && myconf "-Dd_u32align='define'" # Prefix: the host system needs not to follow Gentoo multilib stuff, and in # Prefix itself we don't do multilib either, so make sure perl can find diff --git a/dev-lang/perl/perl-5.30.0.ebuild b/dev-lang/perl/perl-5.30.0.ebuild index 47ecb930d47..0b85d04ff37 100644 --- a/dev-lang/perl/perl-5.30.0.ebuild +++ b/dev-lang/perl/perl-5.30.0.ebuild @@ -464,9 +464,11 @@ src_configure() { # fix unaligned access misdetection # https://rt.perl.org/Public/Bug/Display.html?id=133495 - # bug #676062 - use hppa || use sparc || [[ ${CHOST} == sparc*-solaris* ]] && \ - myconf "-Dd_u32align='define'" + # https://rt.perl.org/Public/Bug/Display.html?id=133803 + # bug #676062, bug #688432 + use hppa || use sparc || [[ ${CHOST} == sparc*-solaris* ]] || \ + [[ ${CHOST} == armv5tel* ]] \ + && myconf "-Dd_u32align='define'" # Prefix: the host system needs not to follow Gentoo multilib stuff, and in # Prefix itself we don't do multilib either, so make sure perl can find