guix_mirror_bot pushed a commit to branch ruby-team
in repository guix.

commit 9ca49408e51cf4e68fa46c7e758de857549f3759
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Jun 18 16:27:39 2025 +0200

    gnu: jekyll: Update to 4.4.1.
    
    * gnu/packages/ruby-xyz.scm (jekyll): Update to 4.4.1.
      [arguments]{phases}: Refresh phase 'disable-problematic-tests.
---
 gnu/packages/ruby-xyz.scm | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm
index 7f1dee987e..38be5545f7 100644
--- a/gnu/packages/ruby-xyz.scm
+++ b/gnu/packages/ruby-xyz.scm
@@ -13783,7 +13783,7 @@ Unicode formatted tables.")
 (define-public jekyll
   (package
     (name "jekyll")
-    (version "4.3.4")
+    (version "4.4.1")
     (source (origin
               (method git-fetch)        ;for tests
               (uri (git-reference
@@ -13792,7 +13792,7 @@ Unicode formatted tables.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0sz285x5ppbifrnixi9sdzv28kg4x3qbzds3qniiwh1ip9hi1yk4"))))
+                "13cgr7nhxsmackzc976pcvrmam0il623rz13fnr9f7g4g3d1m1lq"))))
     (build-system ruby-build-system)
     (arguments
      (list #:modules '((guix build ruby-build-system)
@@ -13851,7 +13851,13 @@ Unicode formatted tables.")
                      ;; These tests fail non-deterministically (see:
                      ;; https://github.com/jekyll/jekyll/issues/9323).
                      (delete-file "test_new_command.rb")
-                     (delete-file "test_collections.rb"))))
+                     (delete-file "test_collections.rb")
+                     ;; This requires post-install run with GEM_PATH.
+                     ;; Also requires more native-inputs.
+                     (substitute* "test_commands_serve.rb"
+                       ((".*\"fork is not supported.*" all)
+                        (string-append all
+                                       "      skip('fails on guix')\n"))))))
                (replace 'check
                  (lambda* (#:key tests? #:allow-other-keys)
                    (when tests?

Reply via email to