gnu: efivar: Update to 39; fixes build with gcc-14.

* gnu/packages/linux.scm (efivar): Update to 39.

Change-Id: I13646c7e379df2b92629eb6e53d3d43e49dddb83
This commit is contained in:
Janneke Nieuwenhuizen 2025-01-01 12:41:51 +01:00
parent 7e1aa35f0f
commit c63ea1663b
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273

View file

@ -42,7 +42,7 @@
;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz>
;;; Copyright © 2020 Chris Marusich <cmmarusich@gmail.com>
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
;;; Copyright © 2020, 2023, 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2020, 2023, 2024, 2025 Janneke Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com>
;;; Copyright © 2020 John Soo <jsoo1@asu.edu>
;;; Copyright © 2020, 2022 Michael Rohleder <mike@rohleder.de>
@ -7825,22 +7825,18 @@ (define-public radeontop
(license license:gpl3)))
(define-public efivar
;; XXX: 15622b7e5761f3dde3f0e42081380b2b41639a48 fixes compilation on i686.
;; ca48d3964d26f5e3b38d73655f19b1836b16bd2d fixes cross-compilation.
(let ((commit "ca48d3964d26f5e3b38d73655f19b1836b16bd2d")
(revision "0"))
(package
(name "efivar")
(version (git-version "38" revision commit))
(version "39")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rhboot/efivar")
(commit commit)))
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0zsab3hcv1v53cxwkvsk09ifnwhs48a6xa3kxlwvs87yxswspvi8"))))
"1zd9dghg1z2rrsazv3d9rj7nik6kdqz42jiak65pipz7mpjn9zdk"))))
(build-system gnu-build-system)
(arguments
(list
@ -7851,7 +7847,8 @@ (define-public efivar
(string-append "libdir="
#$output "/lib")
(string-append "CC="
#$(cc-for-target)) "HOSTCC=gcc"
#$(cc-for-target))
"HOSTCC=gcc"
(string-append "LDFLAGS=-Wl,-rpath="
#$output "/lib"))
#:phases #~(modify-phases %standard-phases
@ -7868,7 +7865,7 @@ (define-public efivar
(synopsis "Tool and library to manipulate EFI variables")
(description "This package provides a library and a command line
interface to the variable facility of UEFI boot firmware.")
(license license:lgpl2.1+))))
(license license:lgpl2.1+)))
(define-public efibootmgr
(package