[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/06: gnu: unionfs-fuse: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
04/06: gnu: unionfs-fuse: Don't use unstable tarball. |
Date: |
Sun, 29 Mar 2020 14:17:04 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit a428fdd4d00849ae1575e107ac504363079e307a
Author: Efraim Flashner <address@hidden>
AuthorDate: Sun Mar 29 20:04:58 2020 +0300
gnu: unionfs-fuse: Don't use unstable tarball.
* gnu/packages/linux.scm (unionfs-fuse)[source]: Download using git-fetch.
---
gnu/packages/linux.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 24d7391..701df76 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -5,7 +5,7 @@
;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Mark H Weaver
<address@hidden>
;;; Copyright © 2015 Federico Beffa <address@hidden>
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <address@hidden>
-;;; Copyright © 2015, 2016, 2017, 2018 Efraim Flashner <address@hidden>
+;;; Copyright © 2015, 2016, 2017, 2018, 2020 Efraim Flashner <address@hidden>
;;; Copyright © 2016 Christopher Allan Webber <address@hidden>
;;; Copyright © 2016, 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice
<address@hidden>
;;; Copyright © 2016, 2017 Alex Kost <address@hidden>
@@ -2397,14 +2397,14 @@ user-space processes.")
(name "unionfs-fuse")
(version "2.0")
(source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/rpodgorny/unionfs-fuse/archive/v"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rpodgorny/unionfs-fuse")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "0hsn8l1iblvx27bpd4dvnvnbh9ri3sv2f9xzpsnfz3379kb7skgj"))))
+ "0lb8zgdxnjy2fjr2284hvdfn7inc1in44ynzgcr66x54bxzvynj6"))))
(build-system cmake-build-system)
(native-inputs
`(("python" ,python)))
- branch master updated (881903a -> 04950d1), guix-commits, 2020/03/29
- 02/06: gnu: nextpnr-ice40: Clean-up description., guix-commits, 2020/03/29
- 03/06: gnu: txt2man: Don't use unstable tarball., guix-commits, 2020/03/29
- 04/06: gnu: unionfs-fuse: Don't use unstable tarball.,
guix-commits <=
- 06/06: gnu: tesseract-ocr: Don't use unstable tarball., guix-commits, 2020/03/29
- 01/06: gnu: nextpnr-ice40: Use a source file-name., guix-commits, 2020/03/29
- 05/06: gnu: vowpal-wabbit: Don't use unstable tarball., guix-commits, 2020/03/29