guix_mirror_bot pushed a commit to branch master in repository guix. commit c85e551cd6e4b456a058e4ff9864bcec74c884fc Author: Vagrant Cascadian <vagr...@debian.org> AuthorDate: Mon Jul 14 14:49:51 2025 -0700
gnu: libgpiod: Update to 2.2.2. * gnu/packages/linux.scm (libgpiod): Update to 2.2.2. [arguments]: Use gexps. [configure-flags]: Do not build python bindings. [native-inputs]: Use autoconf-2.71, drop python-3. [description]: Do not mention python bindings. Change-Id: I70161aa22484e0fcfcf2df0b97b834f693736ff4 --- gnu/packages/linux.scm | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index f832d0521a..954b225769 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -11254,7 +11254,7 @@ calls the Linux-specific @code{renameat2} system call.") (define-public libgpiod (package (name "libgpiod") - (version "1.6.3") + (version "2.2.2") (source (origin (method git-fetch) @@ -11263,23 +11263,21 @@ calls the Linux-specific @code{renameat2} system call.") (url "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git") (commit (string-append "v" version)))) (file-name (git-file-name name version)) - (sha256 (base32 "0rv8a11hx3pc6sdw6nfc6k35hkp2clb3v53n1381cvip8fzhbsad")))) + (sha256 (base32 "10yiwrw80x0057w825zxmdbd54w9lbyf49bgqk1cryqapglfzqri")))) (build-system gnu-build-system) (arguments - `(#:configure-flags - '("--enable-tools=yes" - "--enable-bindings-cxx" - "--enable-bindings-python"))) + (list #:configure-flags + #~(list "--enable-tools=yes" + "--enable-bindings-cxx"))) (native-inputs (list automake - autoconf + autoconf-2.71 libtool autoconf-archive - pkg-config - python-3)) + pkg-config)) (synopsis "Interact with the Linux GPIO character device") (description - "This package provides a C library with C++/Python bindings and + "This package provides a C library with C++ bindings and command-line tools for interacting with GPIO devices that avoids the usage of older system-wide @file{/sys} interface.") (home-page "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/")