guix-commits
[Top][All Lists]
Advanced

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

02/02: build: svn: Handle fetch errors.


From: guix-commits
Subject: 02/02: build: svn: Handle fetch errors.
Date: Tue, 6 Oct 2020 04:25:09 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit 2fb12dd1bb725592e1561ac8f4b32fb68accb161
Author: zimoun <zimon.toutoune@gmail.com>
AuthorDate: Mon Oct 5 18:47:39 2020 +0200

    build: svn: Handle fetch errors.
    
    * guix/build/svn.scm (svn-fetch): Add 'guard' to handle errors.
    
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 guix/build/svn.scm | 46 +++++++++++++++++++++++++++++++---------------
 1 file changed, 31 insertions(+), 15 deletions(-)

diff --git a/guix/build/svn.scm b/guix/build/svn.scm
index 33783f3..48d28f0 100644
--- a/guix/build/svn.scm
+++ b/guix/build/svn.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2014 Sree Harsha Totakura <sreeharsha@totakura.in>
 ;;; Copyright © 2018 Mark H Weaver <mhw@netris.org>
+;;; Copyright © 2020 Simon Tournier <zimon.toutoune@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -20,6 +21,8 @@
 
 (define-module (guix build svn)
   #:use-module (guix build utils)
+  #:use-module (srfi srfi-34)
+  #:use-module (ice-9 format)
   #:export (svn-fetch))
 
 ;;; Commentary:
@@ -36,20 +39,33 @@
                     (password #f))
   "Fetch REVISION from URL into DIRECTORY.  REVISION must be an integer, and a
 valid Subversion revision.  Return #t on success, #f otherwise."
-  (apply invoke svn-command
-         "export" "--non-interactive"
-         ;; Trust the server certificate.  This is OK as we
-         ;; verify the checksum later.  This can be removed when
-         ;; ca-certificates package is added.
-         "--trust-server-cert" "-r" (number->string revision)
-         `(,@(if (and user-name password)
-                 (list (string-append "--username=" user-name)
-                       (string-append "--password=" password))
-                 '())
-           ,@(if recursive?
-                 '()
-                 (list "--ignore-externals"))
-           ,url ,directory))
-  #t)
+  (mkdir-p directory)
+
+  (guard (c ((invoke-error? c)
+             (format (current-error-port)
+                     "svn-fetch: '~a~{ ~a~}' failed with exit code ~a~%"
+                     (invoke-error-program c)
+                     (invoke-error-arguments c)
+                     (or (invoke-error-exit-status c)
+                         (invoke-error-stop-signal c)
+                         (invoke-error-term-signal c)))
+             (delete-file-recursively directory)
+             #f))
+    (with-directory-excursion directory
+      (apply invoke svn-command
+             "export" "--non-interactive"
+             ;; Trust the server certificate.  This is OK as we
+             ;; verify the checksum later.  This can be removed when
+             ;; ca-certificates package is added.
+             "--trust-server-cert" "-r" (number->string revision)
+             `(,@(if (and user-name password)
+                     (list (string-append "--username=" user-name)
+                           (string-append "--password=" password))
+                     '())
+               ,@(if recursive?
+                     '()
+                     (list "--ignore-externals"))
+               ,url ,directory))
+      #t)))
 
 ;;; svn.scm ends here



reply via email to

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