guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 1490afc12dd2b204450275818b09cf6742dc4fcc
Author: gemmaro <[email protected]>
AuthorDate: Wed Aug 26 18:19:03 2026 +0900
gnu: Remove ruby-liquid-c.
* gnu/packages/ruby-xyz.scm (ruby-liquid-c): Delete variable.
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/ruby-xyz.scm | 44 --------------------------------------------
1 file changed, 44 deletions(-)
diff --git a/gnu/packages/ruby-xyz.scm b/gnu/packages/ruby-xyz.scm
index d9deb47003a..e4361b56cbc 100644
--- a/gnu/packages/ruby-xyz.scm
+++ b/gnu/packages/ruby-xyz.scm
@@ -14453,50 +14453,6 @@ liquid ruby gem in C that makes it operate about three
times faster.")
(properties '((hidden? . #t)))
(license license:expat)))
-(define-public ruby-liquid-c
- (package/inherit ruby-liquid-c-bootstrap
- (name "ruby-liquid-c")
- (arguments
- (list
- ;; Only run the unit tests, because the test:integration target fails
- ;; with "File does not exist: test_helper" (see:
- ;; https://github.com/Shopify/liquid-c/issues/188).
- #:test-target "test:unit"
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'extract-gemspec 'relax-requirements
- (lambda _
- (substitute* "Gemfile"
- ;; Do not attempt to fetch a gem from git.
- (("git_source\\(:github) do \\|repo_name\\|")
- "if false")
- ((", github: \"Shopify/liquid\", ref: \"master\"")
- "")
- ;; Remove extraneous dependencies.
- ((".*byebug.*") "")
- ((".*rubocop.*") "")
- ;; Relax spy version specification.
- (("gem \"spy\", \"0.4.1\"")
- "gem \"spy\", \">= 0.4.1\""))))
- ;; XXX: Unclear if the binary_name has any influence on Memcheck.
- ;; But the tests fail if it's unset.
- (add-before 'check 'pre-check
- (lambda _
- (substitute* "Rakefile"
- (("require \"ruby_memcheck\"" all)
- (string-append all "
-RubyMemcheck.config(binary_name: \"liquid_c.so\")"))))))))
- (native-inputs
- (list ruby-benchmark-ips
- ruby-rake-compiler
- ruby-ruby-memcheck
- ruby-spy
- ruby-stackprof))
- (propagated-inputs
- (list ruby-liquid))
- (properties
- (alist-delete 'hidden? (package-properties ruby-liquid-c-bootstrap)))))
-
(define-public ruby-localhost
(package
(name "ruby-localhost")