GNU bug report logs - #64264
[PATCH 0/2] Update signify

Previous Next

Package: guix-patches;

Reported by: Timotej Lazar <timotej.lazar <at> araneo.si>

Date: Sat, 24 Jun 2023 12:20:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

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 64264 in the body.
You can then email your comments to 64264 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#64264; Package guix-patches. (Sat, 24 Jun 2023 12:20:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Timotej Lazar <timotej.lazar <at> araneo.si>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 24 Jun 2023 12:20:02 GMT) Full text and rfc822 format available.

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

From: Timotej Lazar <timotej.lazar <at> araneo.si>
To: guix-patches <at> gnu.org
Cc: Timotej Lazar <timotej.lazar <at> araneo.si>
Subject: [PATCH 0/2] Update signify
Date: Sat, 24 Jun 2023 14:19:25 +0200
Update signify to latest release and switch to new package style.

Timotej Lazar (2):
  gnu: signify: Update to 31.
  gnu: signify: Use new package style.

 gnu/packages/crypto.scm | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)


base-commit: d6dc82e8cdb2d6114a12b06d449ce7f1150c7f70
-- 
2.40.1





Information forwarded to guix-patches <at> gnu.org:
bug#64264; Package guix-patches. (Sat, 24 Jun 2023 12:22:01 GMT) Full text and rfc822 format available.

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

From: Timotej Lazar <timotej.lazar <at> araneo.si>
To: 64264 <at> debbugs.gnu.org
Cc: Timotej Lazar <timotej.lazar <at> araneo.si>
Subject: [PATCH 1/2] gnu: signify: Update to 31.
Date: Sat, 24 Jun 2023 14:20:41 +0200
* gnu/packages/crypto.scm (signify): Update to 31.
[source]: Add snippet to delete bundled libbsd.
[license]: Drop bsd-4 as it was replaced with bsd-3.
---
 gnu/packages/crypto.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index 9b89c7d545..655320a470 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -216,7 +216,7 @@ (define-public libmd
 (define-public signify
   (package
     (name "signify")
-    (version "30")
+    (version "31")
     (home-page "https://github.com/aperezdc/signify")
     (source (origin
               (method url-fetch)
@@ -224,7 +224,9 @@ (define-public signify
                                   "/download/v" version "/signify-" version ".tar.xz"))
               (sha256
                (base32
-                "11l67j04gyxnlw6zrzsygqs5cgsc1sww1rh0apl05yay131hd17n"))))
+                "0x1bipfphnyvf2kl7n9q4gawaglma79368vb8whama6lxsggsm8i"))
+              (modules '((guix build utils)))
+              (snippet '(delete-file-recursively "libbsd"))))
     (build-system gnu-build-system)
     ;; TODO Build with libwaive (described in README.md), to implement something
     ;; like OpenBSD's pledge().
@@ -245,7 +247,7 @@ (define-public signify
 OpenBSD tool of the same name.")
     ;; This package includes third-party code that was originally released under
     ;; various non-copyleft licenses. See the source files for clarification.
-    (license (list license:bsd-3 license:bsd-4 license:expat license:isc
+    (license (list license:bsd-3 license:expat license:isc
                    license:public-domain (license:non-copyleft
                                           "file://base64.c"
                                           "See base64.c in the distribution for
-- 
2.40.1





Information forwarded to guix-patches <at> gnu.org:
bug#64264; Package guix-patches. (Sat, 24 Jun 2023 12:22:02 GMT) Full text and rfc822 format available.

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

From: Timotej Lazar <timotej.lazar <at> araneo.si>
To: 64264 <at> debbugs.gnu.org
Cc: Timotej Lazar <timotej.lazar <at> araneo.si>
Subject: [PATCH 2/2] gnu: signify: Use new package style.
Date: Sat, 24 Jun 2023 14:20:42 +0200
* gnu/packages/crypto.scm (signify)[arguments]: Use gexps.
---
 gnu/packages/crypto.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index 655320a470..3a753831f5 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -231,12 +231,12 @@ (define-public signify
     ;; TODO Build with libwaive (described in README.md), to implement something
     ;; like OpenBSD's pledge().
     (arguments
-     `(#:make-flags
-       (list ,(string-append "CC=" (cc-for-target))
-             (string-append "PREFIX=" (assoc-ref %outputs "out")))
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure))))
+     (list #:make-flags
+           #~(list (string-append "CC=" #$(cc-for-target))
+                   (string-append "PREFIX=" #$output))
+           #:phases
+           #~(modify-phases %standard-phases
+               (delete 'configure))))
     (native-inputs
      (list pkg-config))
     (inputs
-- 
2.40.1





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Mon, 07 Aug 2023 13:20:01 GMT) Full text and rfc822 format available.

Notification sent to Timotej Lazar <timotej.lazar <at> araneo.si>:
bug acknowledged by developer. (Mon, 07 Aug 2023 13:20:02 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Timotej Lazar <timotej.lazar <at> araneo.si>
Cc: Tobias Geerinckx-Rice <me <at> tobias.gr>, 64264-done <at> debbugs.gnu.org
Subject: Re: bug#64264: [PATCH 0/2] Update signify
Date: Mon, 07 Aug 2023 15:19:36 +0200
Hi,

Timotej Lazar <timotej.lazar <at> araneo.si> skribis:

>   gnu: signify: Update to 31.
>   gnu: signify: Use new package style.

Some of it was done in parallel by Tobias; I’ve now applied the missing
bits.

Thanks!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 05 Sep 2023 11:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 7 days ago.

Previous Next


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