guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: ruby-tzinfo-data: Don't use unstable tarball.


From: guix-commits
Subject: 02/03: gnu: ruby-tzinfo-data: Don't use unstable tarball.
Date: Mon, 30 Dec 2019 13:05:36 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit bb1e7ed066e97fff06fd10a70be1a582daa97217
Author: Efraim Flashner <address@hidden>
Date:   Mon Dec 30 16:15:50 2019 +0200

    gnu: ruby-tzinfo-data: Don't use unstable tarball.
    
    * gnu/packages/ruby.scm (ruby-tzinfo-data)[source]: Download using
    git-fetch.
---
 gnu/packages/ruby.scm | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index ba41474..a82e39b 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -4066,17 +4066,16 @@ aware transformations between times in different time 
zones.")
     (version "1.2017.3")
     (source
      (origin
-       (method url-fetch)
+       (method git-fetch)
        ;; Download from GitHub because the rubygems version does not contain
        ;; Rakefile or tests.
-       (uri (string-append
-             "https://github.com/tzinfo/tzinfo-data/archive/v";
-             version
-             ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (uri (git-reference
+              (url "https://github.com/tzinfo/tzinfo-data";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
         (base32
-         "01wff7syqzikbxalbg3isgxasmvzicr85bzadzkb6bf20bip4v54"))
+         "0v3phl5l3jrm6waxcszqmj2dkjhqawxfsxb6mss7vkp1hlckqcdp"))
        ;; Remove the known test failure.
        ;; https://github.com/tzinfo/tzinfo-data/issues/10
        ;; https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/1587128



reply via email to

[Prev in Thread] Current Thread [Next in Thread]