mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 03:20:04 +01:00
gnu: ruby-unf-ext: Update to 0.0.7.6.
* gnu/packages/ruby.scm (ruby-unf-ext): Update to 0.0.7.6. [arguments]: Add phase to avoid unnecessary dependency.
This commit is contained in:
parent
ba4084bb13
commit
14db8f192e
1 changed files with 10 additions and 3 deletions
|
@ -4955,19 +4955,26 @@ including comments and whitespace.")
|
||||||
(define-public ruby-unf-ext
|
(define-public ruby-unf-ext
|
||||||
(package
|
(package
|
||||||
(name "ruby-unf-ext")
|
(name "ruby-unf-ext")
|
||||||
(version "0.0.7.1")
|
(version "0.0.7.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (rubygems-uri "unf_ext" version))
|
(uri (rubygems-uri "unf_ext" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ly2ms6c3irmbr1575ldyh52bz2v0lzzr2gagf0p526k12ld2n5b"))))
|
"1ll6w64ibh81qwvjx19h8nj7mngxgffg7aigjx11klvf5k2g4nxf"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'build 'build-ext
|
(add-after 'build 'build-ext
|
||||||
(lambda _ (invoke "rake" "compile:unf_ext"))))))
|
(lambda _ (invoke "rake" "compile:unf_ext")))
|
||||||
|
(add-before 'check 'lose-rake-compiler-dock-dependency
|
||||||
|
(lambda _
|
||||||
|
;; rake-compiler-dock is listed in the gemspec, but only
|
||||||
|
;; required when cross-compiling.
|
||||||
|
(substitute* "unf_ext.gemspec"
|
||||||
|
((".*rake-compiler-dock.*") ""))
|
||||||
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("bundler" ,bundler)
|
`(("bundler" ,bundler)
|
||||||
("ruby-rake-compiler" ,ruby-rake-compiler)
|
("ruby-rake-compiler" ,ruby-rake-compiler)
|
||||||
|
|
Loading…
Add table
Reference in a new issue