From patchwork Tue Aug 17 10:19:15 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Efraim Flashner X-Patchwork-Id: 32161 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id 2010527BC78; Tue, 17 Aug 2021 11:31:36 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_MSPIKE_H2,SPF_HELO_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id D1B1827BC6B for ; Tue, 17 Aug 2021 11:31:35 +0100 (BST) Received: from localhost ([::1]:35460 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mFwNa-0007II-5B for patchwork@mira.cbaines.net; Tue, 17 Aug 2021 06:31:34 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54784) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mFwN6-0007Hc-6E for guix-patches@gnu.org; Tue, 17 Aug 2021 06:31:06 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:40317) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1mFwN4-00035K-3v for guix-patches@gnu.org; Tue, 17 Aug 2021 06:31:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1mFwN3-0004UT-W6 for guix-patches@gnu.org; Tue, 17 Aug 2021 06:31:02 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#50091] [PATCH 17/21] gnu: openlibm: Remove riscv64-linux from supported systems. Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 17 Aug 2021 10:31:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 50091 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 50091@debbugs.gnu.org Cc: Efraim Flashner Received: via spool by 50091-submit@debbugs.gnu.org id=B50091.162919622217164 (code B ref 50091); Tue, 17 Aug 2021 10:31:01 +0000 Received: (at 50091) by debbugs.gnu.org; 17 Aug 2021 10:30:22 +0000 Received: from localhost ([127.0.0.1]:51846 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mFwMQ-0004Sm-Ei for submit@debbugs.gnu.org; Tue, 17 Aug 2021 06:30:22 -0400 Received: from flashner.co.il ([178.62.234.194]:45976) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mFwMO-0004Sa-V7 for 50091@debbugs.gnu.org; Tue, 17 Aug 2021 06:30:21 -0400 Received: from localhost (unknown [141.226.169.107]) by flashner.co.il (Postfix) with ESMTPSA id 4AE01402E0; Tue, 17 Aug 2021 10:30:15 +0000 (UTC) From: Efraim Flashner Date: Tue, 17 Aug 2021 13:19:15 +0300 Message-Id: <6a3bdea9a60b40fde06343607ee43f879aa7a228.1629193993.git.efraim@flashner.co.il> X-Mailer: git-send-email 2.32.0 In-Reply-To: References: MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches * gnu/packages/maths.scm (openlibm)[supported-systems]: Remove riscv64-linux. --- gnu/packages/maths.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index eb6e685278..06b9dfea59 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4250,7 +4250,8 @@ have a good libm for the Julia programming language that worked consistently across compilers and operating systems, and in 32-bit and 64-bit environments.") ;; Each architecture has its own make target, and there is none for mips. - (supported-systems (delete "mips64el-linux" %supported-systems)) + (supported-systems (fold delete %supported-systems + '("mips64el-linux" "riscv64-linux"))) ;; See LICENSE.md for details. (license (list license:expat license:isc