From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 736FC15800A for ; Sun, 13 Apr 2025 23:59:56 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 58F253430E7 for ; Sun, 13 Apr 2025 23:59:56 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 48510110105; Sun, 13 Apr 2025 23:59: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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 3C7C1110105 for ; Sun, 13 Apr 2025 23:59: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B85673430E7 for ; Sun, 13 Apr 2025 23:59:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E275C1748 for ; Sun, 13 Apr 2025 23:59:52 +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: <1744588771.cbf35bac382b52027ab9ec3ced380d51d23b4be4.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Pari/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Math-Pari/Math-Pari-2.30.523.ebuild X-VCS-Directories: dev-perl/Math-Pari/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: cbf35bac382b52027ab9ec3ced380d51d23b4be4 X-VCS-Branch: master Date: Sun, 13 Apr 2025 23:59:52 +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: b24ed3c5-7233-4af1-9727-e5654a924456 X-Archives-Hash: 406d30dc0a2edc00d276992b09a675d5 commit: cbf35bac382b52027ab9ec3ced380d51d23b4be4 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sun Apr 13 23:58:45 2025 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sun Apr 13 23:59:31 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbf35bac dev-perl/Math-Pari: add workaround for hppa build (disable assembler) Closes: https://bugs.gentoo.org/887803 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/Math-Pari/Math-Pari-2.30.523.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-perl/Math-Pari/Math-Pari-2.30.523.ebuild b/dev-perl/Math-Pari/Math-Pari-2.30.523.ebuild index 01cab743aa42..a4d3916fbe16 100644 --- a/dev-perl/Math-Pari/Math-Pari-2.30.523.ebuild +++ b/dev-perl/Math-Pari/Math-Pari-2.30.523.ebuild @@ -60,6 +60,9 @@ src_configure() { # non-machine specific assembly methods here. use sparc && myconf="${myconf} machine=none" + # Unfortunately the assembly routines for hppa hard-assume HPUX ... + use hppa && myconf="${myconf} machine=none" + perl-module_src_configure }