guix-commits
[Top][All Lists]
Advanced

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

262/285: gnu: ruby-ae: Don't use unstable tarball.


From: guix-commits
Subject: 262/285: gnu: ruby-ae: Don't use unstable tarball.
Date: Sun, 29 Dec 2019 20:44:44 -0500 (EST)

kkebreau pushed a commit to branch wip-gnome3.34
in repository guix.

commit 0ee1fb9cd46a4dbeef94ee21de9c0741e7afb608
Author: Efraim Flashner <address@hidden>
Date:   Sat Dec 28 22:48:02 2019 +0200

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

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 0fcb8ae..0d64e05 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -6802,15 +6802,15 @@ and locking between worker processes.")
     (version "1.8.2")
     (source
      (origin
-       (method url-fetch)
+       (method git-fetch)
        ;; Fetch from github so tests are included.
-       (uri (string-append
-             "https://github.com/rubyworks/ae/archive/";
-             version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (uri (git-reference
+              (url "https://github.com/rubyworks/ae";)
+              (commit version)))
+       (file-name (git-file-name name version))
        (sha256
         (base32
-         "147jmkx54x7asy2d8m4dyrhhf4hdx4galpnhwzai030y3cdsfrrl"))))
+         "11299jj5ma8mi7b4majkyjy70y6zlqpgl8aql1c5lvfjavlpwmlp"))))
     (build-system ruby-build-system)
     (arguments
      `(#:phases
@@ -6836,7 +6836,7 @@ and locking between worker processes.")
     (description
      "Assertive Expressive (AE) is an assertions library specifically designed
 for reuse by other test frameworks.")
-    (home-page "https://rubyworks.github.io/ae";)
+    (home-page "https://rubyworks.github.io/ae/";)
     (license license:bsd-2)))
 
 (define-public ruby-lemon



reply via email to

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