guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: luajit: Remove riscv64-linux from supported-


From: guix-commits
Subject: branch master updated: gnu: luajit: Remove riscv64-linux from supported-systems.
Date: Mon, 19 Sep 2022 03:27:02 -0400

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new c46a96fe33 gnu: luajit: Remove riscv64-linux from supported-systems.
c46a96fe33 is described below

commit c46a96fe33a62f58ec38754e7d4829103bb6948b
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Sep 19 10:25:05 2022 +0300

    gnu: luajit: Remove riscv64-linux from supported-systems.
    
    * gnu/packages/lua.scm (luajit)[supported-systems]: Remove riscv64-linux
    from the supported-systems.
---
 gnu/packages/lua.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm
index c3bb1e8f5b..829c819975 100644
--- a/gnu/packages/lua.scm
+++ b/gnu/packages/lua.scm
@@ -3,7 +3,7 @@
 ;;; Copyright © 2014 Raimon Grau <raimonster@gmail.com>
 ;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2014 Andreas Enge <andreas@enge.fr>
-;;; Copyright © 2016, 2017, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016, 2017, 2020-2022 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016, 2019 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2016 doncatnip <gnopap@gmail.com>
 ;;; Copyright © 2016, 2017, 2019 Clément Lassieur <clement@lassieur.org>
@@ -61,7 +61,8 @@
   #:use-module (gnu packages tls)
   #:use-module (gnu packages vim)
   #:use-module (gnu packages xml)
-  #:use-module (gnu packages xorg))
+  #:use-module (gnu packages xorg)
+  #:use-module (srfi srfi-1))
 
 (define-public lua
   (package
@@ -177,7 +178,8 @@ for configuration, scripting, and rapid prototyping.")
     (synopsis "Just in time compiler for Lua programming language version 5.1")
     ;; On powerpc64le-linux, the build fails with an error: "No support for
     ;; PowerPC 64 bit mode (yet)".  See: https://issues.guix.gnu.org/49220
-    (supported-systems (delete "powerpc64le-linux" %supported-systems))
+    (supported-systems (fold delete %supported-systems
+                             (list "powerpc64le-linux" "riscv64-linux")))
     (description
      "LuaJIT is a Just-In-Time Compiler (JIT) for the Lua
 programming language.  Lua is a powerful, dynamic and light-weight programming



reply via email to

[Prev in Thread] Current Thread [Next in Thread]