emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#34097: closed ([PATCH] import: github: Do not upda


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#34097: closed ([PATCH] import: github: Do not update URI for packages using git-fetch.)
Date: Wed, 16 Jan 2019 16:23:01 +0000

Your message dated Wed, 16 Jan 2019 21:51:42 +0530
with message-id <address@hidden>
and subject line Re: [bug#34097] [PATCH] import: github: Do not update URI for 
packages using git-fetch.
has caused the debbugs.gnu.org bug report #34097,
regarding [PATCH] import: github: Do not update URI for packages using 
git-fetch.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
34097: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=34097
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] import: github: Do not update URI for packages using git-fetch. Date: Wed, 16 Jan 2019 15:43:09 +0530
During `guix refresh PACKAGE`, the source URI for packages using
git-fetch need not be updated. It can be returned unchanged, as it
is. The attached patch does that.

As a side issue, without this patch, git-fetch packages that do not have
a source URI ending in ".git" are not updated correctly using `guix
refresh PACKAGE`. See the package emacs-evil for an example.

From f63bf518395a06dd0c947222e177a66e59c59e96 Mon Sep 17 00:00:00 2001
From: Arun Isaac <address@hidden>
Date: Wed, 16 Jan 2019 15:21:06 +0530
Subject: [PATCH] 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 ad662e7b02..b287313d98 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)
-- 
2.19.2

Attachment: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message --- Subject: Re: [bug#34097] [PATCH] import: github: Do not update URI for packages using git-fetch. Date: Wed, 16 Jan 2019 21:51:42 +0530
Pushed! Thank you both for the review.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]