Archived
1
0
Fork 0

gnu: ruby-tdiff: Update to 0.3.3-1.b662a604.

* gnu/packages/ruby.scm: Update to 0.3.3-1.b662a604
This commit is contained in:
Ben Woodcroft 2017-08-06 16:41:05 +10:00
parent e7ea30d59a
commit 5071f17b29
No known key found for this signature in database
GPG key ID: 2A6AD9F4AAC20DF6

View file

@ -2878,18 +2878,23 @@ including comments and whitespace.")
(license license:expat))) (license license:expat)))
(define-public ruby-tdiff (define-public ruby-tdiff
;; Use a newer than released snapshot so that rspec-2 is not required.
(let ((commit "b662a6048f08abc45c1a834e5f34dd1c662935e2"))
(package (package
(name "ruby-tdiff") (name "ruby-tdiff")
(version "0.3.3") (version (string-append "0.3.3-1." (string-take commit 8)))
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (rubygems-uri "tdiff" version)) (uri (git-reference
(url "https://github.com/postmodern/tdiff.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256 (sha256
(base32 (base32
"0k41jbvn8qq4mgrixnhlk742b971d136i8wpbcv2cczvi22xpc86")))) "0n3gq8rx49f7ln6zqlshqfg2mgqyy30rsdjlnki5mv307ykc7ad4"))))
(build-system ruby-build-system) (build-system ruby-build-system)
(native-inputs (native-inputs
`(("ruby-rspec-2" ,ruby-rspec-2) `(("ruby-rspec" ,ruby-rspec)
("ruby-yard" ,ruby-yard) ("ruby-yard" ,ruby-yard)
("ruby-rubygems-tasks" ,ruby-rubygems-tasks))) ("ruby-rubygems-tasks" ,ruby-rubygems-tasks)))
(synopsis "Calculate the differences between two tree-like structures") (synopsis "Calculate the differences between two tree-like structures")
@ -2897,7 +2902,7 @@ including comments and whitespace.")
"This library provides functions to calculate the differences between two "This library provides functions to calculate the differences between two
tree-like structures. It is similar to Ruby's built-in @code{TSort} module.") tree-like structures. It is similar to Ruby's built-in @code{TSort} module.")
(home-page "https://github.com/postmodern/tdiff") (home-page "https://github.com/postmodern/tdiff")
(license license:expat))) (license license:expat))))
(define-public ruby-nokogiri-diff (define-public ruby-nokogiri-diff
(package (package