pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/textproc/aspell Add patch from program's author that f...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a90f98ed267c
branches:  trunk
changeset: 496327:a90f98ed267c
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sun Jun 26 05:19:10 2005 +0000

description:
Add patch from program's author that fixes aspell-cz build.
Bump PKGREVISION to 1.

diffstat:

 textproc/aspell/Makefile         |   3 ++-
 textproc/aspell/distinfo         |   3 ++-
 textproc/aspell/patches/patch-ab |  13 +++++++++++++
 3 files changed, 17 insertions(+), 2 deletions(-)

diffs (44 lines):

diff -r 3df8b1a2b421 -r a90f98ed267c textproc/aspell/Makefile
--- a/textproc/aspell/Makefile  Sun Jun 26 04:05:41 2005 +0000
+++ b/textproc/aspell/Makefile  Sun Jun 26 05:19:10 2005 +0000
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.31 2005/05/22 20:08:34 jlam Exp $
+# $NetBSD: Makefile,v 1.32 2005/06/26 05:19:10 wiz Exp $
 #
 
 DISTNAME=              aspell-0.60.2
+PKGREVISION=           1
 CATEGORIES=            textproc
 MASTER_SITES=          ${MASTER_SITE_GNU:=aspell/}
 
diff -r 3df8b1a2b421 -r a90f98ed267c textproc/aspell/distinfo
--- a/textproc/aspell/distinfo  Sun Jun 26 04:05:41 2005 +0000
+++ b/textproc/aspell/distinfo  Sun Jun 26 05:19:10 2005 +0000
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.13 2005/02/24 14:48:39 agc Exp $
+$NetBSD: distinfo,v 1.14 2005/06/26 05:19:10 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 (patch-ag) = 04b34f2b780a632a5045120ae408ceea591a66de
diff -r 3df8b1a2b421 -r a90f98ed267c textproc/aspell/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/aspell/patches/patch-ab  Sun Jun 26 05:19:10 2005 +0000
@@ -0,0 +1,13 @@
+$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;
+           }



Home | Main Index | Thread Index | Old Index