[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/09: gnu: jrnl: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
03/09: gnu: jrnl: Don't use unstable tarball. |
Date: |
Sun, 3 Nov 2019 01:57:19 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 3d871095f2aec355bc4ebea63e75f76dbc79a9be
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Sun Nov 3 06:04:57 2019 +0100
gnu: jrnl: Don't use unstable tarball.
* gnu/packages/jrnl.scm (jrnl)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
---
gnu/packages/jrnl.scm | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/jrnl.scm b/gnu/packages/jrnl.scm
index 6393ea9..e5e2a4b 100644
--- a/gnu/packages/jrnl.scm
+++ b/gnu/packages/jrnl.scm
@@ -2,6 +2,7 @@
;;; Copyright © 2014 Eric Bavier <address@hidden>
;;; Copyright © 2015 Mark H Weaver <address@hidden>
;;; Copyright © 2016 Efraim Flashner <address@hidden>
+;;; Copyright © 2019 Tobias Geerinckx-Rice <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -21,7 +22,7 @@
(define-module (gnu packages jrnl)
#:use-module (guix packages)
#:use-module (guix licenses)
- #:use-module (guix download)
+ #:use-module (guix git-download)
#:use-module (guix build-system python)
#:use-module (gnu packages check)
#:use-module (gnu packages python)
@@ -35,13 +36,13 @@
(version "1.9.7")
(source
(origin
- (method url-fetch)
- (uri (string-append "https://github.com/maebert/jrnl/archive/"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "0mfq7hhw5np2dj9jlxpyyk2cg9i0xgz2brb894d928hczszy97bq"))))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/maebert/jrnl.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1bjjyfc3fnsy0h299s3jj42wnigj43xdyp5ppi1cvkqbwl369935"))))
(build-system python-build-system)
(native-inputs
`(("behave" ,behave)))
- branch master updated (73282c7 -> b82bd90), guix-commits, 2019/11/03
- 08/09: gnu: colormake: Use HTTPS home page., guix-commits, 2019/11/03
- 07/09: gnu: colormake: Don't use unstable tarball., guix-commits, 2019/11/03
- 06/09: gnu: lci: Don't use unstable tarball., guix-commits, 2019/11/03
- 02/09: gnu: withershins: Don't use unstable tarball., guix-commits, 2019/11/03
- 01/09: gnu: withershins: Build., guix-commits, 2019/11/03
- 05/09: gnu: makefile2graph: Don't use unstable tarball., guix-commits, 2019/11/03
- 03/09: gnu: jrnl: Don't use unstable tarball.,
guix-commits <=
- 09/09: gnu: spectrwm: Don't use unstable tarball., guix-commits, 2019/11/03
- 04/09: gnu: bash-tap: Don't use unstable tarball., guix-commits, 2019/11/03