mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 02:07:56 +01:00
gnu: ruby-puma: Don't use unstable tarball.
* gnu/packages/ruby.scm (ruby-puma)[source]: Download using git-fetch. [home-page]: Use https.
This commit is contained in:
parent
4347662539
commit
a6cffe6ec4
1 changed files with 7 additions and 6 deletions
|
@ -7054,14 +7054,15 @@ (define-public ruby-puma
|
||||||
(version "3.9.1")
|
(version "3.9.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
;; Fetch from GitHub because distributed gem does not contain tests.
|
;; Fetch from GitHub because distributed gem does not contain tests.
|
||||||
(uri (string-append "https://github.com/puma/puma/archive/v"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/puma/puma")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"03pifga841h17brh4vgia8i2ybh3cmsyg0dbybzdf6dq51wzcxdx"))))
|
"1kj75k81iik3aj73pkc9ixj9rwf95ipkyma65n28m64dgw02qi1f"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; Tests require an out-dated version of minitest.
|
`(#:tests? #f ; Tests require an out-dated version of minitest.
|
||||||
|
@ -7079,7 +7080,7 @@ (define-public ruby-puma
|
||||||
production environments. In order to get the best throughput, it is highly
|
production environments. In order to get the best throughput, it is highly
|
||||||
recommended that you use a Ruby implementation with real threads like Rubinius
|
recommended that you use a Ruby implementation with real threads like Rubinius
|
||||||
or JRuby.")
|
or JRuby.")
|
||||||
(home-page "http://puma.io")
|
(home-page "https://puma.io/")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-hoe-git
|
(define-public ruby-hoe-git
|
||||||
|
|
Loading…
Reference in a new issue