[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/09: gnu: RHash: Download tarball from SourceForge instead of a git ch
From: |
guix-commits |
Subject: |
06/09: gnu: RHash: Download tarball from SourceForge instead of a git checkout. |
Date: |
Wed, 22 Jan 2020 16:14:51 -0500 (EST) |
mbakke pushed a commit to branch core-updates
in repository guix.
commit 26edcd9b8db553bed324149bc039c306a804a2a3
Author: Marius Bakke <address@hidden>
AuthorDate: Sat Jan 18 21:16:26 2020 +0100
gnu: RHash: Download tarball from SourceForge instead of a git checkout.
* gnu/packages/crypto.scm (rhash)[source]: Change to URL-FETCH.
---
gnu/packages/crypto.scm | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index 276612f..fde3ba2 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -711,14 +711,13 @@ BLAKE.")
(version "1.3.9")
(source
(origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/rhash/RHash")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/rhash/rhash/" version
+ "/rhash-" version "-src.tar.gz"))
+ (file-name (string-append "rhash-" version ".tar.gz"))
(sha256
(base32
- "06i49x1l21h2q7pfnf4crbmjyg8b9ad0qs10ywyyn5sjpi0c21wq"))))
+ "1xn9fqa6rlnhsbgami45g82dlw9i1skg2sri3ydiinwak5ph1ca2"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags
- branch core-updates updated (c2d837b -> a1552f5), guix-commits, 2020/01/22
- 02/09: gnu: Add deprecation notice for 'boost-with-python3'., guix-commits, 2020/01/22
- 01/09: gnu: cmake: Update to 3.16.3., guix-commits, 2020/01/22
- 06/09: gnu: RHash: Download tarball from SourceForge instead of a git checkout.,
guix-commits <=
- 03/09: gnu: Add deprecation notice for 'sqlite-with-column-metadata'., guix-commits, 2020/01/22
- 04/09: gnu: curl: Remove unused input., guix-commits, 2020/01/22
- 05/09: gnu: curl: Remove unnecessary reference to the "doc" output., guix-commits, 2020/01/22
- 07/09: gnu: libjpeg-turbo: Build with a minimal variant of CMake., guix-commits, 2020/01/22
- 09/09: gnu: Deprecate the 'libjpeg' variable., guix-commits, 2020/01/22
- 08/09: gnu: Replace uses of 'libjpeg' with 'libjpeg-turbo'., guix-commits, 2020/01/22