guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: cpio: Fix symlink-bad-length test.


From: Mark H. Weaver
Subject: 01/01: gnu: cpio: Fix symlink-bad-length test.
Date: Thu, 18 Jun 2015 03:20:37 +0000

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

commit 9ae1e920718e95577c12de890754b6a6a4ff70a1
Author: Mark H Weaver <address@hidden>
Date:   Wed Jun 17 22:13:33 2015 -0400

    gnu: cpio: Fix symlink-bad-length test.
    
    * gnu/packages/patches/cpio-fix-symlink-bad-length-test.patch: New file.
    * gnu-system.am (dist_patch_DATA): Add it.
    * gnu/packages/cpio.scm (cpio): Add patch.
---
 gnu-system.am                                      |    1 +
 gnu/packages/cpio.scm                              |   14 ++++---
 .../patches/cpio-fix-symlink-bad-length-test.patch |   44 ++++++++++++++++++++
 3 files changed, 53 insertions(+), 6 deletions(-)

diff --git a/gnu-system.am b/gnu-system.am
index 81d87ae..b43d541 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -402,6 +402,7 @@ dist_patch_DATA =                                           
\
   gnu/packages/patches/cpio-CVE-2014-9112-pt3.patch            \
   gnu/packages/patches/cpio-CVE-2014-9112-pt4.patch            \
   gnu/packages/patches/cpio-CVE-2014-9112-pt5.patch            \
+  gnu/packages/patches/cpio-fix-symlink-bad-length-test.patch  \
   gnu/packages/patches/cpio-gets-undeclared.patch              \
   gnu/packages/patches/cpufrequtils-fix-aclocal.patch          \
   gnu/packages/patches/crossmap-allow-system-pysam.patch       \
diff --git a/gnu/packages/cpio.scm b/gnu/packages/cpio.scm
index 87f85d0..cfb4162 100644
--- a/gnu/packages/cpio.scm
+++ b/gnu/packages/cpio.scm
@@ -36,12 +36,14 @@
              (sha256
               (base32
                "1gavgpzqwgkpagjxw72xgxz52y1ifgz0ckqh8g7cckz7jvyhp0mv"))
-             (patches (list (search-patch "cpio-CVE-2014-9112-pt1.patch")
-                            (search-patch "cpio-CVE-2014-9112-pt2.patch")
-                            (search-patch "cpio-CVE-2014-9112-pt3.patch")
-                            (search-patch "cpio-CVE-2014-9112-pt4.patch")
-                            (search-patch "cpio-CVE-2014-9112-pt5.patch")
-                            (search-patch "cpio-gets-undeclared.patch")))))
+             (patches (map search-patch
+                           '("cpio-CVE-2014-9112-pt1.patch"
+                             "cpio-CVE-2014-9112-pt2.patch"
+                             "cpio-CVE-2014-9112-pt3.patch"
+                             "cpio-CVE-2014-9112-pt4.patch"
+                             "cpio-CVE-2014-9112-pt5.patch"
+                             "cpio-fix-symlink-bad-length-test.patch"
+                             "cpio-gets-undeclared.patch")))))
     (build-system gnu-build-system)
 
     ;; FIXME: autoconf is needed to run autom4te, to update to test suite
diff --git a/gnu/packages/patches/cpio-fix-symlink-bad-length-test.patch 
b/gnu/packages/patches/cpio-fix-symlink-bad-length-test.patch
new file mode 100644
index 0000000..58a5a47
--- /dev/null
+++ b/gnu/packages/patches/cpio-fix-symlink-bad-length-test.patch
@@ -0,0 +1,44 @@
+From bebf9662c406d1d137a66c567d8748b489d352e7 Mon Sep 17 00:00:00 2001
+From: Pavel Raiskup <address@hidden>
+Date: Thu, 4 Jun 2015 13:27:42 +0200
+Subject: [PATCH] tests: fix expected output for old file
+
+Thanks Victor Rodriguez.  Upstream thread:
+http://lists.gnu.org/archive/html/bug-cpio/2015-06/msg00000.html
+
+* tests/symlink-bad-length.at (STDOUT): Expect the year string
+'2014' is printed and not time because the file in archive is
+older than 6 months.
+* Thanks: Mention Victor.
+---
+ THANKS                      | 1 +
+ tests/symlink-bad-length.at | 2 +-
+ 2 files changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/THANKS b/THANKS
+index 45b0dfb..3228df9 100644
+--- a/THANKS
++++ b/THANKS
+@@ -23,6 +23,7 @@ Mitsuru Chinen               <address@hidden>
+ Peter Breitenlohner     <address@hidden>
+ Peter Vrabec            <address@hidden>
+ Robert Millan           <address@hidden>
++Victor Rodriguez        <address@hidden>
+ 
+ Local Variables:
+ mode: Fundamental
+diff --git a/tests/symlink-bad-length.at b/tests/symlink-bad-length.at
+index e1a7093..2cdc692 100644
+--- a/tests/symlink-bad-length.at
++++ b/tests/symlink-bad-length.at
+@@ -57,7 +57,7 @@ cat stderr | grep -v \
+ echo >&2 STDERR
+ ],
+ [0],
+-[-rw-rw-r--   1 10029    10031          13 Nov 25 11:52 FILE
++[-rw-rw-r--   1 10029    10031          13 Nov 25  2014 FILE
+ ],[STDERR
+ ])
+ 
+-- 
+2.1.0



reply via email to

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