diff --git a/packages/debug/xorg-intel-gpu-tools/package.mk b/packages/debug/xorg-intel-gpu-tools/package.mk index 1f68b31e0c..0cd2fb5d86 100644 --- a/packages/debug/xorg-intel-gpu-tools/package.mk +++ b/packages/debug/xorg-intel-gpu-tools/package.mk @@ -2,8 +2,8 @@ # Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv) PKG_NAME="xorg-intel-gpu-tools" -PKG_VERSION="1.26" -PKG_SHA256="36d4193b9f22fbb4834ec97be3bb6322ec901e20f7be018f0a50d3eb03ec9bb7" +PKG_VERSION="1.27" +PKG_SHA256="602bfe310d669f58e2f7fc8839532368492fd1317d564e06f8ce42049e3b61cb" PKG_LICENSE="GPL" PKG_DEPENDS_TARGET="toolchain cairo procps-ng" PKG_SITE="https://gitlab.freedesktop.org/drm/igt-gpu-tools" diff --git a/packages/debug/xorg-intel-gpu-tools/patches/xorg-intel-gpu-tools-1-26-meson-build.patch b/packages/debug/xorg-intel-gpu-tools/patches/xorg-intel-gpu-tools-1-26-meson-build.patch deleted file mode 100644 index 9a464d6dea..0000000000 --- a/packages/debug/xorg-intel-gpu-tools/patches/xorg-intel-gpu-tools-1-26-meson-build.patch +++ /dev/null @@ -1,37 +0,0 @@ -From patchwork Thu Oct 28 08:05:31 2021 -Content-Type: text/plain; charset="utf-8" -MIME-Version: 1.0 -Content-Transfer-Encoding: 7bit -Subject: [i-g-t,1/1] lib/meson.build: Fix underscorify call -From: Petri Latvala -X-Patchwork-Id: 461649 -Message-Id: <20211028080531.8223-1-petri.latvala@intel.com> -To: igt-dev@lists.freedesktop.org -Cc: Petri Latvala , - Arkadiusz Hiler -Date: Thu, 28 Oct 2021 11:05:31 +0300 - -f.underscorify() is correct, f.underscorify(f) is an error that later -meson versions don't like at all. - -Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/107 -Fixes: 588555f77909 ("lib/i915: Extract helpers for determining scheduler capabilities") -Cc: Arkadiusz Hiler -Signed-off-by: Petri Latvala ---- - lib/meson.build | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/lib/meson.build b/lib/meson.build -index c3080fc8..297b0ad2 100644 ---- a/lib/meson.build -+++ b/lib/meson.build -@@ -155,7 +155,7 @@ lib_version = vcs_tag(input : 'version.h.in', output : 'version.h', - - lib_intermediates = [] - foreach f: lib_sources -- name = f.underscorify(f) -+ name = f.underscorify() - lib = static_library('igt-' + name, - [ f, lib_version ], - include_directories: inc,