[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/17: gnu: iniparser: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
08/17: gnu: iniparser: Don't use unstable tarball. |
Date: |
Wed, 13 Nov 2019 16:08:50 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit d177ac2df66031cf8150ed82136628350cebf5c7
Author: Efraim Flashner <address@hidden>
Date: Wed Nov 13 21:46:30 2019 +0200
gnu: iniparser: Don't use unstable tarball.
* gnu/packages/samba.scm (iniparser)[source]: Download using git-fetch.
---
gnu/packages/samba.scm | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm
index 7b6a0df..a60b735 100644
--- a/gnu/packages/samba.scm
+++ b/gnu/packages/samba.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2015, 2017 Ludovic Courtès <address@hidden>
;;; Copyright © 2015 Mark H Weaver <address@hidden>
-;;; Copyright © 2016, 2017 Efraim Flashner <address@hidden>
+;;; Copyright © 2016, 2017, 2019 Efraim Flashner <address@hidden>
;;; Copyright © 2016 Adonay "adfeno" Felipe Nogueira
<https://libreplanet.org/wiki/User:Adfeno> <address@hidden>
;;; Copyright © 2017 Thomas Danckaert <address@hidden>
;;; Copyright © 2017, 2018 Marius Bakke <address@hidden>
@@ -27,6 +27,7 @@
(define-module (gnu packages samba)
#:use-module (guix packages)
#:use-module (guix download)
+ #:use-module (guix git-download)
#:use-module (guix build-system gnu)
#:use-module (guix licenses)
#:use-module (guix utils)
@@ -99,13 +100,14 @@ the Linux kernel CIFS client.")
(name "iniparser")
(version "4.1")
(source (origin
- (method url-fetch)
- (uri (string-append
"https://github.com/ndevilla/iniparser/archive/v"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ndevilla/iniparser")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "1bpk8dj9d5cl64lg6jsk0qlzrpg848nymwxc3fx707fk1n0al3cn"))))
+ "0dhab6pad6wh816lr7r3jb6z273njlgw2vpw8kcfnmi7ijaqhnr5"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags
- branch master updated (0e4cee0 -> bc11778), guix-commits, 2019/11/13
- 01/17: gnu: ocproxy: Don't use unstable tarball., guix-commits, 2019/11/13
- 02/17: gnu: efl: Update to 1.23.2., guix-commits, 2019/11/13
- 05/17: gnu: vim-neocomplete: Don't use unstable tarball., guix-commits, 2019/11/13
- 06/17: gnu: dotherside: Don't use unstable tarball., guix-commits, 2019/11/13
- 04/17: gnu: luakit: Don't use unstable tarball., guix-commits, 2019/11/13
- 07/17: gnu: dotherside: Update to 0.6.4., guix-commits, 2019/11/13
- 14/17: gnu: vis: Don't use unstable tarball., guix-commits, 2019/11/13
- 09/17: gnu: hstr: Don't use unstable tarball., guix-commits, 2019/11/13
- 08/17: gnu: iniparser: Don't use unstable tarball.,
guix-commits <=
- 16/17: gnu: utfcpp: Don't use unstable tarball., guix-commits, 2019/11/13
- 03/17: gnu: qmpbackup: Don't use unstable tarball., guix-commits, 2019/11/13
- 11/17: gnu: python-sphinx-gallery: Don't use unstable tarball., guix-commits, 2019/11/13
- 10/17: gnu: sonic: Don't use unstable tarball., guix-commits, 2019/11/13
- 12/17: gnu: clusterssh: Update to 1.8.2., guix-commits, 2019/11/13
- 17/17: gnu: pfff: Don't use unstable tarball., guix-commits, 2019/11/13
- 15/17: gnu: enca: Don't use unstable tarball., guix-commits, 2019/11/13
- 13/17: gnu: libsrtp: Don't use unstable tarball., guix-commits, 2019/11/13