unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#64264] [PATCH 0/2] Update signify
@ 2023-06-24 12:19 Timotej Lazar
  2023-06-24 12:20 ` [bug#64264] [PATCH 1/2] gnu: signify: Update to 31 Timotej Lazar
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Timotej Lazar @ 2023-06-24 12:19 UTC (permalink / raw)
  To: 64264; +Cc: Timotej Lazar

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





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#64264] [PATCH 1/2] gnu: signify: Update to 31.
  2023-06-24 12:19 [bug#64264] [PATCH 0/2] Update signify Timotej Lazar
@ 2023-06-24 12:20 ` Timotej Lazar
  2023-06-24 12:20 ` [bug#64264] [PATCH 2/2] gnu: signify: Use new package style Timotej Lazar
  2023-08-07 13:19 ` bug#64264: [PATCH 0/2] Update signify Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Timotej Lazar @ 2023-06-24 12:20 UTC (permalink / raw)
  To: 64264; +Cc: Timotej Lazar

* 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





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#64264] [PATCH 2/2] gnu: signify: Use new package style.
  2023-06-24 12:19 [bug#64264] [PATCH 0/2] Update signify Timotej Lazar
  2023-06-24 12:20 ` [bug#64264] [PATCH 1/2] gnu: signify: Update to 31 Timotej Lazar
@ 2023-06-24 12:20 ` Timotej Lazar
  2023-08-07 13:19 ` bug#64264: [PATCH 0/2] Update signify Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Timotej Lazar @ 2023-06-24 12:20 UTC (permalink / raw)
  To: 64264; +Cc: Timotej Lazar

* 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





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#64264: [PATCH 0/2] Update signify
  2023-06-24 12:19 [bug#64264] [PATCH 0/2] Update signify Timotej Lazar
  2023-06-24 12:20 ` [bug#64264] [PATCH 1/2] gnu: signify: Update to 31 Timotej Lazar
  2023-06-24 12:20 ` [bug#64264] [PATCH 2/2] gnu: signify: Use new package style Timotej Lazar
@ 2023-08-07 13:19 ` Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2023-08-07 13:19 UTC (permalink / raw)
  To: Timotej Lazar; +Cc: Tobias Geerinckx-Rice, 64264-done

Hi,

Timotej Lazar <timotej.lazar@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’.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-08-07 13:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-24 12:19 [bug#64264] [PATCH 0/2] Update signify Timotej Lazar
2023-06-24 12:20 ` [bug#64264] [PATCH 1/2] gnu: signify: Update to 31 Timotej Lazar
2023-06-24 12:20 ` [bug#64264] [PATCH 2/2] gnu: signify: Use new package style Timotej Lazar
2023-08-07 13:19 ` bug#64264: [PATCH 0/2] Update signify Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).