summaryrefslogtreecommitdiff
path: root/gnu/packages/linux.scm
diff options
context:
space:
mode:
authorVagrant Cascadian <vagrant@debian.org>2025-07-14 14:49:51 -0700
committerVagrant Cascadian <vagrant@debian.org>2025-07-20 12:21:05 -0700
commitc85e551cd6e4b456a058e4ff9864bcec74c884fc (patch)
treecd53bc08d3b35029c31d333afa762c51af84f0dc /gnu/packages/linux.scm
parentb40ea89f3d1a64cc3c336e58aa522a796077952e (diff)
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
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r--gnu/packages/linux.scm18
1 files changed, 8 insertions, 10 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index f832d0521ad..954b2257690 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/")