[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/12: gnu: camlp5: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
04/12: gnu: camlp5: Don't use unstable tarball. |
Date: |
Sun, 14 Apr 2019 23:18:52 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 6aade73967c321b8c8818b63728708e20cd122bc
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Tue Apr 9 00:09:54 2019 +0200
gnu: camlp5: Don't use unstable tarball.
* gnu/packages/ocaml.scm (camlp5)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
---
gnu/packages/ocaml.scm | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 2a2a052..a565b2e 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -647,14 +647,15 @@ syntax of OCaml.")
(package
(name "camlp5")
(version "7.07")
- (source (origin
- (method url-fetch)
- (uri (string-append
"https://github.com/camlp5/camlp5/archive/rel"
- (string-delete #\. version) ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "148r6p93xlxi6v7kbsqv8i70r6av04cyn0109pwss5xj6fw97i52"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/camlp5/camlp5.git")
+ (commit (string-append "rel" (string-delete #\. version)))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1c8v45553ccbqha2ypfranqlgw06rr5wjr2hlnrx5bf9jfq0h0dn"))))
(build-system gnu-build-system)
(inputs
`(("ocaml" ,ocaml)))
- branch master updated (f6e3f0f -> a8f52ad), guix-commits, 2019/04/14
- 02/12: gnu: ocaml4.02-ezjsonm: Fix tag., guix-commits, 2019/04/14
- 04/12: gnu: camlp5: Don't use unstable tarball.,
guix-commits <=
- 08/12: gnu: hypre: Don't use unstable tarball., guix-commits, 2019/04/14
- 10/12: gnu: sbcl-cffi-bootstrap: Don't use unstable tarball., guix-commits, 2019/04/14
- 12/12: gnu: laby: Fix build., guix-commits, 2019/04/14
- 01/12: gnu: ocamlbuild: Don't use unstable tarball., guix-commits, 2019/04/14
- 05/12: gnu: emacs-tuareg: Don't use unstable tarball., guix-commits, 2019/04/14
- 03/12: gnu: address@hidden: Don't use unstable tarball., guix-commits, 2019/04/14
- 07/12: gnu: openspecfun: Don't use unstable tarball., guix-commits, 2019/04/14
- 06/12: gnu: muparser: Don't use unstable tarball., guix-commits, 2019/04/14
- 11/12: gnu: sbcl-hunchentoot: Don't use unstable tarball., guix-commits, 2019/04/14
- 09/12: gnu: hypre: Update to 2.15.1., guix-commits, 2019/04/14