[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/08: gnu: yaml-cpp: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
02/08: gnu: yaml-cpp: Don't use unstable tarball. |
Date: |
Sun, 3 Nov 2019 14:09:40 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 417b07ab34e72d613d877fb0fde25c3cbc6805a5
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Sun Nov 3 18:22:48 2019 +0100
gnu: yaml-cpp: Don't use unstable tarball.
* gnu/packages/serialization.scm (yaml-cpp)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
---
gnu/packages/serialization.scm | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 48dcf8d..2bd1872 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -261,14 +261,15 @@ that implements both the msgpack and msgpack-rpc
specifications.")
(package
(name "yaml-cpp")
(version "0.6.3")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/jbeder/yaml-cpp/archive/"
- "yaml-cpp-" version ".tar.gz"))
- (sha256
- (base32
- "1vgi193c761xaalq7r62ahiyvg7m32ab4z104k1s12kinf81pskp"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jbeder/yaml-cpp.git")
+ (commit (string-append "yaml-cpp-" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0ykkxzxcwwiv8l8r697gyqh1nl582krpvi7m7l6b40ijnk4pw30s"))))
(build-system cmake-build-system)
(arguments
'(#:configure-flags '("-DYAML_BUILD_SHARED_LIBS=ON")))
- branch master updated (22c313e -> 7dadce3), guix-commits, 2019/11/03
- 06/08: gnu: xfburn: Don't use NAME in source URI., guix-commits, 2019/11/03
- 01/08: gnu: yaml-cpp: Update to 0.6.3., guix-commits, 2019/11/03
- 08/08: gnu: xtl: Update to 0.6.8., guix-commits, 2019/11/03
- 05/08: gnu: xfce4-screenshooter: Update to 1.9.7., guix-commits, 2019/11/03
- 03/08: gnu: android-udev-rules: Update to 20191103., guix-commits, 2019/11/03
- 04/08: gnu: android-udev-rules: Use GIT-FILE-NAME., guix-commits, 2019/11/03
- 07/08: gnu: xfburn: Update to 0.6.1., guix-commits, 2019/11/03
- 02/08: gnu: yaml-cpp: Don't use unstable tarball.,
guix-commits <=