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 <[email protected]>
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 <[email protected]>
;;; Copyright © 2014 Mark H Weaver <[email protected]>
;;; Copyright © 2014 Andreas Enge <[email protected]>
-;;; Copyright © 2016, 2017, 2020, 2021 Efraim Flashner <[email protected]>
+;;; Copyright © 2016, 2017, 2020-2022 Efraim Flashner <[email protected]>
;;; Copyright © 2016, 2019 Ricardo Wurmus <[email protected]>
;;; Copyright © 2016 doncatnip <[email protected]>
;;; Copyright © 2016, 2017, 2019 Clément Lassieur <[email protected]>
@@ -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