guix-commits
[Top][All Lists]
Advanced

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

02/06: gnu: guile-fibers: Remove GNU/Hurd from 'supported-systems'.


From: guix-commits
Subject: 02/06: gnu: guile-fibers: Remove GNU/Hurd from 'supported-systems'.
Date: Thu, 24 Mar 2022 07:56:37 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 9877408d2fe785c2de43e751cb4f6f53cc56283d
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Tue Mar 22 14:47:40 2022 +0100

    gnu: guile-fibers: Remove GNU/Hurd from 'supported-systems'.
    
    * gnu/packages/guile-xyz.scm (guile-fibers-1.1)[supported-systems]: New
    field.
---
 gnu/packages/guile-xyz.scm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index f2e55cb3c8..3299b6cb74 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -129,7 +129,8 @@
   #:use-module (guix utils)
   #:use-module ((guix build utils) #:select (alist-replace))
   #:use-module (ice-9 match)
-  #:use-module ((srfi srfi-1) #:select (alist-delete)))
+  #:use-module ((srfi srfi-1) #:select (alist-delete))
+  #:use-module (srfi srfi-26))
 
 (define-public artanis
   (package
@@ -645,6 +646,11 @@ Unix-style DSV format and RFC 4180 format.")
            gettext-minimal))
     (inputs
      (list guile-3.0))                            ;for libguile-3.0.so
+    (supported-systems
+     ;; This version requires 'epoll' and is thus limited to Linux-based
+     ;; systems, but this may change soon:
+     ;; <https://github.com/wingo/fibers/pull/53>.
+     (filter (cut string-suffix? "-linux" <>) %supported-systems))
     (synopsis "Lightweight concurrency facility for Guile")
     (description
      "Fibers is a Guile library that implements a a lightweight concurrency



reply via email to

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