[bug#78185] gnu: guile-lib: Update to 0.2.8.1.

Message ID 87ldq9mcl4.fsf@gnu.org
State New
Headers
Series [bug#78185] gnu: guile-lib: Update to 0.2.8.1. |

Commit Message

Ludovic Courtès June 3, 2025, 8:52 a.m. UTC
  Hi,

Yuval Langer <yuval.langer@gmail.com> writes:

> * gnu/packages/guile-xyz.scm (guile-lib): Update to 0.2.8.1.
> * gnu/packages/guile-xyz.scm (guile-lib): [native-inputs] Use new style.

I tweaked the commit log (not need to repeat the file name and variable
name) and applied the change below to fix ‘guile2.0-lib’ as 宋文武 noted
earlier.

Thanks,
Ludo’.
  

Patch

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index f3798f03a2f..cac5f7c0f4f 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -1,5 +1,5 @@ 
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012-2024 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2012-2025 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2014, 2015, 2018 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2015, 2017, 2022 Christine Lemmer-Webber <cwebber@dustycloud.org>
 ;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
@@ -3425,6 +3425,9 @@  (define-public guile2.0-lib
   (package
     (inherit guile-lib)
     (name "guile2.0-lib")
+    (arguments
+     ;; This test uses (ice-9 textual-ports), which does not exist on 2.0.
+     (list #:make-flags #~(list "XFAIL_TESTS=logging.logger.scm")))
     (native-inputs
      (alist-replace "guile" (list guile-2.0)
                     (package-native-inputs guile-lib)))