guix-commits
[Top][All Lists]
Advanced

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

04/07: cvs: Disable compression.


From: Ludovic Courtès
Subject: 04/07: cvs: Disable compression.
Date: Thu, 31 Mar 2016 22:05:49 +0000

civodul pushed a commit to branch master
in repository guix.

commit f4033fb5da9f07dce2b8049b1d7214c492790581
Author: Ludovic Courtès <address@hidden>
Date:   Thu Mar 31 23:52:15 2016 +0200

    cvs: Disable compression.
    
    Reported by Jan Nieuwenhuizen <address@hidden>.
    
    * guix/build/cvs.scm (cvs-fetch): Use -z0.
---
 guix/build/cvs.scm |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/guix/build/cvs.scm b/guix/build/cvs.scm
index 033b626..9976e62 100644
--- a/guix/build/cvs.scm
+++ b/guix/build/cvs.scm
@@ -52,7 +52,10 @@
   "Fetch REVISION from MODULE of CVS-ROOT-DIRECTORY into DIRECTORY.  REVISION
 must either be a date in ISO-8601 format (e.g. \"2012-12-21\") or a CVS tag.
 Return #t on success, #f otherwise."
-  (and (zero? (system* cvs-command "-z3"
+  ;; Use "-z0" because enabling compression leads to hangs during checkout on
+  ;; certain repositories, such as
+  ;; ":pserver:address@hidden:/sources/gnustandards".
+  (and (zero? (system* cvs-command "-z0"
                        "-d" cvs-root-directory
                        "checkout"
                        (if (string-match "^[0-9]{4}-[0-9]{2}-[0-9]{2}$" 
revision)



reply via email to

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