* [Buildroot] [PATCH 1/1] package/igt-gpu-tools: bump version to 2.4
@ 2026-04-02 18:02 Bernd Kuhls
2026-04-03 17:37 ` Julien Olivain via buildroot
0 siblings, 1 reply; 2+ messages in thread
From: Bernd Kuhls @ 2026-04-02 18:02 UTC (permalink / raw)
To: buildroot
https://lists.x.org/archives/xorg-announce/2026-March/003676.html
Upstream added a dependency to pciutils:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/commit/a97925a6d7cac457a5d46020f38fbef59e74abc5
Upstream replaced json-c with jansson library:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/commit/b24cdab174240399a6ac377dbeb7923d4f429680
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
package/igt-gpu-tools/Config.in | 1 +
package/igt-gpu-tools/igt-gpu-tools.hash | 6 +++---
package/igt-gpu-tools/igt-gpu-tools.mk | 7 ++++---
3 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/package/igt-gpu-tools/Config.in b/package/igt-gpu-tools/Config.in
index 87268969a1..00dc59a2ae 100644
--- a/package/igt-gpu-tools/Config.in
+++ b/package/igt-gpu-tools/Config.in
@@ -20,6 +20,7 @@ config BR2_PACKAGE_IGT_GPU_TOOLS
select BR2_PACKAGE_LIBDRM
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_LIBPCIACCESS
+ select BR2_PACKAGE_PCIUTILS
select BR2_PACKAGE_PIXMAN
select BR2_PACKAGE_PROCPS_NG
select BR2_PACKAGE_ZLIB
diff --git a/package/igt-gpu-tools/igt-gpu-tools.hash b/package/igt-gpu-tools/igt-gpu-tools.hash
index b1899cd986..b66d856da9 100644
--- a/package/igt-gpu-tools/igt-gpu-tools.hash
+++ b/package/igt-gpu-tools/igt-gpu-tools.hash
@@ -1,6 +1,6 @@
-# From https://lists.x.org/archives/xorg-announce/2025-December/003648.html
-sha256 429f2578fb16cff7402e9beb325c5c267ad30a2b7b957343c77e8ea24af03887 igt-gpu-tools-2.3.tar.xz
-sha512 669e5f124c1177ed58c43b8b9b945f6436fc37b1162b16bbd1db78c5e170c68be98cc3b08b5ecb438d1313722fee2ab8bba8ca86a971443401c2acc3f3ec68ff igt-gpu-tools-2.3.tar.xz
+# From https://lists.x.org/archives/xorg-announce/2026-March/003676.html
+sha256 a44b7d089a27555944d4cd5da372c9339501539e3cd2735bbdb30e0d802f1cbe igt-gpu-tools-2.4.tar.xz
+sha512 3f8e8202e3a613faf077ecb3fcc6a13840a8df94f94cb7d3a7933e51888757ea22e4154f2e0f88b896583e23bc8fd472bd286a0b50630b8b5eeb13878a1a2d9f igt-gpu-tools-2.4.tar.xz
# Hash for license file:
sha256 1b7e266857b05808660f42369a4a797459d7b7bec7245e378aa28a8db2f213da COPYING
diff --git a/package/igt-gpu-tools/igt-gpu-tools.mk b/package/igt-gpu-tools/igt-gpu-tools.mk
index 85ed999ed4..6e6d4278f1 100644
--- a/package/igt-gpu-tools/igt-gpu-tools.mk
+++ b/package/igt-gpu-tools/igt-gpu-tools.mk
@@ -4,7 +4,7 @@
#
################################################################################
-IGT_GPU_TOOLS_VERSION = 2.3
+IGT_GPU_TOOLS_VERSION = 2.4
IGT_GPU_TOOLS_SOURCE = igt-gpu-tools-$(IGT_GPU_TOOLS_VERSION).tar.xz
IGT_GPU_TOOLS_SITE = https://www.x.org/releases/individual/app
IGT_GPU_TOOLS_LICENSE = MIT
@@ -18,6 +18,7 @@ IGT_GPU_TOOLS_DEPENDENCIES = \
libdrm \
libglib2 \
libpciaccess \
+ pciutils \
pixman \
procps-ng \
udev \
@@ -44,9 +45,9 @@ ifeq ($(BR2_i386)$(BR2_x86_64)x$(BR2_RELRO_NONE),yx)
IGT_GPU_TOOLS_LDFLAGS = $(TARGET_LDFLAGS) -Wl,-z,lazy
endif
-ifeq ($(BR2_PACKAGE_JSON_C),y)
+ifeq ($(BR2_PACKAGE_JANSSON),y)
IGT_GPU_TOOLS_CONF_OPTS += -Drunner=enabled
-IGT_GPU_TOOLS_DEPENDENCIES += json-c
+IGT_GPU_TOOLS_DEPENDENCIES += jansson
else
IGT_GPU_TOOLS_CONF_OPTS += -Drunner=disabled
endif
--
2.47.3
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/igt-gpu-tools: bump version to 2.4
2026-04-02 18:02 [Buildroot] [PATCH 1/1] package/igt-gpu-tools: bump version to 2.4 Bernd Kuhls
@ 2026-04-03 17:37 ` Julien Olivain via buildroot
0 siblings, 0 replies; 2+ messages in thread
From: Julien Olivain via buildroot @ 2026-04-03 17:37 UTC (permalink / raw)
To: Bernd Kuhls; +Cc: buildroot
On 02/04/2026 20:02, Bernd Kuhls wrote:
> https://lists.x.org/archives/xorg-announce/2026-March/003676.html
>
> Upstream added a dependency to pciutils:
> https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/commit/a97925a6d7cac457a5d46020f38fbef59e74abc5
>
> Upstream replaced json-c with jansson library:
> https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/commit/b24cdab174240399a6ac377dbeb7923d4f429680
>
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Applied to master, thanks.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-04-03 17:37 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-02 18:02 [Buildroot] [PATCH 1/1] package/igt-gpu-tools: bump version to 2.4 Bernd Kuhls
2026-04-03 17:37 ` Julien Olivain via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox