GNU bug report logs - #45939
[PATCH] gnu: zziplib: Update to 0.13.72.

Previous Next

Package: guix-patches;

Reported by: Vincent Legoll <vincent.legoll <at> gmail.com>

Date: Sun, 17 Jan 2021 16:30:02 UTC

Severity: normal

Tags: patch

Done: Leo Famulari <leo <at> famulari.name>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 45939 in the body.
You can then email your comments to 45939 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#45939; Package guix-patches. (Sun, 17 Jan 2021 16:30:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Vincent Legoll <vincent.legoll <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 17 Jan 2021 16:30:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Vincent Legoll <vincent.legoll <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Vincent Legoll <vincent.legoll <at> gmail.com>
Subject: [PATCH] gnu: zziplib: Update to 0.13.72.
Date: Sun, 17 Jan 2021 17:29:37 +0100
* gnu/packages/compression.scm (version): Update to 0.13.72.
(build-system): Use meson-build-system, (arguments): Remove field,
(native-inputs): Use python instead of python-2.
---
 gnu/packages/compression.scm | 18 +++---------------
 1 file changed, 3 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index d8d97b427e..5fe2c4e8b2 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1665,7 +1665,7 @@ timestamps in the file header with a fixed time (1 January 2008).
 (define-public zziplib
   (package
     (name "zziplib")
-    (version "0.13.71")
+    (version "0.13.72")
     (home-page "https://github.com/gdraheim/zziplib")
     (source (origin
               (method git-fetch)
@@ -1674,20 +1674,8 @@ timestamps in the file header with a fixed time (1 January 2008).
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "109vznm9cxkqbj5r83qdgcdfk0j4kbg96dqr0q085nhwpgkw7viz"))))
-    (build-system gnu-build-system)
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'make-files-writable
-           (lambda _
-             (for-each make-file-writable
-                       (find-files "." #:directories? #t))
-             #t)))
-       ;; XXX: The default test target attempts to download external resources and
-       ;; fails without error: <https://github.com/gdraheim/zziplib/issues/53>.
-       ;; To prevent confusing log messages, just run a simple zip test that works.
-       #:test-target "check-readme"))
+                "0i6bpa2b13z19alm6ig80364dnin1w28cvif18k6wkkb0w3dzp8y"))))
+    (build-system cmake-build-system)
     (inputs
      `(("zlib" ,zlib)))
     (native-inputs `(("perl" ,perl)     ; for the documentation
-- 
2.30.0





Information forwarded to guix-patches <at> gnu.org:
bug#45939; Package guix-patches. (Sun, 17 Jan 2021 16:32:01 GMT) Full text and rfc822 format available.

Message #8 received at 45939 <at> debbugs.gnu.org (full text, mbox):

From: Vincent Legoll <vincent.legoll <at> gmail.com>
To: 45939 <at> debbugs.gnu.org
Subject: [PATCH] gnu: zziplib: Update to 0.13.72.
Date: Sun, 17 Jan 2021 17:31:17 +0100
This one should go to core-updates.

I'm currently rebuilding a few dependents...

-- 
Vincent Legoll




Information forwarded to guix-patches <at> gnu.org:
bug#45939; Package guix-patches. (Thu, 21 Jan 2021 18:41:01 GMT) Full text and rfc822 format available.

Message #11 received at 45939 <at> debbugs.gnu.org (full text, mbox):

From: Vincent Legoll <vincent.legoll <at> gmail.com>
To: 45939 <at> debbugs.gnu.org
Cc: Vincent Legoll <vincent.legoll <at> gmail.com>
Subject: [PATCH] gnu: zziplib: Update to 0.13.72.
Date: Thu, 21 Jan 2021 19:40:30 +0100
* gnu/packages/compression.scm (version): Update to 0.13.72.
(build-system): Use cmake-build-system, (arguments): Remove field.
---
 gnu/packages/compression.scm | 18 +++---------------
 1 file changed, 3 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index d8d97b427e..5fe2c4e8b2 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1665,7 +1665,7 @@ timestamps in the file header with a fixed time (1 January 2008).
 (define-public zziplib
   (package
     (name "zziplib")
-    (version "0.13.71")
+    (version "0.13.72")
     (home-page "https://github.com/gdraheim/zziplib")
     (source (origin
               (method git-fetch)
@@ -1674,20 +1674,8 @@ timestamps in the file header with a fixed time (1 January 2008).
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "109vznm9cxkqbj5r83qdgcdfk0j4kbg96dqr0q085nhwpgkw7viz"))))
-    (build-system gnu-build-system)
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'make-files-writable
-           (lambda _
-             (for-each make-file-writable
-                       (find-files "." #:directories? #t))
-             #t)))
-       ;; XXX: The default test target attempts to download external resources and
-       ;; fails without error: <https://github.com/gdraheim/zziplib/issues/53>.
-       ;; To prevent confusing log messages, just run a simple zip test that works.
-       #:test-target "check-readme"))
+                "0i6bpa2b13z19alm6ig80364dnin1w28cvif18k6wkkb0w3dzp8y"))))
+    (build-system cmake-build-system)
     (inputs
      `(("zlib" ,zlib)))
     (native-inputs `(("perl" ,perl)     ; for the documentation
-- 
2.30.0





Reply sent to Leo Famulari <leo <at> famulari.name>:
You have taken responsibility. (Thu, 21 Jan 2021 20:52:02 GMT) Full text and rfc822 format available.

Notification sent to Vincent Legoll <vincent.legoll <at> gmail.com>:
bug acknowledged by developer. (Thu, 21 Jan 2021 20:52:02 GMT) Full text and rfc822 format available.

Message #16 received at 45939-done <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: Vincent Legoll <vincent.legoll <at> gmail.com>
Cc: 45939-done <at> debbugs.gnu.org
Subject: Re: [bug#45939] [PATCH] gnu: zziplib: Update to 0.13.72.
Date: Thu, 21 Jan 2021 15:51:11 -0500
On Thu, Jan 21, 2021 at 07:40:30PM +0100, Vincent Legoll wrote:
> * gnu/packages/compression.scm (version): Update to 0.13.72.
> (build-system): Use cmake-build-system, (arguments): Remove field.

Thanks! I fixed the commit message and pushed to core-updates as
3c9e1faa95a8ebf25696d615957f1e2f43bc819f





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 19 Feb 2021 12:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 67 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.