From 072f84f50be8d3287934fb5e2aed85b386aa7d89 Mon Sep 17 00:00:00 2001 From: sthen Date: Fri, 13 Mar 2026 10:53:01 +0000 Subject: [PATCH] update to aspell-0.60.8.2 --- textproc/aspell/core/Makefile | 5 ++--- textproc/aspell/core/distinfo | 4 ++-- ...tch-modules_speller_default_vector_hash-t_hpp | 16 ---------------- 3 files changed, 4 insertions(+), 21 deletions(-) delete mode 100644 textproc/aspell/core/patches/patch-modules_speller_default_vector_hash-t_hpp diff --git a/textproc/aspell/core/Makefile b/textproc/aspell/core/Makefile index 00b0e37b64b..cc94a7bc3ba 100644 --- a/textproc/aspell/core/Makefile +++ b/textproc/aspell/core/Makefile @@ -1,9 +1,8 @@ COMMENT= spell checker with multi-language support -DISTNAME= aspell-0.60.8.1 +DISTNAME= aspell-0.60.8.2 DIST_SUBDIR= aspell CATEGORIES= textproc -REVISION= 0 SHARED_LIBS += aspell 18.1 # .18.1 SHARED_LIBS += pspell 17.0 # .18.1 @@ -13,7 +12,7 @@ DIST_EN= aspell6-en-2020.12.07-0 SITES= ${SITE_GNU:=aspell/} SITES.en= ${SITE_GNU:=aspell/dict/en/} -DISTFILES.en= ${DIST_EN}.tar.bz2 +DISTFILES.en= ${DIST_EN}.tar.bz2 HOMEPAGE= http://aspell.net/ diff --git a/textproc/aspell/core/distinfo b/textproc/aspell/core/distinfo index b155acd14df..71eac3608ff 100644 --- a/textproc/aspell/core/distinfo +++ b/textproc/aspell/core/distinfo @@ -1,4 +1,4 @@ -SHA256 (aspell/aspell-0.60.8.1.tar.gz) = 1toSs01C1Ff6YE5DWtSEp0su/80SD/QKzWuz+yiH0hs= +SHA256 (aspell/aspell-0.60.8.2.tar.gz) = V/5IY+rmBI9yJFqFdbRLcY+4XKFLn4wK/EGyVN/XaRk= SHA256 (aspell/aspell6-en-2020.12.07-0.tar.bz2) = TI9zSiigiLiLtkgfz5ctCyw9yNqUT3ZzKDzkh+rEn7M= -SIZE (aspell/aspell-0.60.8.1.tar.gz) = 3567205 +SIZE (aspell/aspell-0.60.8.2.tar.gz) = 3582264 SIZE (aspell/aspell6-en-2020.12.07-0.tar.bz2) = 188972 diff --git a/textproc/aspell/core/patches/patch-modules_speller_default_vector_hash-t_hpp b/textproc/aspell/core/patches/patch-modules_speller_default_vector_hash-t_hpp deleted file mode 100644 index a1ed3b0a5fc..00000000000 --- a/textproc/aspell/core/patches/patch-modules_speller_default_vector_hash-t_hpp +++ /dev/null @@ -1,16 +0,0 @@ -Fix build with llvm-19 - -https://github.com/GNUAspell/aspell/pull/650 - -Index: modules/speller/default/vector_hash-t.hpp ---- modules/speller/default/vector_hash-t.hpp.orig -+++ modules/speller/default/vector_hash-t.hpp -@@ -183,7 +183,7 @@ namespace aspeller { - template - void VectorHashTable::recalc_size() { - size_ = 0; -- for (iterator i = begin(); i != this->e; ++i, ++this->_size); -+ for (iterator i = begin(), e = end(); i != e; ++i, ++size_); - } - - }