gnu: ruby-asciidoctor: Update to 2.0.18.
* gnu/packages/ruby.scm (ruby-asciidoctor): Update to 2.0.18. [native-inputs]: Sort inputs. Add ruby-open-uri-cached. [phases]: Delete trailing #t. [description]: Remove mention of Docbook 4.5, no longer supported.
This commit is contained in:
parent
c2501fa8fc
commit
ec47da8f49
1 changed files with 11 additions and 12 deletions
|
@ -1261,7 +1261,7 @@ syntax to the minimum while remaining clear.")
|
||||||
(define-public ruby-asciidoctor
|
(define-public ruby-asciidoctor
|
||||||
(package
|
(package
|
||||||
(name "ruby-asciidoctor")
|
(name "ruby-asciidoctor")
|
||||||
(version "2.0.16")
|
(version "2.0.18")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch) ;the gem release lacks a Rakefile
|
(method git-fetch) ;the gem release lacks a Rakefile
|
||||||
|
@ -1271,7 +1271,7 @@ syntax to the minimum while remaining clear.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"086i17v9rxx0sxac26xp8c5v75jqba6rqjlk57x94qjvrh8vzyw2"))))
|
"1mpk3y69lqz9ywfkjmr40dm3mkabrnf92bb011qq1axj73yyrajv"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "test:all"
|
`(#:test-target "test:all"
|
||||||
|
@ -1282,26 +1282,25 @@ syntax to the minimum while remaining clear.")
|
||||||
(delete-file "Gemfile")
|
(delete-file "Gemfile")
|
||||||
(substitute* "asciidoctor.gemspec"
|
(substitute* "asciidoctor.gemspec"
|
||||||
(("(.*add_.*dependency '[_A-Za-z0-9-]+').*" _ stripped)
|
(("(.*add_.*dependency '[_A-Za-z0-9-]+').*" _ stripped)
|
||||||
(string-append stripped "\n")))
|
(string-append stripped "\n"))))))))
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list ruby-erubi
|
(list ruby-asciimath
|
||||||
ruby-erubis
|
|
||||||
ruby-minitest
|
|
||||||
ruby-nokogiri
|
|
||||||
ruby-asciimath
|
|
||||||
ruby-coderay
|
ruby-coderay
|
||||||
ruby-cucumber
|
ruby-cucumber
|
||||||
|
ruby-erubis
|
||||||
ruby-haml
|
ruby-haml
|
||||||
|
ruby-minitest
|
||||||
|
ruby-nokogiri
|
||||||
|
ruby-open-uri-cached
|
||||||
ruby-rouge
|
ruby-rouge
|
||||||
ruby-rspec-expectations
|
ruby-rspec-expectations
|
||||||
ruby-simplecov
|
ruby-simplecov
|
||||||
ruby-slim
|
ruby-slim
|
||||||
ruby-tilt))
|
ruby-tilt
|
||||||
|
ruby-erubi))
|
||||||
(synopsis "Converter from AsciiDoc content to other formats")
|
(synopsis "Converter from AsciiDoc content to other formats")
|
||||||
(description "Asciidoctor is a text processor and publishing toolchain for
|
(description "Asciidoctor is a text processor and publishing toolchain for
|
||||||
converting AsciiDoc content to HTML5, DocBook 5 (or 4.5), PDF, and other
|
converting AsciiDoc content to HTML5, DocBook 5, PDF, and other formats.")
|
||||||
formats.")
|
|
||||||
(home-page "https://asciidoctor.org")
|
(home-page "https://asciidoctor.org")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
|
Reference in a new issue