[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/08: gnu: igt-gpu-tools: Update to 1.23.
From: |
Tobias Geerinckx-Rice |
Subject: |
01/08: gnu: igt-gpu-tools: Update to 1.23. |
Date: |
Wed, 15 Aug 2018 23:23:04 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit dca48d3cf19db5e1b12c70cadbecb5791e0b3df8
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Thu Aug 16 03:03:44 2018 +0200
gnu: igt-gpu-tools: Update to 1.23.
* gnu/packages/admin.scm (intel-gpu-tools): Redefine using
DEPRECATED-PACKAGE. Move the previous package definition from here...
(igt-gpu-tools): ...to here, and update to 1.23.
[name, source, description]: Adjust to new name.
[inputs]: Add openssl.
---
gnu/packages/admin.scm | 22 +++++++++++++---------
1 file changed, 13 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index ed4c7bb..0194cbf 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -2267,21 +2267,21 @@ With sedsed you can master any sed script. No more
secrets, no more hidden
buffers.")
(license license:expat)))
-(define-public intel-gpu-tools
+(define-public igt-gpu-tools
(package
- (name "intel-gpu-tools")
- (version "1.22")
+ (name "igt-gpu-tools")
+ (version "1.23")
(source (origin
(method url-fetch)
(uri (string-append "https://cgit.freedesktop.org/xorg/app/";
"intel-gpu-tools/snapshot/"
- "intel-gpu-tools-" version ".tar.gz"))
+ name "-" version ".tar.gz"))
(sha256
(base32
- "1jx5w5fr6jp67rcrlp5v79cn8kp9n0wgd5pbfgzamlah5cx6j3yd"))))
+ "0vzv2i4jfv2pkbqby5k3ap9pzidkmajwqmg3s7wnv8i1h33775iq"))))
(build-system gnu-build-system)
(arguments
- `(#:tests? #f ; many of the tests try to load kernel modules
+ `(#:tests? #f ; many of the tests try to load kernel modules
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'autogen
@@ -2299,7 +2299,8 @@ buffers.")
("cairo" ,cairo)
("libunwind" ,libunwind)
("libxrandr" ,libxrandr)
- ("glib" ,glib)))
+ ("glib" ,glib)
+ ("openssl" ,openssl)))
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
@@ -2307,17 +2308,20 @@ buffers.")
("pkg-config" ,pkg-config)))
(home-page "https://cgit.freedesktop.org/xorg/app/intel-gpu-tools/";)
(synopsis "Tools for development and testing of the Intel DRM driver")
- (description "Intel GPU Tools is a collection of tools for development and
+ (description "IGT GPU Tools is a collection of tools for development and
testing of the Intel DRM driver. There are many macro-level test suites that
get used against the driver, including xtest, rendercheck, piglit, and
oglconform, but failures from those can be difficult to track down to kernel
changes, and many require complicated build procedures or specific testing
-environments to get useful results. Therefore, Intel GPU Tools includes
+environments to get useful results. Therefore, IGT GPU Tools includes
low-level tools and tests specifically for development and testing of the
Intel DRM Driver.")
(supported-systems '("i686-linux" "x86_64-linux"))
(license license:expat)))
+(define-public intel-gpu-tools
+ (deprecated-package "intel-gpu-tools" igt-gpu-tools))
+
(define-public fabric
(package
(name "fabric")
- branch master updated (4a6785f -> bf43e13), Tobias Geerinckx-Rice, 2018/08/15
- 04/08: gnu: abcde: Update to 2.9.2., Tobias Geerinckx-Rice, 2018/08/15
- 01/08: gnu: igt-gpu-tools: Update to 1.23.,
Tobias Geerinckx-Rice <=
- 02/08: gnu: igt-gpu-tools: Order inputs., Tobias Geerinckx-Rice, 2018/08/15
- 03/08: gnu: xterm: Update to 335., Tobias Geerinckx-Rice, 2018/08/15
- 06/08: gnu: erlang: Don't use unstable tarball., Tobias Geerinckx-Rice, 2018/08/15
- 07/08: gnu: Use ©., Tobias Geerinckx-Rice, 2018/08/15
- 08/08: gnu: ttf2eot: Return #t from all phases., Tobias Geerinckx-Rice, 2018/08/15
- 05/08: gnu: nnn: Update to 1.9., Tobias Geerinckx-Rice, 2018/08/15