gnu: ruby-asciidoctor: Re-indent.

* gnu/packages/ruby.scm (ruby-asciidoctor): Re-indent.
This commit is contained in:
Maxim Cournoyer 2020-07-09 13:17:57 -04:00
parent fef0564c6f
commit 751bf33d47
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1096,38 +1096,38 @@ (define-public ruby-slim
(define-public ruby-asciidoctor (define-public ruby-asciidoctor
(package (package
(name "ruby-asciidoctor") (name "ruby-asciidoctor")
(version "1.5.7.1") (version "1.5.7.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (rubygems-uri "asciidoctor" version)) (uri (rubygems-uri "asciidoctor" version))
(sha256 (sha256
(base32 (base32
"0v52bzc72cvg7zfgq27pa4mgyf29dx9m20fghrw1xmvwgd519n1w")))) "0v52bzc72cvg7zfgq27pa4mgyf29dx9m20fghrw1xmvwgd519n1w"))))
(build-system ruby-build-system) (build-system ruby-build-system)
(arguments (arguments
`(#:test-target "test:all" `(#:test-target "test:all"
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-before 'check 'remove-circular-tests (add-before 'check 'remove-circular-tests
(lambda _ (lambda _
;; Remove tests that require circular dependencies to load or pass. ;; Remove tests that require circular dependencies to load or pass.
(delete-file "test/invoker_test.rb") (delete-file "test/invoker_test.rb")
(delete-file "test/converter_test.rb") (delete-file "test/converter_test.rb")
(delete-file "test/options_test.rb") (delete-file "test/options_test.rb")
#t))))) #t)))))
(native-inputs (native-inputs
`(("ruby-minitest" ,ruby-minitest) `(("ruby-minitest" ,ruby-minitest)
("ruby-nokogiri" ,ruby-nokogiri) ("ruby-nokogiri" ,ruby-nokogiri)
("ruby-asciimath" ,ruby-asciimath) ("ruby-asciimath" ,ruby-asciimath)
("ruby-coderay" ,ruby-coderay))) ("ruby-coderay" ,ruby-coderay)))
(synopsis "Converter from AsciiDoc content to other formats") (synopsis "Converter from AsciiDoc content to other formats")
(description (description "Asciidoctor is a text processor and publishing toolchain for
"Asciidoctor is a text processor and publishing toolchain for converting converting AsciiDoc content to HTML5, DocBook 5 (or 4.5), PDF, and other
AsciiDoc content to HTML5, DocBook 5 (or 4.5), PDF, and other formats.") formats.")
(home-page "https://asciidoctor.org") (home-page "https://asciidoctor.org")
(license license:expat))) (license license:expat)))
(define-public ruby-ast (define-public ruby-ast
(package (package