mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-10 11:50:52 +00:00
@@ -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:
|
||||
|
||||
@@ -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_);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user