[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/203: gnu: gitolite: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
05/203: gnu: gitolite: Don't use unstable tarball. |
Date: |
Wed, 10 Apr 2019 14:57:04 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 6a8472d1d982c9ef8ba623cc6546adf894601fab
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Sat Mar 30 20:22:00 2019 +0100
gnu: gitolite: Don't use unstable tarball.
* gnu/packages/version-control.scm (gitolite)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
---
gnu/packages/version-control.scm | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 8f06d42..45413de 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1101,15 +1101,15 @@ also walk each side of a merge and test those changes
individually.")
(package
(name "gitolite")
(version "3.6.7")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/sitaramc/gitolite/archive/v"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "1idxipg0df80bhjcxgwxs3lllqnkvhwpinmfv1xvg1l98fxiapgp"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/sitaramc/gitolite.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0rmyzr66lxh2ildf3h1nh3hh2ndwk21rjdin50r5vhwbdd7jg8vb"))))
(build-system gnu-build-system)
(arguments
'(#:tests? #f ; no tests
- branch master updated (3e4e74c -> 81a9ab8), guix-commits, 2019/04/10
- 05/203: gnu: gitolite: Don't use unstable tarball.,
guix-commits <=
- 04/203: gnu: vcsh: Don't use unstable tarball., guix-commits, 2019/04/10
- 03/203: gnu: python-ghp-import: Don't use unstable tarball., guix-commits, 2019/04/10
- 06/203: gnu: findnewest: Don't use unstable tarball., guix-commits, 2019/04/10
- 14/203: gnu: emacs-es-mode: Don't use unstable tarball., guix-commits, 2019/04/10
- 01/203: gnu: emacs-js2-mode: Don't use unstable tarball., guix-commits, 2019/04/10
- 09/203: gnu: emacs-d-mode: Don't use unstable tarball., guix-commits, 2019/04/10
- 16/203: gnu: emacs-fill-column-indicator: Don't use unstable tarball., guix-commits, 2019/04/10
- 19/203: gnu: emacs-shut-up: Don't use unstable tarball., guix-commits, 2019/04/10
- 20/203: gnu: emacs-undercover: Don't use unstable tarball., guix-commits, 2019/04/10
- 26/203: gnu: emacs-rich-minority: Don't use unstable tarball., guix-commits, 2019/04/10