[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
46/63: gnu: Add cryptsetup-minimal.
From: |
guix-commits |
Subject: |
46/63: gnu: Add cryptsetup-minimal. |
Date: |
Thu, 12 Dec 2024 05:29:13 -0500 (EST) |
janneke pushed a commit to branch core-packages-team-old
in repository guix.
commit a69cf3ee57ba420c76b4ab119aaa2e0abf59fef1
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Wed Dec 11 18:01:50 2024 +0100
gnu: Add cryptsetup-minimal.
The ruby-asciidoctor dependency pulls-in pandoc, 316 ghc packages, and 204
ruby packages, for documentation only.
* gnu/packages/cryptsetup.scm (cryptsetup): Rename to...
(cryptsetup-minimal): ...this.
[native-inputs]: Remove optional ruby-asciidoctor.
(cryptsetup): New variable. Inherit from cryptsetup-minimal.
[native-inputs]: Add ruby-asciidoctor if available.
Change-Id: I1d4d2160e1fd64057a188afa3c9cbf037610727a
---
gnu/packages/cryptsetup.scm | 23 ++++++++++++++---------
1 file changed, 14 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/cryptsetup.scm b/gnu/packages/cryptsetup.scm
index 44f9c77984..2b6cc635ee 100644
--- a/gnu/packages/cryptsetup.scm
+++ b/gnu/packages/cryptsetup.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2019–2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2024 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -35,9 +36,9 @@
#:use-module (gnu packages ruby)
#:use-module (gnu packages web))
-(define-public cryptsetup
+(define-public cryptsetup-minimal
(package
- (name "cryptsetup")
+ (name "cryptsetup-minimal")
(version "2.6.1")
(source (origin
(method url-fetch)
@@ -69,11 +70,7 @@
;; <https://issues.guix.gnu.org/63864>
(string-append "--with-libgcrypt-prefix="
(assoc-ref %build-inputs "libgcrypt"))))))
- (native-inputs
- (append (list pkg-config)
- (if (supported-package? ruby-asciidoctor)
- (list ruby-asciidoctor)
- '())))
+ (native-inputs (list pkg-config))
(inputs
(list argon2
json-c
@@ -100,6 +97,14 @@ block integrity kernel modules.")
(license license:gpl2)
(home-page "https://gitlab.com/cryptsetup/cryptsetup";)))
+(define-public cryptsetup
+ (package/inherit cryptsetup-minimal
+ (name "cryptsetup")
+ (native-inputs `(,(if (supported-package? ruby-asciidoctor)
+ `("ruby-asciidoctor" ,ruby-asciidoctor)
+ '())
+ ,@(package-native-inputs cryptsetup-minimal)))))
+
(define-public (libcryptsetup-propagated-inputs)
(list argon2
json-c
@@ -122,10 +127,10 @@ files). This assumes LIBRARY uses Libtool."
(define-public cryptsetup-static
;; Stripped-down statically-linked 'cryptsetup' command for use in initrds.
(package
- (inherit cryptsetup)
+ (inherit cryptsetup-minimal)
(name "cryptsetup-static")
(arguments
- (substitute-keyword-arguments (package-arguments cryptsetup)
+ (substitute-keyword-arguments (package-arguments cryptsetup-minimal)
((#:configure-flags flags ''())
`(cons* "--disable-shared"
"--enable-static-cryptsetup"
- 61/63: REMOVEME gnu: commencement: bash-mesboot: Avoid rebuild., (continued)
- 61/63: REMOVEME gnu: commencement: bash-mesboot: Avoid rebuild., guix-commits, 2024/12/12
- 24/63: gnu: xmlto: Fix build with gcc-14., guix-commits, 2024/12/12
- 45/63: gnu: tdb: Update to 1.4.12; fixes build with gcc-14., guix-commits, 2024/12/12
- 44/63: gnu: pth: Fix build with gcc-14., guix-commits, 2024/12/12
- 47/63: gnu: Use cryptsetup-minimal instead of cryptsetup., guix-commits, 2024/12/12
- 52/63: gnu: tevent: Update to 0.16.1; fixes build with gcc-14., guix-commits, 2024/12/12
- 53/63: gnu: ldb: Update to 2.9.2; fixes build with gcc-14., guix-commits, 2024/12/12
- 56/63: guix: build-system: cmake: Rework cross compilation., guix-commits, 2024/12/12
- 05/63: gnu: libffi: Fix build for x86_64-linux with gcc-14., guix-commits, 2024/12/12
- 08/63: gnu: gettext: Fix build with gcc-14., guix-commits, 2024/12/12
- 46/63: gnu: Add cryptsetup-minimal.,
guix-commits <=
- 63/63: REMOVEME gnu: Add bdb-4.8-orig to avoid a world rebuild at this time., guix-commits, 2024/12/12
- 11/63: gnu: automake: Fix build with gcc-14., guix-commits, 2024/12/12
- 16/63: gnu: elfutils: Update to 0.192; fixes build with gcc-14., guix-commits, 2024/12/12
- 09/63: gnu: gettext: Update to 0.23., guix-commits, 2024/12/12
- 20/63: gnu: expect: Fix build with gcc-14., guix-commits, 2024/12/12
- 27/63: gnu: llvm-13: Fix build with gcc-14., guix-commits, 2024/12/12
- 54/63: gnu: %bootstrap-glibc: Prevent rebuilds., guix-commits, 2024/12/12
- 57/63: gnu: ath9k-firmware: Remove CMAKE_SYSTEM_NAME override., guix-commits, 2024/12/12
- 59/63: Revert "guix: build-system: cmake: Rework cross compilation.", guix-commits, 2024/12/12