diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-06-18 16:27:39 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-06-20 20:40:06 +0200 |
| commit | 49eccddc985a2d8bfd9bd474bef7b42cc7f4288b (patch) | |
| tree | a5088648cbceaa298597ad61794a45b6a860b49b /gnu | |
| parent | 3052ab699f029b1eb05989c21ef1048f73ddc57f (diff) | |
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.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/ruby-xyz.scm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm index 7f1dee987e8..38be5545f79 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? |
