From b7bbf21f8d7aa1825dc012d05052b449ff2ce9d8 Mon Sep 17 00:00:00 2001 From: termux-pacman-bot Date: Wed, 28 Jan 2026 07:10:25 +0000 Subject: [PATCH] bump(main/aspell): 0.60.8.2 Remove upstream patch file. https://github.com/GNUAspell/aspell/commit/ee6cbb12ff36a1e6618d7388a78dd4e0a2b44041 --- packages/aspell/build.sh | 5 ++--- packages/aspell/clang-19.patch | 14 -------------- 2 files changed, 2 insertions(+), 17 deletions(-) delete mode 100644 packages/aspell/clang-19.patch diff --git a/packages/aspell/build.sh b/packages/aspell/build.sh index f22bd57691..2518185434 100644 --- a/packages/aspell/build.sh +++ b/packages/aspell/build.sh @@ -2,10 +2,9 @@ TERMUX_PKG_HOMEPAGE=http://aspell.net TERMUX_PKG_DESCRIPTION="A free and open source spell checker designed to replace Ispell" TERMUX_PKG_LICENSE="LGPL-2.1" TERMUX_PKG_MAINTAINER="@termux" -TERMUX_PKG_VERSION="0.60.8.1" -TERMUX_PKG_REVISION=2 +TERMUX_PKG_VERSION="0.60.8.2" TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/aspell/aspell-${TERMUX_PKG_VERSION}.tar.gz -TERMUX_PKG_SHA256=d6da12b34d42d457fa604e435ad484a74b2effcd120ff40acd6bb3fb2887d21b +TERMUX_PKG_SHA256=57fe4863eae6048f72245a8575b44b718fb85ca14b9f8c0afc41b254dfd76919 TERMUX_PKG_AUTO_UPDATE=true TERMUX_PKG_DEPENDS="libc++" # To use the same compiled dictionaries on every platform: diff --git a/packages/aspell/clang-19.patch b/packages/aspell/clang-19.patch deleted file mode 100644 index b95c4c9ef6..0000000000 --- a/packages/aspell/clang-19.patch +++ /dev/null @@ -1,14 +0,0 @@ -https://github.com/chimera-linux/cports/blob/6f2feacc45c0c27b7518d702cc979fbacf2f8d59/main/aspell/patches/clang19.patch - ---- a/modules/speller/default/vector_hash-t.hpp -+++ b/modules/speller/default/vector_hash-t.hpp -@@ -183,7 +183,8 @@ namespace aspeller { - template - void VectorHashTable::recalc_size() { - size_ = 0; -- for (iterator i = begin(); i != this->e; ++i, ++this->_size); -+ iterator e = end(); -+ for (iterator i = begin(); i != e; ++i, ++this->size_); - } - - }