[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/13: gnu: signing-party: Add bash-minimal to inputs.
From: |
guix-commits |
Subject: |
04/13: gnu: signing-party: Add bash-minimal to inputs. |
Date: |
Fri, 20 Oct 2023 11:27:37 -0400 (EDT) |
apteryx pushed a commit to branch core-updates
in repository guix.
commit 74836bcab781b0c6f68363541e7957b0bd0c4f61
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Oct 20 10:38:25 2023 -0400
gnu: signing-party: Add bash-minimal to inputs.
* gnu/packages/gnupg.scm (signing-party): Delete trailing #t.
[inputs]: Add bash-minimal.
Change-Id: I9c4eb66dd16d575edd8e6091758b8eb41e831eb4
---
gnu/packages/gnupg.scm | 20 +++++++++-----------
1 file changed, 9 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 0950cd4115..14a2e62e66 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -21,7 +21,7 @@
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
;;; Copyright © 2021 Nikita Domnitskii <nikita@domnitskii.me>
;;; Copyright © 2021 Aleksandr Vityazev <avityazev@posteo.org>
-;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
;;;
;;; This file is part of GNU Guix.
@@ -44,6 +44,7 @@
#:use-module (gnu packages)
#:use-module (gnu packages adns)
#:use-module (gnu packages autotools)
+ #:use-module (gnu packages bash)
#:use-module (gnu packages base)
#:use-module (gnu packages curl)
#:use-module (gnu packages crypto)
@@ -721,16 +722,16 @@ parties.")
(native-inputs
;; autoconf-wrapper is required due to the non-standard
;; 'configure phase.
- `(("autoconf" ,autoconf-wrapper)
- ("automake" ,automake)))
- (inputs (list perl
+ (list autoconf-wrapper automake))
+ (inputs (list bash-minimal
+ perl
perl-text-template
perl-mime-tools
perl-gnupg-interface
perl-net-idn-encode
libmd))
(arguments
- `(#:tests? #f ; no test suite
+ `(#:tests? #f ; no test suite
#:phases
(modify-phases %standard-phases
(replace 'configure
@@ -748,8 +749,7 @@ parties.")
"keylookup/Makefile" "sig2dot/Makefile"
"springgraph/Makefile")
(("/usr") out))
- (setenv "CONFIG_SHELL" (which "sh")))
- #t))
+ (setenv "CONFIG_SHELL" (which "sh")))))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys #:rest args)
(let ((out (assoc-ref outputs "out"))
@@ -774,15 +774,13 @@ parties.")
'("caff.1" "pgp-clean.1" "pgp-fixkey.1" "gpgdir.1"
"gpg-key2ps.1" "gpglist.1" "gpg-mailkeys.1"
"gpgparticipants.1" "gpgsigs.1" "gpgwrap.1"
- "process_keys.1" "pgpring.1" "keyanalyze.1")))
- #t))
+ "process_keys.1" "pgpring.1" "keyanalyze.1")))))
(add-after 'install 'wrap-programs
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out")))
(wrap-program
(string-append out "/bin/caff")
- `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB")))))
- #t)))))
+ `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB"))))))))))
(synopsis "Collection of scripts for simplifying gnupg key signing")
(description
"Signing-party is a collection for all kinds of PGP/GnuPG related things,
- branch core-updates updated (78cb35793f -> 66b7d3b45b), guix-commits, 2023/10/20
- 03/13: gnu: akku: Add bash-minimal to inputs., guix-commits, 2023/10/20
- 01/13: gnu: gnome: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/20
- 05/13: gnu: pinentry-rofi: Add bash-minimal to inputs., guix-commits, 2023/10/20
- 04/13: gnu: signing-party: Add bash-minimal to inputs.,
guix-commits <=
- 08/13: gnu: password-utils: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/20
- 07/13: gnu: parcimonie: Add bash-minimal to inputs., guix-commits, 2023/10/20
- 13/13: gnu: game-development: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/20
- 02/13: gnu: guix: Add bash-minimal to inputs., guix-commits, 2023/10/20
- 09/13: gnu: mail: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/20
- 06/13: gnu: gpa: Add bash-minimal to inputs., guix-commits, 2023/10/20
- 10/13: gnu: engineering: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/20
- 12/13: gnu: maths: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/20
- 11/13: gnu: messaging: Add 'bash' input for 'wrap-program'., guix-commits, 2023/10/20