guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: tar: Update to 1.32.


From: guix-commits
Subject: 02/05: gnu: tar: Update to 1.32.
Date: Sat, 23 Feb 2019 15:25:54 -0500 (EST)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 218eb6e611c0a238802bf9cb5742d37cea0bb012
Author: Marius Bakke <address@hidden>
Date:   Sat Feb 23 19:13:37 2019 +0100

    gnu: tar: Update to 1.32.
    
    * gnu/packages/base.scm (tar): Update to 1.32.
    [arguments]: Remove #:make-flags and #:configure-flags.
---
 gnu/packages/base.scm | 26 +++-----------------------
 1 file changed, 3 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 289631a..c252067 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -156,14 +156,14 @@ implementation offers several extensions over the 
standard utility.")
 (define-public tar
   (package
    (name "tar")
-   (version "1.31")
+   (version "1.32")
    (source (origin
             (method url-fetch)
             (uri (string-append "mirror://gnu/tar/tar-"
                                 version ".tar.xz"))
             (sha256
              (base32
-              "1h9dxhjhz1jnyhmh6jfhqw1g1sxqbg3cd32vpwg7x2xxxqffzwrp"))
+              "1n7xy657ii0sa42zx6944v2m4v9qrh6sqgmw17l3nch3y43sxlyh"))
             (patches (search-patches "tar-skip-unreliable-tests.patch"
                                      "tar-remove-wholesparse-check.patch"))))
    (build-system gnu-build-system)
@@ -177,27 +177,7 @@ implementation offers several extensions over the standard 
utility.")
                        (substitute* "src/system.c"
                          (("/bin/sh")
                           (string-append bash "/bin/sh")))
-                       #t))))
-
-      ;; Work around a cross-compilation bug whereby libgnu.a would provide
-      ;; '__mktime_internal', which conflicts with the one in libc.a.
-      ,@(if (%current-target-system)
-            `(#:configure-flags '("gl_cv_func_working_mktime=yes"))
-            '())
-
-      ;; Test #92 "link mismatch" expects "a/z: Not linked to a/y" but gets
-      ;; "a/y: Not linked to a/z" and fails, presumably due to differences in
-      ;; the order in which 'diff' traverses directories.  That leads to a
-      ;; test failure even though conceptually the test passes.  Skip it.
-      ;; Test 117 and 118 are prone to race conditions too, particularly
-      ;; when cross-compiling, so we skip those as well.  All issues have
-      ;; been fixed upstream in these commits:
-      ;; <https://git.savannah.gnu.org/cgit/tar.git/commit/?id=847a36f>
-      ;; <https://git.savannah.gnu.org/cgit/tar.git/commit/?id=64b43fd>
-      #:make-flags (list (string-append
-                          "TESTSUITEFLAGS= -k '!link mismatch,"
-                          "!directory removed before reading,"
-                          "!explicitly named directory removed before 
reading'"))))
+                       #t))))))
 
    ;; When cross-compiling, the 'set-shell-file-name' phase needs to be able
    ;; to refer to the target Bash.



reply via email to

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