public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [OE-core] [PATCH 01/39] aspell: upgrade 0.60.8.1 -> 0.60.8.2
@ 2026-02-09  9:02 Wang Mingyu
  2026-02-09  9:02 ` [OE-core] [PATCH 02/39] diffoscope: upgrade 306 -> 311 Wang Mingyu
                   ` (37 more replies)
  0 siblings, 38 replies; 41+ messages in thread
From: Wang Mingyu @ 2026-02-09  9:02 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

0001-modules-speller-default-vector_hash-t.hpp-fix-gcc-15.patch
removed since it's included in 0.60.8.2

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...default-vector_hash-t.hpp-fix-gcc-15.patch | 42 -------------------
 ...{aspell_0.60.8.1.bb => aspell_0.60.8.2.bb} |  5 +--
 2 files changed, 2 insertions(+), 45 deletions(-)
 delete mode 100644 meta/recipes-support/aspell/aspell/0001-modules-speller-default-vector_hash-t.hpp-fix-gcc-15.patch
 rename meta/recipes-support/aspell/{aspell_0.60.8.1.bb => aspell_0.60.8.2.bb} (84%)

diff --git a/meta/recipes-support/aspell/aspell/0001-modules-speller-default-vector_hash-t.hpp-fix-gcc-15.patch b/meta/recipes-support/aspell/aspell/0001-modules-speller-default-vector_hash-t.hpp-fix-gcc-15.patch
deleted file mode 100644
index 4045e8e412..0000000000
--- a/meta/recipes-support/aspell/aspell/0001-modules-speller-default-vector_hash-t.hpp-fix-gcc-15.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From d45bf96b0a3556acb2c83069a78eaaac973d31b4 Mon Sep 17 00:00:00 2001
-From: Sergei Trofimovich <slyich@gmail.com>
-Date: Sun, 21 Jul 2024 22:01:50 +0100
-Subject: [PATCH] modules/speller/default/vector_hash-t.hpp: fix gcc-15 build
-
-Uncoming `gcc-15` added extra checks for template instantiation that is
-guaranteed to fail in
-  https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=313afcfdabeab3e6705ac0bd1273627075be0023
-
-As a result `aspell` build now fails as:
-
-    In file included from modules/speller/default/readonly_ws.cpp:51:
-    modules/speller/default/vector_hash-t.hpp: In member function 'void aspeller::VectorHashTable<Parms>::recalc_size()':
-    modules/speller/default/vector_hash-t.hpp:186:43: error: 'class aspeller::VectorHashTable<Parms>' has no member named 'e'
-      186 |     for (iterator i = begin(); i != this->e; ++i, ++this->_size);
-          |                                           ^
-    modules/speller/default/vector_hash-t.hpp:186:59: error: 'class aspeller::VectorHashTable<Parms>' has no member named '_size'; did you mean 'size'?
-      186 |     for (iterator i = begin(); i != this->e; ++i, ++this->_size);
-          |                                                           ^~~~~
-          |                                                           size
-
-It looks like `_size` is `size_` mis-spelling and `e` was not introduced
-here.
-Upstream-Status: Backport [https://github.com/GNUAspell/aspell/commit/ee6cbb12ff36a1e6618d7388a78dd4e0a2b44041]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- modules/speller/default/vector_hash-t.hpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/modules/speller/default/vector_hash-t.hpp b/modules/speller/default/vector_hash-t.hpp
-index 969a80c..e4420b4 100644
---- a/modules/speller/default/vector_hash-t.hpp
-+++ b/modules/speller/default/vector_hash-t.hpp
-@@ -183,7 +183,7 @@ namespace aspeller {
-   template<class Parms>
-   void VectorHashTable<Parms>::recalc_size() {
-     size_ = 0;
--    for (iterator i = begin(); i != this->e; ++i, ++this->_size);
-+    for (iterator i = begin(), e = end(); i != e; ++i, ++size_);
-   }
- 
- }
diff --git a/meta/recipes-support/aspell/aspell_0.60.8.1.bb b/meta/recipes-support/aspell/aspell_0.60.8.2.bb
similarity index 84%
rename from meta/recipes-support/aspell/aspell_0.60.8.1.bb
rename to meta/recipes-support/aspell/aspell_0.60.8.2.bb
index 43940b1e1b..5b4fab7c35 100644
--- a/meta/recipes-support/aspell/aspell_0.60.8.1.bb
+++ b/meta/recipes-support/aspell/aspell_0.60.8.2.bb
@@ -13,9 +13,8 @@ HOMEPAGE = "http://aspell.net/"
 LICENSE = "LGPL-2.0-only | LGPL-2.1-only"
 LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
 
-SRC_URI = "${GNU_MIRROR}/aspell/aspell-${PV}.tar.gz \
-           file://0001-modules-speller-default-vector_hash-t.hpp-fix-gcc-15.patch"
-SRC_URI[sha256sum] = "d6da12b34d42d457fa604e435ad484a74b2effcd120ff40acd6bb3fb2887d21b"
+SRC_URI = "${GNU_MIRROR}/aspell/aspell-${PV}.tar.gz"
+SRC_URI[sha256sum] = "57fe4863eae6048f72245a8575b44b718fb85ca14b9f8c0afc41b254dfd76919"
 
 PACKAGECONFIG ??= ""
 PACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses"
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 41+ messages in thread

end of thread, other threads:[~2026-02-11  4:03 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-09  9:02 [OE-core] [PATCH 01/39] aspell: upgrade 0.60.8.1 -> 0.60.8.2 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 02/39] diffoscope: upgrade 306 -> 311 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 03/39] dos2unix: upgrade 7.5.3 -> 7.5.4 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 04/39] gi-docgen: upgrade 2025.5 -> 2026.1 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 05/39] git: upgrade 2.52.0 -> 2.53.0 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 06/39] glslang: upgrade 1.4.335.0 -> 1.4.341.0 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 07/39] harfbuzz: upgrade 12.3.1 -> 12.3.2 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 08/39] liburcu: upgrade 0.15.5 -> 0.15.6 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 09/39] libxcomposite: upgrade 0.4.6 -> 0.4.7 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 10/39] libxdamage: upgrade 1.1.6 -> 1.1.7 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 11/39] libxext: upgrade 1.3.6 -> 1.3.7 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 12/39] libxinerama: upgrade 1.1.5 -> 1.1.6 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 13/39] libxmu: upgrade 1.2.1 -> 1.3.1 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 14/39] libxpm: upgrade 3.5.17 -> 3.5.18 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 15/39] libxrandr: upgrade 1.5.4 -> 1.5.5 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 16/39] libxvmc: upgrade 1.0.14 -> 1.0.15 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 17/39] libxxf86vm: upgrade 1.1.6 -> 1.1.7 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 18/39] mesa: upgrade 25.3.3 -> 25.3.4 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 19/39] python3-babel: upgrade 2.17.0 -> 2.18.0 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 20/39] python3-cryptography: upgrade 46.0.3 -> 46.0.4 Wang Mingyu
2026-02-09  9:02 ` [OE-core] [PATCH 21/39] python3-dbusmock: upgrade 0.37.2 -> 0.38.1 Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 22/39] python3-hypothesis: upgrade 6.150.3 -> 6.151.4 Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 23/39] python3-numpy: upgrade 2.3.5 -> 2.4.2 Wang Mingyu
2026-02-10 11:58   ` Mathieu Dubois-Briand
2026-02-11  4:02     ` Mingyu Wang (Fujitsu)
2026-02-09  9:03 ` [OE-core] [PATCH 24/39] python3-pathspec: upgrade 1.0.3 -> 1.0.4 Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 25/39] python3-pdm-backend: upgrade 2.4.6 -> 2.4.7 Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 26/39] python3-pip: upgrade 25.3 -> 26.0 Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 27/39] python3-poetry-core: upgrade 2.3.0 -> 2.3.1 Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 28/39] python3-psutil: upgrade 7.2.1 -> 7.2.2 Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 29/39] python3-uv-build: upgrade 0.9.26 -> 0.9.28 Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 30/39] repo: upgrade 2.61 -> 2.61.1 Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 31/39] shaderc: upgrade 2025.5 -> 2026.1 Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 32/39] spirv-headers: upgrade 1.4.335.0 -> 1.4.341.0 Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 33/39] spirv-tools: " Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 34/39] vulkan-headers: " Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 35/39] vulkan-loader: " Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 36/39] vulkan-tools: " Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 37/39] vulkan-utility-libraries: " Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 38/39] vulkan-validation-layers: " Wang Mingyu
2026-02-09  9:03 ` [OE-core] [PATCH 39/39] vulkan-volk: " Wang Mingyu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox