all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#36106] [PATCH] guix: git-download: Remove explicit import.
@ 2019-06-05 18:56 Robert Vollmert
  2019-06-06 15:43 ` bug#36106: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Robert Vollmert @ 2019-06-05 18:56 UTC (permalink / raw)
  To: 36106; +Cc: Robert Vollmert

With guile-git version 0.2, repository-working-directory is no
longer private.

* guix/git-download.scm (git-file-list): Refer to public
repository-working-directory.
---
 guix/git-download.scm | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/guix/git-download.scm b/guix/git-download.scm
index 6cf267d6c8..f904d11c25 100644
--- a/guix/git-download.scm
+++ b/guix/git-download.scm
@@ -185,9 +185,7 @@ are relative to DIRECTORY, which is not necessarily the root of the checkout."
          (directory  (string-append (canonicalize-path directory) "/"))
          (dot-git    (repository-discover directory))
          (repository (repository-open dot-git))
-         ;; XXX: This procedure is mistakenly private in Guile-Git 0.1.0.
-         (workdir    ((@@ (git repository) repository-working-directory)
-                      repository))
+         (workdir    (repository-working-directory repository))
          (head       (repository-head repository))
          (oid        (reference-target head))
          (commit     (commit-lookup repository oid))
-- 
2.20.1 (Apple Git-117)

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#36106: [PATCH] guix: git-download: Remove explicit import.
  2019-06-05 18:56 [bug#36106] [PATCH] guix: git-download: Remove explicit import Robert Vollmert
@ 2019-06-06 15:43 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2019-06-06 15:43 UTC (permalink / raw)
  To: Robert Vollmert; +Cc: 36106-done

Hi,

Robert Vollmert <rob@vllmrt.net> skribis:

> With guile-git version 0.2, repository-working-directory is no
> longer private.
>
> * guix/git-download.scm (git-file-list): Refer to public
> repository-working-directory.

Applied, thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-06-06 15:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-05 18:56 [bug#36106] [PATCH] guix: git-download: Remove explicit import Robert Vollmert
2019-06-06 15:43 ` bug#36106: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.