pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/aspell Update to 0.60.3.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/66a889f5dc2d
branches:  trunk
changeset: 496423:66a889f5dc2d
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Tue Jun 28 14:17:49 2005 +0000

description:
Update to 0.60.3.

Complete list of changes from 0.60.2:

   * Fixed bugs involving several of the C API functions.

   * Fixed bug where `ultra' or `fast' mode will not return any
     suggestions when soundslike lookup is not used.

   * Made a minor, yet significant, optimization to the suggestion code.
     This speed things up by an order of magnitude in some cases.

   * Avoid using the slow ngram scan except when the `sug-mode' is
     `slow' or `bad-speller'.

   * Fixed a bug in curses mode which causes word-wrap to not work
     correctly in some cases.

   * Fixed a bug in pipe mode with a missing newline.

   * Fixed the `spell' compatibility script.

   * Several other minor bugs fixed.

   * Made note about the change in behavior of the `-l' command line
     switch.

   * Other manual update/fixes.

   * Updated to Libtool 1.5.18, Automake 1.9.6, and Makeinfo 4.8.

diffstat:

 textproc/aspell/Makefile         |   5 ++---
 textproc/aspell/distinfo         |  12 +++++-------
 textproc/aspell/patches/patch-aa |  13 -------------
 textproc/aspell/patches/patch-ab |  13 -------------
 textproc/aspell/patches/patch-ac |   6 +++---
 5 files changed, 10 insertions(+), 39 deletions(-)

diffs (81 lines):

diff -r 10be7013776b -r 66a889f5dc2d textproc/aspell/Makefile
--- a/textproc/aspell/Makefile  Tue Jun 28 13:44:38 2005 +0000
+++ b/textproc/aspell/Makefile  Tue Jun 28 14:17:49 2005 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.32 2005/06/26 05:19:10 wiz Exp $
+# $NetBSD: Makefile,v 1.33 2005/06/28 14:17:49 wiz Exp $
 #
 
-DISTNAME=              aspell-0.60.2
-PKGREVISION=           1
+DISTNAME=              aspell-0.60.3
 CATEGORIES=            textproc
 MASTER_SITES=          ${MASTER_SITE_GNU:=aspell/}
 
diff -r 10be7013776b -r 66a889f5dc2d textproc/aspell/distinfo
--- a/textproc/aspell/distinfo  Tue Jun 28 13:44:38 2005 +0000
+++ b/textproc/aspell/distinfo  Tue Jun 28 14:17:49 2005 +0000
@@ -1,9 +1,7 @@
-$NetBSD: distinfo,v 1.14 2005/06/26 05:19:10 wiz Exp $
+$NetBSD: distinfo,v 1.15 2005/06/28 14:17:49 wiz Exp $
 
-SHA1 (aspell-0.60.2.tar.gz) = 2429ceeddc5ad68e11aaca404d1eaa2e4997bef1
-RMD160 (aspell-0.60.2.tar.gz) = ce5b5ef1f7ae4d7434200202bd23b8076a38ba90
-Size (aspell-0.60.2.tar.gz) = 1577570 bytes
-SHA1 (patch-aa) = d6446a8ec87ffb6cb76d59927b407c97716bf771
-SHA1 (patch-ab) = 505bdb239beec03d21ee372e50a165d3067e3755
-SHA1 (patch-ac) = 659fac33603b1b56c4c8149c7d8e94811e22f4b6
+SHA1 (aspell-0.60.3.tar.gz) = 90f9414947550b92f2a113b131d8c628cb7e7887
+RMD160 (aspell-0.60.3.tar.gz) = 92e0dd8e271a48f73407e23c2d0246f2827e1789
+Size (aspell-0.60.3.tar.gz) = 1635824 bytes
+SHA1 (patch-ac) = 4d20eebd29932f1ba970a9d85793fb8611d76ba8
 SHA1 (patch-ag) = 04b34f2b780a632a5045120ae408ceea591a66de
diff -r 10be7013776b -r 66a889f5dc2d textproc/aspell/patches/patch-aa
--- a/textproc/aspell/patches/patch-aa  Tue Jun 28 13:44:38 2005 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.7 2005/02/20 23:06:17 wiz Exp $
-
---- modules/filter/nroff.cpp.orig      Mon Feb  7 18:18:29 2005
-+++ modules/filter/nroff.cpp   Mon Feb  7 18:18:42 2005
-@@ -73,7 +73,7 @@
-       return false;
-     }
-     
--    bool inline NroffFilter::process_char (FilterChar::Chr c);
-+    bool NroffFilter::process_char (FilterChar::Chr c);
-       
-   public:
- 
diff -r 10be7013776b -r 66a889f5dc2d textproc/aspell/patches/patch-ab
--- a/textproc/aspell/patches/patch-ab  Tue Jun 28 13:44:38 2005 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.5 2005/06/26 05:19:10 wiz Exp $
-
---- modules/speller/default/readonly_ws.cpp.orig       2004-11-10 07:18:45.000000000 +0100
-+++ modules/speller/default/readonly_ws.cpp
-@@ -921,7 +921,7 @@ namespace {
-           prev->aff = aff;
-           aff += l1;
-           for (const char * p = cur->aff; *p; ++p) {
--            if (memchr(prev->aff, l1, *p)) continue;
-+            if (memchr(prev->aff, *p, l1)) continue;
-             *aff = *p;
-             ++aff;
-           }
diff -r 10be7013776b -r 66a889f5dc2d textproc/aspell/patches/patch-ac
--- a/textproc/aspell/patches/patch-ac  Tue Jun 28 13:44:38 2005 +0000
+++ b/textproc/aspell/patches/patch-ac  Tue Jun 28 14:17:49 2005 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-ac,v 1.4 2004/12/24 02:55:53 wiz Exp $
+$NetBSD: patch-ac,v 1.5 2005/06/28 14:17:50 wiz Exp $
 
---- prog/check_funs.cpp.orig   2004-08-08 07:04:57.000000000 +0200
+--- prog/check_funs.cpp.orig   2005-06-01 05:06:23.000000000 +0200
 +++ prog/check_funs.cpp
-@@ -210,7 +210,8 @@ static void layout_screen() {
+@@ -216,7 +216,8 @@ static void layout_screen() {
    choice_w = 0;
    nonl();
    noecho();



Home | Main Index | Thread Index | Old Index