gnu: ruby-nokogumbo: Update to 2.0.2.
* gnu/packages/ruby.scm (ruby-nokogumbo): Update to 2.0.2. [arguments]: Remove. [native-inputs]: Add RUBY-RAKE-COMPILER.
This commit is contained in:
parent
62cc7344ff
commit
2e366b0a83
1 changed files with 26 additions and 61 deletions
|
@ -5288,58 +5288,23 @@ multibyte strings, internationalization, time zones, and testing.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-nokogumbo
|
(define-public ruby-nokogumbo
|
||||||
(let ((commit "fb51ff299a1c34346837580b6d1d9a60fadf5dbd"))
|
|
||||||
(package
|
(package
|
||||||
(name "ruby-nokogumbo")
|
(name "ruby-nokogumbo")
|
||||||
(version (string-append "1.4.7-1." (string-take commit 8)))
|
(version "2.0.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
;; We use the git reference, because there's no Rakefile in the
|
;; We use the git reference, because there's no Rakefile in the
|
||||||
;; published gem and the tarball on Github is outdated.
|
;; published gem and the tarball on Github is outdated.
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/rubys/nokogumbo.git")
|
(url "https://github.com/rubys/nokogumbo.git")
|
||||||
(commit "d56f954d20a")))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0bnppjy96xiadrsrc9dp8y6wvdwnkfa930n7acrp0mqm4qywl2wl"))))
|
"1qg0iyw450lw6d0j1ghzg79a6l60nm1m4qmrzwzybi585861jxcx"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
(native-inputs
|
||||||
`(#:modules ((guix build ruby-build-system)
|
`(("ruby-rake-compiler" ,ruby-rake-compiler)))
|
||||||
(guix build utils)
|
|
||||||
(ice-9 rdelim))
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'build-gemspec
|
|
||||||
(lambda _
|
|
||||||
(substitute* "Rakefile"
|
|
||||||
;; Build Makefile even without a copy of gumbo-parser sources
|
|
||||||
(("'gumbo-parser/src',") "")
|
|
||||||
;; We don't bundle gumbo-parser sources
|
|
||||||
(("'gumbo-parser/src/\\*',") "")
|
|
||||||
(("'gumbo-parser/visualc/include/\\*',") "")
|
|
||||||
;; The definition of SOURCES will be cut in gemspec, and
|
|
||||||
;; "FileList" will be undefined.
|
|
||||||
(("SOURCES \\+ FileList\\[")
|
|
||||||
"['ext/nokogumboc/extconf.rb', 'ext/nokogumboc/nokogumbo.c', "))
|
|
||||||
|
|
||||||
;; Copy the Rakefile and cut out the gemspec.
|
|
||||||
(copy-file "Rakefile" ".gemspec")
|
|
||||||
(with-atomic-file-replacement ".gemspec"
|
|
||||||
(lambda (in out)
|
|
||||||
(let loop ((line (read-line in 'concat))
|
|
||||||
(skipping? #t))
|
|
||||||
(if (eof-object? line)
|
|
||||||
#t
|
|
||||||
(let ((skip-next? (if skipping?
|
|
||||||
(not (string-prefix? "SPEC =" line))
|
|
||||||
(string-prefix? "end" line))))
|
|
||||||
(when (or (not skipping?)
|
|
||||||
(and skipping? (not skip-next?)))
|
|
||||||
(format #t "~a" line)
|
|
||||||
(display line out))
|
|
||||||
(loop (read-line in 'concat) skip-next?))))))
|
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("gumbo-parser" ,gumbo-parser)))
|
`(("gumbo-parser" ,gumbo-parser)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
@ -5349,7 +5314,7 @@ multibyte strings, internationalization, time zones, and testing.")
|
||||||
"Nokogumbo allows a Ruby program to invoke the Gumbo HTML5 parser and
|
"Nokogumbo allows a Ruby program to invoke the Gumbo HTML5 parser and
|
||||||
access the result as a Nokogiri parsed document.")
|
access the result as a Nokogiri parsed document.")
|
||||||
(home-page "https://github.com/rubys/nokogumbo/")
|
(home-page "https://github.com/rubys/nokogumbo/")
|
||||||
(license license:asl2.0))))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public ruby-sanitize
|
(define-public ruby-sanitize
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue