gnu: ruby-ttfunk: Update to 1.5.1.

* gnu/packages/ruby.scm (ruby-ttfunk): Update to 1.5.1.
This commit is contained in:
Julien Lepiller 2018-08-26 12:38:32 +02:00
parent ef381322d5
commit afb7a3e8d5
No known key found for this signature in database
GPG key ID: 43111F4520086A0C

View file

@ -4678,7 +4678,7 @@ (define-public ruby-ascii85
(define-public ruby-ttfunk
(package
(name "ruby-ttfunk")
(version "1.4.0")
(version "1.5.1")
(source
(origin
(method url-fetch)
@ -4689,12 +4689,18 @@ (define-public ruby-ttfunk
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1izq84pnm9niyvkzp8k0vl232q9zj41hwmp9na9fzycfh1pbnsl6"))))
"1ymcn12n5iws401yz03zsj8rr653fdqq13czsrciq09phgh9jzc5"))))
(build-system ruby-build-system)
(arguments
`(#:test-target "spec"
#:phases
(modify-phases %standard-phases
(add-before 'build 'remove-ssh
(lambda _
;; remove dependency on an ssh key pair that doesn't exist
(substitute* "ttfunk.gemspec"
(("spec.signing_key.*") ""))
#t))
(add-before 'check 'remove-rubocop
(lambda _
;; remove rubocop as a dependency as not needed for testing
@ -4702,10 +4708,11 @@ (define-public ruby-ttfunk
(("spec.add_development_dependency\\('rubocop'.*") ""))
(substitute* "Rakefile"
(("require 'rubocop/rake_task'") "")
(("Rubocop::RakeTask.new") ""))
(("RuboCop::RakeTask.new") ""))
#t)))))
(native-inputs
`(("ruby-rspec" ,ruby-rspec)
("ruby-yard" ,ruby-yard)
("bundler" ,bundler)))
(synopsis "Font metrics parser for the Prawn PDF generator")
(description