bump(main/aspell): 0.60.8.2

Remove upstream patch file.
ee6cbb12ff
This commit is contained in:
termux-pacman-bot
2026-01-28 07:10:25 +00:00
parent 3d603226af
commit b7bbf21f8d
2 changed files with 2 additions and 17 deletions

View File

@@ -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:

View File

@@ -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<class Parms>
void VectorHashTable<Parms>::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_);
}
}