me
/
guix
Archived
1
0
Fork 0

gnu: igt-gpu-tools: Update to 1.25.

* gnu/packages/admin.scm (igt-gpu-tools): Update to 1.25.
[build-system]: Switch to Meson.
[native-inputs]: Remove autoconf, automake, and libtool.
Add bison & flex.
master
Tobias Geerinckx-Rice 2020-11-29 14:03:05 +01:00
parent 7a584b0e56
commit ad7749a127
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 5 additions and 6 deletions

View File

@ -3108,7 +3108,7 @@ buffers.")
(define-public igt-gpu-tools (define-public igt-gpu-tools
(package (package
(name "igt-gpu-tools") (name "igt-gpu-tools")
(version "1.24") (version "1.25")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -3117,8 +3117,8 @@ buffers.")
(commit (string-append "igt-gpu-tools-" version)))) (commit (string-append "igt-gpu-tools-" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1gpdjs5aj6vsnzwcjvw5bb120lgffvvshi4202phr0bzw3b92ky8")))) (base32 "1lvhkdhilw0fn4nzkpfwvrhiv8d92h811qs2v6ac3p5w7v86a9zm"))))
(build-system gnu-build-system) (build-system meson-build-system)
(arguments (arguments
`(#:tests? #f)) ; many of the tests try to load kernel modules `(#:tests? #f)) ; many of the tests try to load kernel modules
(inputs (inputs
@ -3135,9 +3135,8 @@ buffers.")
("procps" ,procps) ("procps" ,procps)
("util-macros" ,util-macros))) ("util-macros" ,util-macros)))
(native-inputs (native-inputs
`(("autoconf" ,autoconf) `(("bison" ,bison)
("automake" ,automake) ("flex" ,flex)
("libtool" ,libtool)
("pkg-config" ,pkg-config))) ("pkg-config" ,pkg-config)))
(home-page "https://gitlab.freedesktop.org/drm/igt-gpu-tools") (home-page "https://gitlab.freedesktop.org/drm/igt-gpu-tools")
(synopsis "Tools for development and testing of the Intel DRM driver") (synopsis "Tools for development and testing of the Intel DRM driver")