summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNoƩ Lopez <noelopez@free.fr>2026-04-19 12:58:49 +0200
committerVagrant Cascadian <vagrant@debian.org>2026-05-15 21:43:53 -0700
commitb5feebef5d1fccebb518c8381ca76c1890413009 (patch)
tree863c9c6a6d0942f29efe8a97d3ad76c5c4cb7842 /gnu
parentdc592f3cf838220685250d5cfe0e53dbd5474a39 (diff)
gnu: libtracefs: Update to 1.8.3.
* gnu/packages/linux.scm (libtracefs): Update to 1.8.3 and switch to meson-build-system. [native-inputs]: Add bison and flex. Change-Id: If92fe0f3b16547129170492fc91a7b583da4ea73 Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/linux.scm27
1 files changed, 9 insertions, 18 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 125fc0ec8b..1237df8345 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -12155,7 +12155,7 @@ that avoids the usage of older system-wide @file{/sys} interface.")
(define-public libtracefs
(package
(name "libtracefs")
- (version "1.7.0")
+ (version "1.8.3")
(source
(origin
(method git-fetch)
@@ -12164,25 +12164,16 @@ that avoids the usage of older system-wide @file{/sys} interface.")
(commit (string-append name "-" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0v896n3q0df0nxx5drbwyaqhrqiyxl06rvrdw3gp2r37awa9g1zb"))
- (modules '((guix build utils)))
- (snippet
- #~(begin
- (substitute* (list "Makefile" "scripts/utils.mk")
- (("/bin/(pwd)" _ command) command))))))
- (build-system gnu-build-system)
+ (base32 "1bc4mwf488nlja64zawjznvb6640vchjb25xa02v53x6qfb1mpmq"))))
+ (build-system meson-build-system)
(arguments
(list
- #:tests? #f ; no test suite
- #:make-flags
- #~(list
- (string-append "CC=" #$(cc-for-target))
- (string-append "pkgconfig_dir=" #$output "/lib/pkgconfig")
- (string-append "prefix=" #$output))
- #:phases
- #~(modify-phases %standard-phases
- (delete 'configure)))) ; no configure script
- (native-inputs (list pkg-config))
+ #:configure-flags
+ #~(list "-Ddoc=false")))
+ (native-inputs
+ (list bison
+ flex
+ pkg-config))
(inputs (list libtraceevent))
(home-page "https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/")
(synopsis "Linux kernel trace file system library")