[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/14: gnu: xlsx2csv: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
06/14: gnu: xlsx2csv: Don't use unstable tarball. |
Date: |
Sun, 10 Feb 2019 11:48:56 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 3047c7baae84271080336936e12c89bad5c3559f
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Sun Feb 10 01:27:03 2019 +0100
gnu: xlsx2csv: Don't use unstable tarball.
* gnu/packages/xml.scm (xlsx2csv)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
---
gnu/packages/xml.scm | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 7d67788..0479b7c 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -55,6 +55,7 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
+ #:use-module (guix git-download)
#:use-module (guix build-system ant)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
@@ -1204,15 +1205,15 @@ elements to their parents
(package
(name "xlsx2csv")
(version "0.7.4")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/dilshod/"
- name "/archive/" version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "029yp4nlgz079drqxg3kxda98a2lqwgbg8x5q6kfwjm90gnffzda"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dilshod/xlsx2csv.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "168dm6p7w6pvgd87yb9hcxv9y0liv6mxgril202nfva68cp8y939"))))
(build-system python-build-system)
(arguments
`(#:python ,python-2 ; use python-2 for the test script
- branch master updated (9ce09a7 -> b05bc3c), guix-commits, 2019/02/10
- 03/14: gnu: clojure-algo-monads: Don't use unstable tarball., guix-commits, 2019/02/10
- 04/14: gnu: clojure-tools-macro: Don't use unstable tarball., guix-commits, 2019/02/10
- 01/14: gnu: xinetd: Don't use unstable tarball., guix-commits, 2019/02/10
- 09/14: gnu: java-kxml2: Don't use unstable tarball., guix-commits, 2019/02/10
- 13/14: gnu: java-xom: Don't use unstable tarball., guix-commits, 2019/02/10
- 12/14: gnu: java-jettison: Don't use unstable tarball., guix-commits, 2019/02/10
- 07/14: gnu: java-groovy-bootstrap: Don't use unstable tarball., guix-commits, 2019/02/10
- 06/14: gnu: xlsx2csv: Don't use unstable tarball.,
guix-commits <=
- 14/14: gnu: java-xstream: Don't use unstable tarball., guix-commits, 2019/02/10
- 10/14: gnu: java-jdom2: Don't use unstable tarball., guix-commits, 2019/02/10
- 11/14: gnu: tinyxml2: Don't use unstable tarball., guix-commits, 2019/02/10
- 08/14: gnu: java-dom4j: Don't use unstable tarball., guix-commits, 2019/02/10
- 02/14: gnu: clojure-algo-generic: Don't use unstable tarball., guix-commits, 2019/02/10
- 05/14: gnu: xlsx2csv: Update to 0.7.4., guix-commits, 2019/02/10