guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: libarchive: Update to 3.2.1.


From: Efraim Flashner
Subject: 01/04: gnu: libarchive: Update to 3.2.1.
Date: Wed, 22 Jun 2016 03:52:39 +0000 (UTC)

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

commit 09cbd53c5fd871cf5ac1d7f80a5ed1c70b615340
Author: Efraim Flashner <address@hidden>
Date:   Tue Jun 21 21:36:12 2016 +0300

    gnu: libarchive: Update to 3.2.1.
    
    * gnu/packages/backup.scm (libarchive): Update to 3.2.1.
    [arguments]: Build with '-std=C99'.
---
 gnu/packages/backup.scm |    9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm
index a0ff535..eb36238 100644
--- a/gnu/packages/backup.scm
+++ b/gnu/packages/backup.scm
@@ -136,7 +136,7 @@ backups (called chunks) to allow easy burning to CD/DVD.")
 (define-public libarchive
   (package
     (name "libarchive")
-    (version "3.2.0")
+    (version "3.2.1")
     (source
      (origin
        (method url-fetch)
@@ -144,7 +144,7 @@ backups (called chunks) to allow easy burning to CD/DVD.")
                            version ".tar.gz"))
        (sha256
         (base32
-         "11xabdpmvdmcdkidigmqh4ymhra95lr7ipcys4hdq0gzf7ylbkkv"))))
+         "1lngng84k1kkljl74q0cdqc3s82vn2kimfm02dgm4d6m7x71mvkj"))))
     (build-system gnu-build-system)
     ;; TODO: Add -L/path/to/nettle in libarchive.pc.
     (inputs
@@ -175,7 +175,10 @@ backups (called chunks) to allow easy burning to CD/DVD.")
                 (zero? (system* "./libarchive_test" "^test_*_disk*"))
                 (zero? (system* "./bsdcpio_test" "^test_owner_parse"))
                 (zero? (system* "./bsdtar_test"))))
-         %standard-phases))))
+         %standard-phases))
+       ;; libarchive/test/test_write_format_gnutar_filenames.c needs to be
+       ;; compiled with C99 or C11 or a gnu variant.
+       #:configure-flags '("CFLAGS=-O2 -g -std=c99")))
     (home-page "http://libarchive.org/";)
     (synopsis "Multi-format archive and compression library")
     (description



reply via email to

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