All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Kanavin <alex.kanavin@gmail.com>
To: openembedded-core@lists.openembedded.org
Cc: Alexander Kanavin <alex@linutronix.de>
Subject: [PATCH 25/45] piglit: upgrade to latest revision
Date: Mon,  6 Jul 2026 19:16:39 +0200	[thread overview]
Message-ID: <20260706171701.70536-25-alex.kanavin@gmail.com> (raw)
In-Reply-To: <20260706171701.70536-1-alex.kanavin@gmail.com>

From: Alexander Kanavin <alex@linutronix.de>

Drop patches merged upstream.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 ...o-not-obtain-wayland-scanner-path-fr.patch |   4 +-
 ...h-rename-local-lerp-to-linear_interp.patch |  46 --------
 ...use-shape-in-place-of-newshape-on-nu.patch | 105 ------------------
 ...sts-use-unsigned-int-instead-of-uint.patch |  27 +++++
 ...Fix-narrowing-errors-seen-with-clang.patch |  50 ---------
 ...ake-egl_ext_surface_compression-cond.patch |   4 +-
 ...r.py-modify-_command-and-not-command.patch |   5 +-
 ...proper-WAYLAND_INCLUDE_DIRS-variable.patch |   4 +-
 ...t-shader.c-do-not-hardcode-build-pat.patch |   2 +-
 meta/recipes-graphics/piglit/piglit_git.bb    |   6 +-
 10 files changed, 37 insertions(+), 216 deletions(-)
 delete mode 100644 meta/recipes-graphics/piglit/piglit/0001-fbo-blit-stretch-rename-local-lerp-to-linear_interp.patch
 delete mode 100644 meta/recipes-graphics/piglit/piglit/0001-generated_tests-use-shape-in-place-of-newshape-on-nu.patch
 create mode 100644 meta/recipes-graphics/piglit/piglit/0001-pixel-local-tests-use-unsigned-int-instead-of-uint.patch
 delete mode 100644 meta/recipes-graphics/piglit/piglit/0001-tests-Fix-narrowing-errors-seen-with-clang.patch

diff --git a/meta/recipes-graphics/piglit/piglit/0001-CMakeLists.txt-do-not-obtain-wayland-scanner-path-fr.patch b/meta/recipes-graphics/piglit/piglit/0001-CMakeLists.txt-do-not-obtain-wayland-scanner-path-fr.patch
index 6ce2348a71..46e5a6d83f 100644
--- a/meta/recipes-graphics/piglit/piglit/0001-CMakeLists.txt-do-not-obtain-wayland-scanner-path-fr.patch
+++ b/meta/recipes-graphics/piglit/piglit/0001-CMakeLists.txt-do-not-obtain-wayland-scanner-path-fr.patch
@@ -1,4 +1,4 @@
-From 9ffd24add3263e24975318e693309881eadd99a2 Mon Sep 17 00:00:00 2001
+From abccc17819ad208c0df3edbc8bbcd134e45864f9 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin <alex@linutronix.de>
 Date: Fri, 23 Aug 2024 15:29:45 +0200
 Subject: [PATCH] CMakeLists.txt: do not obtain wayland-scanner path from
@@ -17,7 +17,7 @@ Signed-off-by: Alexander Kanavin <alex@linutronix.de>
  1 file changed, 1 insertion(+), 5 deletions(-)
 
 diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 99ae07a4a..d5ee9cc22 100644
+index 95f40ebfe..4c7da07b4 100644
 --- a/CMakeLists.txt
 +++ b/CMakeLists.txt
 @@ -211,11 +211,7 @@ if(PIGLIT_USE_WAYLAND)
diff --git a/meta/recipes-graphics/piglit/piglit/0001-fbo-blit-stretch-rename-local-lerp-to-linear_interp.patch b/meta/recipes-graphics/piglit/piglit/0001-fbo-blit-stretch-rename-local-lerp-to-linear_interp.patch
deleted file mode 100644
index 05f1dd687a..0000000000
--- a/meta/recipes-graphics/piglit/piglit/0001-fbo-blit-stretch-rename-local-lerp-to-linear_interp.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From ec0fc2fef0755b1595c3799ab25129174a4b2007 Mon Sep 17 00:00:00 2001
-From: Vinson Lee <vlee@freedesktop.org>
-Date: Sat, 7 Feb 2026 18:39:39 -0800
-Subject: [PATCH] fbo-blit-stretch: rename local lerp to linear_interp
-
-Avoid conflict with C++20 std::lerp from <cmath>, which
-causes redefinition and ambiguous call errors with newer
-toolchains.
-
-Upstream-Status: Backport [https://gitlab.freedesktop.org/mesa/piglit/-/commit/ec0fc2fef0755b1595c3799ab25129174a4b2007]
-
-Signed-off-by: Vinson Lee <vlee@freedesktop.org>
-Signed-off-by: Hemanth Kumar M D <Hemanth.KumarMD@windriver.com>
----
- tests/fbo/fbo-blit-stretch.cpp | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/tests/fbo/fbo-blit-stretch.cpp b/tests/fbo/fbo-blit-stretch.cpp
-index a83288c0f..b0d362ecd 100644
---- a/tests/fbo/fbo-blit-stretch.cpp
-+++ b/tests/fbo/fbo-blit-stretch.cpp
-@@ -173,7 +173,7 @@ clamp(GLint &x, GLint xmin, GLint xmax)
- }
- 
- static float
--lerp(float x0, float x1, float w)
-+linear_interp(float x0, float x1, float w)
- {
- 	return x0 + (x1 - x0) * w;
- }
-@@ -181,9 +181,9 @@ lerp(float x0, float x1, float w)
- static float
- lerp2d(float xy00, float xy01, float xy10, float xy11, float wx, float wy)
- {
--	float y0 = lerp(xy00, xy01, wx);
--	float y1 = lerp(xy10, xy11, wx);
--	return lerp(y0, y1, wy);
-+	float y0 = linear_interp(xy00, xy01, wx);
-+	float y1 = linear_interp(xy10, xy11, wx);
-+	return linear_interp(y0, y1, wy);
- }
- 
- static float clearColor[4] = {
--- 
-2.49.0
-
diff --git a/meta/recipes-graphics/piglit/piglit/0001-generated_tests-use-shape-in-place-of-newshape-on-nu.patch b/meta/recipes-graphics/piglit/piglit/0001-generated_tests-use-shape-in-place-of-newshape-on-nu.patch
deleted file mode 100644
index acf2671262..0000000000
--- a/meta/recipes-graphics/piglit/piglit/0001-generated_tests-use-shape-in-place-of-newshape-on-nu.patch
+++ /dev/null
@@ -1,105 +0,0 @@
-From ad6ee4d7c4d3b882ef6196832ed2bbc78b7cb10a Mon Sep 17 00:00:00 2001
-From: Wang Mingyu <wangmy@fujitsu.com>
-Date: Wed, 11 Feb 2026 03:42:24 +0000
-Subject: [PATCH] generated_tests: use 'shape' in place of 'newshape' on
- numpy>=2.1
-
-The 'newshape' parameter was deprecated upstream but kept for backwards
-compatibility reasons. It was finally removed as of numpy 2.4.0, so
-transition to using 'shape' in its place when available.
-
-Upstream-Status: Backport [https://gitlab.freedesktop.org/mesa/piglit/-/commit/c1dd58ff61fe6b713af795e2680c16371c1cb98c]
-
-Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
----
- generated_tests/builtin_function.py      | 17 +++++++++++++++--
- generated_tests/builtin_function_fp64.py | 17 +++++++++++++++--
- 2 files changed, 30 insertions(+), 4 deletions(-)
-
-diff --git a/generated_tests/builtin_function.py b/generated_tests/builtin_function.py
-index eb7e078..f87236f 100644
---- a/generated_tests/builtin_function.py
-+++ b/generated_tests/builtin_function.py
-@@ -58,6 +58,11 @@ import numpy as np
- if np.lib.NumpyVersion(np.__version__) >= '2.0.0b1':
-     np.set_printoptions(legacy = "1.25")
- 
-+if np.lib.NumpyVersion(np.__version__) >= '2.1.0':
-+    np_reshape_shape = 'shape'
-+else:
-+    np_reshape_shape = 'newshape'
-+
- # Floating point types used by Python and numpy
- FLOATING_TYPES = (float, np.float64, np.float32)
- 
-@@ -293,7 +298,11 @@ def column_major_values(value):
-     """Given a native numpy value, return a list of the scalar values
-     comprising it, in column-major order."""
-     if isinstance(value, np.ndarray):
--        return list(np.reshape(value, newshape=-1, order='F'))
-+        reshape_args = {
-+            np_reshape_shape: -1,
-+            'order': 'F',
-+        }
-+        return list(np.reshape(value, **reshape_args))
-     else:
-         return [value]
- 
-@@ -301,7 +310,11 @@ def column_major_values(value):
- def glsl_constant(value):
-     """Given a native numpy value, return GLSL code that constructs
-     it."""
--    column_major = np.reshape(np.array(value), newshape=-1, order='F')
-+    reshape_args = {
-+        np_reshape_shape: -1,
-+        'order': 'F',
-+    }
-+    column_major = np.reshape(np.array(value), **reshape_args)
-     if column_major.dtype == bool:
-         values = ['true' if x else 'false' for x in column_major]
-     elif column_major.dtype == np.int64:
-diff --git a/generated_tests/builtin_function_fp64.py b/generated_tests/builtin_function_fp64.py
-index 84d939c..06fe987 100644
---- a/generated_tests/builtin_function_fp64.py
-+++ b/generated_tests/builtin_function_fp64.py
-@@ -57,6 +57,11 @@ import numpy as np
- if np.lib.NumpyVersion(np.__version__) >= '2.0.0b1':
-     np.set_printoptions(legacy = "1.25")
- 
-+if np.lib.NumpyVersion(np.__version__) >= '2.1.0':
-+    np_reshape_shape = 'shape'
-+else:
-+    np_reshape_shape = 'newshape'
-+
- # Floating point types used by Python and numpy
- DOUBLE_TYPES = (float, np.float64, np.float32)
- 
-@@ -254,7 +259,11 @@ def column_major_values(value):
-     """Given a native numpy value, return a list of the scalar values
-     comprising it, in column-major order."""
-     if isinstance(value, np.ndarray):
--        return list(np.reshape(value, newshape=-1, order='F'))
-+        reshape_args = {
-+            np_reshape_shape: -1,
-+            'order': 'F',
-+        }
-+        return list(np.reshape(value, **reshape_args))
-     else:
-         return [value]
- 
-@@ -262,7 +271,11 @@ def column_major_values(value):
- def glsl_constant(value):
-     """Given a native numpy value, return GLSL code that constructs
-     it."""
--    column_major = np.reshape(np.array(value), newshape=-1, order='F')
-+    reshape_args = {
-+        np_reshape_shape: -1,
-+        'order': 'F',
-+    }
-+    column_major = np.reshape(np.array(value), **reshape_args)
-     if column_major.dtype == bool:
-         values = ['true' if x else 'false' for x in column_major]
-     else:
--- 
-2.43.0
-
diff --git a/meta/recipes-graphics/piglit/piglit/0001-pixel-local-tests-use-unsigned-int-instead-of-uint.patch b/meta/recipes-graphics/piglit/piglit/0001-pixel-local-tests-use-unsigned-int-instead-of-uint.patch
new file mode 100644
index 0000000000..2c01fe7029
--- /dev/null
+++ b/meta/recipes-graphics/piglit/piglit/0001-pixel-local-tests-use-unsigned-int-instead-of-uint.patch
@@ -0,0 +1,27 @@
+From 8b98674fedc0ac31e768ccd16165bcb585e413e2 Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin <alex@linutronix.de>
+Date: Thu, 2 Jul 2026 13:56:17 +0200
+Subject: [PATCH] pixel-local-tests: use unsigned int instead of uint
+
+uint is not a valid integer type in C, and this fails
+to compile under musl libc library.
+
+Upstream-Status: Submitted [https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/1170]
+Signed-off-by: Alexander Kanavin <alex@linutronix.de>
+---
+ tests/spec/ext_shader_pixel_local_storage/pixel-local-tests.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tests/spec/ext_shader_pixel_local_storage/pixel-local-tests.c b/tests/spec/ext_shader_pixel_local_storage/pixel-local-tests.c
+index 4776193f2..1ac669d11 100644
+--- a/tests/spec/ext_shader_pixel_local_storage/pixel-local-tests.c
++++ b/tests/spec/ext_shader_pixel_local_storage/pixel-local-tests.c
+@@ -851,7 +851,7 @@ make_test_main_str(char *dst, struct pls_format_data *format_data,
+ 		case GL_RGBA8UI:
+ 		case GL_RG16UI:
+ 		case GL_R32UI: {
+-			uint expected[4];
++			unsigned int expected[4];
+ 			for (int comp = 0; comp < 4; comp++) {
+ 				if (comp < format_data[member].num_components)
+ 					expected[comp] = format_data[member].u[comp];
diff --git a/meta/recipes-graphics/piglit/piglit/0001-tests-Fix-narrowing-errors-seen-with-clang.patch b/meta/recipes-graphics/piglit/piglit/0001-tests-Fix-narrowing-errors-seen-with-clang.patch
deleted file mode 100644
index 9751b20673..0000000000
--- a/meta/recipes-graphics/piglit/piglit/0001-tests-Fix-narrowing-errors-seen-with-clang.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From 0ba2f908f2a2a897e8e06e34f99893d11ee4734c Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Wed, 3 May 2023 21:59:43 -0700
-Subject: [PATCH] tests: Fix narrowing errors seen with clang
-
-Fixes
-piglit-test-pattern.cpp:656:26: error: type 'float' cannot be narrowed to 'int' in initiali
-zer list [-Wc++11-narrowing]
-
-Upstream-Status: Submitted [https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/807]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- .../spec/ext_framebuffer_multisample/draw-buffers-common.cpp  | 4 ++--
- tests/util/piglit-test-pattern.cpp                            | 4 ++--
- 2 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/tests/spec/ext_framebuffer_multisample/draw-buffers-common.cpp b/tests/spec/ext_framebuffer_multisample/draw-buffers-common.cpp
-index 48e1ad4a5..b36830c45 100644
---- a/tests/spec/ext_framebuffer_multisample/draw-buffers-common.cpp
-+++ b/tests/spec/ext_framebuffer_multisample/draw-buffers-common.cpp
-@@ -353,8 +353,8 @@ draw_pattern(bool sample_alpha_to_coverage,
- 		float vertices[4][2] = {
- 		{ 0.0f, 0.0f + i * (pattern_height / num_rects) },
- 		{ 0.0f, (i + 1.0f) * (pattern_height / num_rects) },
--		{ pattern_width, (i + 1.0f) * (pattern_height / num_rects) },
--		{ pattern_width, 0.0f + i * (pattern_height / num_rects) } };
-+		{ static_cast<float>(pattern_width), (i + 1.0f) * (pattern_height / num_rects) },
-+		{ static_cast<float>(pattern_width), 0.0f + i * (pattern_height / num_rects) } };
- 
- 		glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE,
- 				      sizeof(vertices[0]),
-diff --git a/tests/util/piglit-test-pattern.cpp b/tests/util/piglit-test-pattern.cpp
-index 43d451d6a..52ee94457 100644
---- a/tests/util/piglit-test-pattern.cpp
-+++ b/tests/util/piglit-test-pattern.cpp
-@@ -653,12 +653,12 @@ ColorGradientSunburst::draw_with_scale_and_offset(const float (*proj)[4],
- {
- 	switch (out_type) {
- 	case GL_INT: {
--		int clear_color[4] = { offset, offset, offset, offset };
-+		int clear_color[4] = { static_cast<int>(offset), static_cast<int>(offset), static_cast<int>(offset), static_cast<int>(offset) };
- 		glClearBufferiv(GL_COLOR, 0, clear_color);
- 		break;
- 	}
- 	case GL_UNSIGNED_INT: {
--		unsigned clear_color[4] = { offset, offset, offset, offset };
-+		unsigned clear_color[4] = { static_cast<unsigned>(offset), static_cast<unsigned>(offset), static_cast<unsigned>(offset), static_cast<unsigned>(offset) };
- 		glClearBufferuiv(GL_COLOR, 0, clear_color);
- 		break;
- 	}
diff --git a/meta/recipes-graphics/piglit/piglit/0001-tests-egl-spec-make-egl_ext_surface_compression-cond.patch b/meta/recipes-graphics/piglit/piglit/0001-tests-egl-spec-make-egl_ext_surface_compression-cond.patch
index c6c072c7e0..c71bf4c8bc 100644
--- a/meta/recipes-graphics/piglit/piglit/0001-tests-egl-spec-make-egl_ext_surface_compression-cond.patch
+++ b/meta/recipes-graphics/piglit/piglit/0001-tests-egl-spec-make-egl_ext_surface_compression-cond.patch
@@ -1,4 +1,4 @@
-From d6ed4c477f22309c09accd4fee68486d7714f205 Mon Sep 17 00:00:00 2001
+From 3e7ec165c718234e1afcdf730bdf20942976e25c Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin <alex@linutronix.de>
 Date: Fri, 22 Nov 2024 22:52:31 +0100
 Subject: [PATCH] tests/egl/spec: make egl_ext_surface_compression conditional
@@ -39,7 +39,7 @@ index d9540bcfd..01a70164f 100644
  
  # vim: ft=cmake:
 diff --git a/tests/egl/spec/egl_ext_surface_compression/create_surface.c b/tests/egl/spec/egl_ext_surface_compression/create_surface.c
-index e3d55d433..35f13fd00 100644
+index 71b043b54..09e87dee4 100644
 --- a/tests/egl/spec/egl_ext_surface_compression/create_surface.c
 +++ b/tests/egl/spec/egl_ext_surface_compression/create_surface.c
 @@ -25,7 +25,6 @@
diff --git a/meta/recipes-graphics/piglit/piglit/0001-tests-no_error.py-modify-_command-and-not-command.patch b/meta/recipes-graphics/piglit/piglit/0001-tests-no_error.py-modify-_command-and-not-command.patch
index f8600556e5..035e7a4d5a 100644
--- a/meta/recipes-graphics/piglit/piglit/0001-tests-no_error.py-modify-_command-and-not-command.patch
+++ b/meta/recipes-graphics/piglit/piglit/0001-tests-no_error.py-modify-_command-and-not-command.patch
@@ -1,4 +1,4 @@
-From 846efe923932d66810305b228fa09f83a172296d Mon Sep 17 00:00:00 2001
+From 14e56a6336f36d1112964ce1ff0900ea4b37b483 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin <alex@linutronix.de>
 Date: Thu, 22 May 2025 17:34:15 +0200
 Subject: [PATCH] tests/no_error.py: modify _command and not command
@@ -27,6 +27,3 @@ index 4ecaa9a01..c64eec0a1 100644
          profile.test_list['{} khr_no_error'.format(name)] = test
 -        test.command += ['-khr_no_error']
 +        test._command += ['-khr_no_error']
--- 
-2.39.5
-
diff --git a/meta/recipes-graphics/piglit/piglit/0002-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch b/meta/recipes-graphics/piglit/piglit/0002-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch
index 6cb561c3f2..329fd75975 100644
--- a/meta/recipes-graphics/piglit/piglit/0002-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch
+++ b/meta/recipes-graphics/piglit/piglit/0002-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch
@@ -1,4 +1,4 @@
-From deb0c15890fb9d0f4fc7074dde2a51c89cb5bf6d Mon Sep 17 00:00:00 2001
+From 4444dd748b9324508e3168f64cf0b5adc31b5ebd Mon Sep 17 00:00:00 2001
 From: Pascal Bach <pascal.bach@siemens.com>
 Date: Thu, 4 Oct 2018 14:43:17 +0200
 Subject: [PATCH] cmake: use proper WAYLAND_INCLUDE_DIRS variable
@@ -15,7 +15,7 @@ Upstream-Status: Submitted [piglit@lists.freedesktop.org]
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/tests/util/CMakeLists.txt b/tests/util/CMakeLists.txt
-index 1714ab41f..3b67aa7da 100644
+index f9bfec555..07b821375 100644
 --- a/tests/util/CMakeLists.txt
 +++ b/tests/util/CMakeLists.txt
 @@ -97,7 +97,7 @@ if(PIGLIT_USE_WAFFLE)
diff --git a/meta/recipes-graphics/piglit/piglit/0003-tests-util-piglit-shader.c-do-not-hardcode-build-pat.patch b/meta/recipes-graphics/piglit/piglit/0003-tests-util-piglit-shader.c-do-not-hardcode-build-pat.patch
index 7706d88086..9c05e639b3 100644
--- a/meta/recipes-graphics/piglit/piglit/0003-tests-util-piglit-shader.c-do-not-hardcode-build-pat.patch
+++ b/meta/recipes-graphics/piglit/piglit/0003-tests-util-piglit-shader.c-do-not-hardcode-build-pat.patch
@@ -1,4 +1,4 @@
-From 66d1d86ff8be33df265d0dda717be385fe8637cd Mon Sep 17 00:00:00 2001
+From f9bfdb8d32c2113c39c3be1bd6fd0934f693ab03 Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin <alex.kanavin@gmail.com>
 Date: Tue, 10 Nov 2020 17:13:50 +0000
 Subject: [PATCH] tests/util/piglit-shader.c: do not hardcode build path into
diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb
index 0dd9c58714..a020d67bbf 100644
--- a/meta/recipes-graphics/piglit/piglit_git.bb
+++ b/meta/recipes-graphics/piglit/piglit_git.bb
@@ -9,16 +9,14 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b2beded7103a3d8a442a2a0391d607b0"
 SRC_URI = "git://gitlab.freedesktop.org/mesa/piglit.git;protocol=https;branch=main \
            file://0002-cmake-use-proper-WAYLAND_INCLUDE_DIRS-variable.patch \
            file://0003-tests-util-piglit-shader.c-do-not-hardcode-build-pat.patch \
-           file://0001-tests-Fix-narrowing-errors-seen-with-clang.patch \
            file://0001-CMakeLists.txt-do-not-obtain-wayland-scanner-path-fr.patch \
            file://0001-tests-egl-spec-make-egl_ext_surface_compression-cond.patch \
            file://0001-tests-no_error.py-modify-_command-and-not-command.patch \
-           file://0001-generated_tests-use-shape-in-place-of-newshape-on-nu.patch \
-           file://0001-fbo-blit-stretch-rename-local-lerp-to-linear_interp.patch \
+           file://0001-pixel-local-tests-use-unsigned-int-instead-of-uint.patch \
            "
 UPSTREAM_CHECK_COMMITS = "1"
 
-SRCREV = "a0a27e528f643dfeb785350a1213bfff09681950"
+SRCREV = "56f237be32ed66820eb05ea3cb04cb8b957ccd8d"
 # (when PV goes above 1.0 remove the trailing r)
 PV = "1.0+gitr"
 
-- 
2.47.3



  parent reply	other threads:[~2026-07-06 17:17 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-06 17:16 [PATCH 01/45] selftest/locales: opt out of ptests in DISTRO_FEATURES Alexander Kanavin
2026-07-06 17:16 ` [PATCH 02/45] files/common-licenses/MIT-with-fmt-exception: add a custom license Alexander Kanavin
2026-07-06 17:16 ` [PATCH 03/45] acl: upgrade 2.3.2 -> 2.4.0 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 04/45] appstream: upgrade 1.1.2 -> 1.1.3 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 05/45] at-spi2-core: upgrade 2.60.4 -> 2.60.5 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 06/45] attr: upgrade 2.5.2 -> 2.6.0 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 07/45] barebox-tools: upgrade 2026.06.0 -> 2026.06.1 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 08/45] cmake: upgrade 4.3.3 -> 4.3.4 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 09/45] expat: upgrade 2.8.1 -> 2.8.2 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 10/45] fmt: upgrade 12.1.0 -> 12.2.0 Alexander Kanavin
2026-07-09 16:35   ` [OE-core] " Khem Raj
2026-07-06 17:16 ` [PATCH 11/45] git: upgrade 2.54.0 -> 2.55.0 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 12/45] glib-2.0: upgrade 2.88.1 -> 2.88.2 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 13/45] gnu-config: upgrade to latest revision Alexander Kanavin
2026-07-06 17:16 ` [PATCH 14/45] gn: " Alexander Kanavin
2026-07-06 17:16 ` [PATCH 15/45] gtk-doc: upgrade 1.35.1 -> 1.36.1 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 16/45] iproute2: upgrade 7.0.0 -> 7.1.0 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 17/45] json-c: upgrade 0.18 -> 0.19 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 18/45] libarchive: upgrade 3.8.7 -> 3.8.8 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 19/45] libffi: upgrade 3.5.2 -> 3.6.0 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 20/45] libical: upgrade 3.0.20 -> 4.0.3 Alexander Kanavin
2026-07-08  5:52   ` [OE-core] " Mathieu Dubois-Briand
2026-07-08 12:04     ` Alexander Kanavin
2026-07-06 17:16 ` [PATCH 21/45] libpsl: upgrade 0.21.5 -> 0.22.0 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 22/45] lighttpd: upgrade 1.4.83 -> 1.4.84 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 23/45] lttng-modules: upgrade 2.15.1 -> 2.15.2 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 24/45] opkg: upgrade 0.9.0 -> 0.10.0 Alexander Kanavin
2026-07-06 17:16 ` Alexander Kanavin [this message]
2026-07-06 17:16 ` [PATCH 26/45] python3-click: upgrade 8.4.1 -> 8.4.2 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 27/45] python3-hypothesis: upgrade 6.155.2 -> 6.155.7 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 28/45] python3-pdm: upgrade 2.27.0 -> 2.28.0 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 29/45] python3-pytest: upgrade 9.1.0 -> 9.1.1 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 30/45] python3-setuptools-rust: upgrade 1.12.1 -> 1.13.0 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 31/45] python3-setuptools-scm: upgrade 10.0.5 -> 10.2.0 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 32/45] python3-vcs-versioning: upgrade 1.1.1 -> 2.2.2 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 33/45] python3-wcwidth: upgrade 0.8.1 -> 0.8.2 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 34/45] qemu: upgrade 11.0.1 -> 11.0.2 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 35/45] shared-mime-info: upgrade 2.4 -> 2.5.1 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 36/45] socat: upgrade 1.8.1.1 -> 1.8.1.3 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 37/45] sqlite3: upgrade 3.53.2 -> 3.53.3 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 38/45] strace: upgrade 7.0 -> 7.1 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 39/45] tcl: upgrade 9.0.3 -> 9.0.4 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 40/45] ttyrun: upgrade 2.42.1 -> 2.43.0 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 41/45] vulkan-samples: upgrade to latest revision Alexander Kanavin
2026-07-06 17:16 ` [PATCH 42/45] vulkan: upgrade 1.4.350.0 -> 1.4.350.1 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 43/45] waffle: upgrade 1.8.2 -> 1.8.3 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 44/45] wic: upgrade 0.3.0 -> 0.3.1 Alexander Kanavin
2026-07-06 17:16 ` [PATCH 45/45] xkeyboard-config: upgrade 2.47 -> 2.48 Alexander Kanavin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260706171701.70536-25-alex.kanavin@gmail.com \
    --to=alex.kanavin@gmail.com \
    --cc=alex@linutronix.de \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.