[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: import: github: Do not update URI for packages using git-fetch.
From: |
guix-commits |
Subject: |
01/01: import: github: Do not update URI for packages using git-fetch. |
Date: |
Wed, 16 Jan 2019 11:19:55 -0500 (EST) |
arunisaac pushed a commit to branch master
in repository guix.
commit 9a5091d0c181453d0f31ce97f96a4e577a25e796
Author: Arun Isaac <address@hidden>
Date: Wed Jan 16 15:21:06 2019 +0530
import: github: Do not update URI for packages using git-fetch.
* guix/import/github.scm (updated-github-url): Return the unchanged source
URI
for packages using git-fetch.
[updated-url]: Do not handle URIs which end with ".git".
---
guix/import/github.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/guix/import/github.scm b/guix/import/github.scm
index ad662e7..b287313 100644
--- a/guix/import/github.scm
+++ b/guix/import/github.scm
@@ -2,6 +2,7 @@
;;; Copyright © 2016 Ben Woodcroft <address@hidden>
;;; Copyright © 2017, 2018 Ludovic Courtès <address@hidden>
;;; Copyright © 2018 Eric Bavier <address@hidden>
+;;; Copyright © 2019 Arun Isaac <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -54,7 +55,6 @@ false if none is recognized"
(github-user-slash-repository url)))
(repo (github-repository url)))
(cond
- ((string-suffix? ".git" url) url)
((string-suffix? (string-append "/tarball/v" version) url)
(string-append prefix "/tarball/v" new-version))
((string-suffix? (string-append "/tarball/" version) url)
@@ -99,7 +99,7 @@ false if none is recognized"
((source-uri ...)
(find updated-url source-uri))))
((eq? fetch-method download:git-fetch)
- (updated-url (download:git-reference-url source-uri)))
+ (download:git-reference-url source-uri))
(else #f))))
(define (github-package? package)