diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:07 +0200 |
commit | 1063a3b5646322b55d806b7858b5c6ce6a2a9508 (patch) | |
tree | d6c572a42e1394836ec99f95fc816b57cbb64853 /gnu | |
parent | 4feaefbb277d7b5ae365999a9f9fb247dcc773e2 (diff) | |
download | guix-1063a3b5646322b55d806b7858b5c6ce6a2a9508.tar.gz |
gnu: libtraceevent: Update to 1.7.3.
* gnu/packages/linux.scm (libtraceevent): Update to 1.7.3.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index f3b52b0331..d1a69ab7fc 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -9841,7 +9841,7 @@ older system-wide @file{/sys} interface.") (define-public libtraceevent (package (name "libtraceevent") - (version "1.7.1") + (version "1.7.3") (source (origin (method git-fetch) @@ -9850,8 +9850,7 @@ older system-wide @file{/sys} interface.") (commit (string-append name "-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 - "1kbl11lqh8cadi6r3qqxx68idr7597l6i50pr5p5mdgsf6k2i83c")) + (base32 "06mw2f0xnk6dy9w2z0n4dz7lnm02qfsmnmj2h24453qxlw57x0d6")) (modules '((guix build utils))) (snippet #~(begin @@ -9862,14 +9861,14 @@ older system-wide @file{/sys} interface.") (build-system gnu-build-system) (arguments (list - #:tests? #f ;no test suite + #:tests? #f ; no test suite #:make-flags #~(list (string-append "pkgconfig_dir=" #$output "/lib/pkgconfig") (string-append "prefix=" #$output)) #:phases #~(modify-phases %standard-phases - (delete 'configure)))) + (delete 'configure)))) ; no configure script (home-page "https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/") (synopsis "Linux kernel trace event library") (description "This package provides library to parse raw trace event |