gnu: ruby-rack: Don't use unstable tarball.

* gnu/packages/ruby.scm (ruby-rack)[source]: Download using git-fetch.
[arguments]: Add phase to make gzip files writable.
This commit is contained in:
Efraim Flashner 2019-12-30 12:46:55 +02:00
parent a6cffe6ec4
commit 83870c32e8
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -5068,16 +5068,15 @@ generates Ruby program.")
(version "2.0.6") (version "2.0.6")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
;; Download from GitHub so that the patch can be applied. ;; Download from GitHub so that the patch can be applied.
(uri (string-append (uri (git-reference
"https://github.com/rack/rack/archive/" (url "https://github.com/rack/rack")
version (commit version)))
".tar.gz")) (file-name (git-file-name name version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0pb3g5ymvbf07xaxcn51dpqv3djlxavckp3qkxsjdxiqznb0d9p1")) "1n7z4g1x6yxip096cdc04wq7yk7ywpinq28g2xjb46r4nlv5h0j6"))
;; Ignore test which fails inside the build environment but works ;; Ignore test which fails inside the build environment but works
;; outside. ;; outside.
(patches (search-patches "ruby-rack-ignore-failing-test.patch")))) (patches (search-patches "ruby-rack-ignore-failing-test.patch"))))
@ -5103,7 +5102,15 @@ generates Ruby program.")
(number->string (+ 22 size-diff)) (number->string (+ 22 size-diff))
"-" "-"
(number->string (+ 33 size-diff)))))) (number->string (+ 33 size-diff))))))
#t))))) #t))
(add-before 'reset-gzip-timestamps 'make-files-writable
(lambda* (#:key outputs #:allow-other-keys)
;; Make sure .gz files are writable so that the
;; 'reset-gzip-timestamps' phase can do its work.
(let ((out (assoc-ref outputs "out")))
(for-each make-file-writable
(find-files out "\\.gz$"))
#t))))))
(native-inputs (native-inputs
`(("ruby-minitest" ,ruby-minitest) `(("ruby-minitest" ,ruby-minitest)
("ruby-minitest-sprint" ,ruby-minitest-sprint) ("ruby-minitest-sprint" ,ruby-minitest-sprint)