* [ptxdist] [PATCH] igt-gpu-tools: version bump 1.26 -> 1.27.1
@ 2023-01-26 9:57 Philipp Zabel
2023-02-08 11:50 ` [ptxdist] [APPLIED] " Michael Olbrich
0 siblings, 1 reply; 2+ messages in thread
From: Philipp Zabel @ 2023-01-26 9:57 UTC (permalink / raw)
To: ptxdist; +Cc: Philipp Zabel
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
...ib-meson.build-Fix-underscorify-call.patch | 36 -------------------
patches/igt-gpu-tools-1.26/series | 1 -
rules/igt-gpu-tools.make | 4 +--
3 files changed, 2 insertions(+), 39 deletions(-)
delete mode 100644 patches/igt-gpu-tools-1.26/0001-lib-meson.build-Fix-underscorify-call.patch
delete mode 100644 patches/igt-gpu-tools-1.26/series
diff --git a/patches/igt-gpu-tools-1.26/0001-lib-meson.build-Fix-underscorify-call.patch b/patches/igt-gpu-tools-1.26/0001-lib-meson.build-Fix-underscorify-call.patch
deleted file mode 100644
index 51df2f0c40d6..000000000000
--- a/patches/igt-gpu-tools-1.26/0001-lib-meson.build-Fix-underscorify-call.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 963917a3565466832a3b2fc22e9285d34a0bf944 Mon Sep 17 00:00:00 2001
-From: Petri Latvala <petri.latvala@intel.com>
-Date: Thu, 28 Oct 2021 11:05:31 +0300
-Subject: [PATCH] lib/meson.build: Fix underscorify call
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-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 <arek@hiler.eu>
-Signed-off-by: Petri Latvala <petri.latvala@intel.com>
-Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
----
- lib/meson.build | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/lib/meson.build b/lib/meson.build
-index c3080fc82c29..297b0ad26ee5 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,
---
-2.30.2
-
diff --git a/patches/igt-gpu-tools-1.26/series b/patches/igt-gpu-tools-1.26/series
deleted file mode 100644
index 30537838e16d..000000000000
--- a/patches/igt-gpu-tools-1.26/series
+++ /dev/null
@@ -1 +0,0 @@
-0001-lib-meson.build-Fix-underscorify-call.patch
diff --git a/rules/igt-gpu-tools.make b/rules/igt-gpu-tools.make
index 1a10a81daa27..22df9ba73e4c 100644
--- a/rules/igt-gpu-tools.make
+++ b/rules/igt-gpu-tools.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_IGT_GPU_TOOLS) += igt-gpu-tools
#
# Paths and names
#
-IGT_GPU_TOOLS_VERSION := 1.26
-IGT_GPU_TOOLS_MD5 := 6781293a2c312bb625aa5cbe5506a9bf
+IGT_GPU_TOOLS_VERSION := 1.27.1
+IGT_GPU_TOOLS_MD5 := 62135c26178dc8121e619c4c19d7edcb
IGT_GPU_TOOLS := igt-gpu-tools-$(IGT_GPU_TOOLS_VERSION)
IGT_GPU_TOOLS_SUFFIX := tar.xz
IGT_GPU_TOOLS_URL := $(call ptx/mirror, XORG, individual/app/$(IGT_GPU_TOOLS).$(IGT_GPU_TOOLS_SUFFIX))
--
2.30.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [ptxdist] [APPLIED] igt-gpu-tools: version bump 1.26 -> 1.27.1
2023-01-26 9:57 [ptxdist] [PATCH] igt-gpu-tools: version bump 1.26 -> 1.27.1 Philipp Zabel
@ 2023-02-08 11:50 ` Michael Olbrich
0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2023-02-08 11:50 UTC (permalink / raw)
To: ptxdist; +Cc: Philipp Zabel
Thanks, applied as dd6bf4f1b861e0be9876e7ee322f5193e62a6576.
Michael
[sent from post-receive hook]
On Wed, 08 Feb 2023 12:50:01 +0100, Philipp Zabel <p.zabel@pengutronix.de> wrote:
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> Message-Id: <20230126095702.679333-1-p.zabel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/patches/igt-gpu-tools-1.26/0001-lib-meson.build-Fix-underscorify-call.patch b/patches/igt-gpu-tools-1.26/0001-lib-meson.build-Fix-underscorify-call.patch
> deleted file mode 100644
> index 51df2f0c40d6..000000000000
> --- a/patches/igt-gpu-tools-1.26/0001-lib-meson.build-Fix-underscorify-call.patch
> +++ /dev/null
> @@ -1,36 +0,0 @@
> -From 963917a3565466832a3b2fc22e9285d34a0bf944 Mon Sep 17 00:00:00 2001
> -From: Petri Latvala <petri.latvala@intel.com>
> -Date: Thu, 28 Oct 2021 11:05:31 +0300
> -Subject: [PATCH] lib/meson.build: Fix underscorify call
> -MIME-Version: 1.0
> -Content-Type: text/plain; charset=UTF-8
> -Content-Transfer-Encoding: 8bit
> -
> -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 <arek@hiler.eu>
> -Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> -Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
> ----
> - lib/meson.build | 2 +-
> - 1 file changed, 1 insertion(+), 1 deletion(-)
> -
> -diff --git a/lib/meson.build b/lib/meson.build
> -index c3080fc82c29..297b0ad26ee5 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,
> ---
> -2.30.2
> -
> diff --git a/patches/igt-gpu-tools-1.26/series b/patches/igt-gpu-tools-1.26/series
> deleted file mode 100644
> index 30537838e16d..000000000000
> --- a/patches/igt-gpu-tools-1.26/series
> +++ /dev/null
> @@ -1 +0,0 @@
> -0001-lib-meson.build-Fix-underscorify-call.patch
> diff --git a/rules/igt-gpu-tools.make b/rules/igt-gpu-tools.make
> index 1a10a81daa27..22df9ba73e4c 100644
> --- a/rules/igt-gpu-tools.make
> +++ b/rules/igt-gpu-tools.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_IGT_GPU_TOOLS) += igt-gpu-tools
> #
> # Paths and names
> #
> -IGT_GPU_TOOLS_VERSION := 1.26
> -IGT_GPU_TOOLS_MD5 := 6781293a2c312bb625aa5cbe5506a9bf
> +IGT_GPU_TOOLS_VERSION := 1.27.1
> +IGT_GPU_TOOLS_MD5 := 62135c26178dc8121e619c4c19d7edcb
> IGT_GPU_TOOLS := igt-gpu-tools-$(IGT_GPU_TOOLS_VERSION)
> IGT_GPU_TOOLS_SUFFIX := tar.xz
> IGT_GPU_TOOLS_URL := $(call ptx/mirror, XORG, individual/app/$(IGT_GPU_TOOLS).$(IGT_GPU_TOOLS_SUFFIX))
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-02-08 11:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-26 9:57 [ptxdist] [PATCH] igt-gpu-tools: version bump 1.26 -> 1.27.1 Philipp Zabel
2023-02-08 11:50 ` [ptxdist] [APPLIED] " Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox