pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/textproc/hunspell Update to 1.2.2.
details: https://anonhg.NetBSD.org/pkgsrc/rev/f80579a0186f
branches: trunk
changeset: 541042:f80579a0186f
user: wiz <wiz%pkgsrc.org@localhost>
date: Mon Apr 14 09:39:00 2008 +0000
description:
Update to 1.2.2.
pkgsrc change:
buildlink3.mk:
Bump API_DEPENDS, since shlib name changed. No dependencies in pkgsrc.
Release notes:
2008-04-12: Hunspell 1.2.2 release:
- extended dictionary (dic file) support to use multiple base and
special dictionaries.
- new and improved options of command line hunspell:
-m: morphological analysis or flag debug mode (without affix
rule data it signs the flag of the affix rules)
-s: stemming mode
-D: list available dictionaries and search path
-d: support extra dictionaries by comma separated list. Example:
hunspell -d en_US,en_med,de_DE,de_med,de_geo UNESCO.txt
- forbidding in personal dictionary (with asterisk, / signs affixation)
- optional compressed dictionary format "hzip" for aff and dic files
usage:
hzip example.aff example.dic
mv example.aff example.dic /tmp
hunspell -d example
hunzip example.aff.hz >example.aff
hunzip example.dic.hz >example.dic
- new affix compression tool "affixcompress": compression tool for
large (millions of words) dictionaries.
- support encrypted dictionaries for closed OpenOffice.org extensions or
other commercial programs
- improved manual
- bug fixes
2007-11-01: Hunspell 1.2.1 release:
- new memory efficient condition checking algorithm for affix rules
- new morphological functions:
- stem() for stemming
- analyze() for morphological analysis
- generate() for morphological generation
- new demos:
- analyze: stemming, morphological analysis and generation
- chmorph: morphological conversion of texts
diffstat:
textproc/hunspell/Makefile | 6 ++----
textproc/hunspell/PLIST | 11 +++++++++--
textproc/hunspell/buildlink3.mk | 4 ++--
textproc/hunspell/distinfo | 8 ++++----
4 files changed, 17 insertions(+), 12 deletions(-)
diffs (82 lines):
diff -r 79f67a488055 -r f80579a0186f textproc/hunspell/Makefile
--- a/textproc/hunspell/Makefile Mon Apr 14 08:25:31 2008 +0000
+++ b/textproc/hunspell/Makefile Mon Apr 14 09:39:00 2008 +0000
@@ -1,9 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2008/02/22 17:04:34 jlam Exp $
+# $NetBSD: Makefile,v 1.6 2008/04/14 09:39:00 wiz Exp $
#
-DISTNAME= hunspell-1.1.12-2
-PKGNAME= ${DISTNAME:C/-([0-9]+)$/.\1/}
-PKGREVISION= 2
+DISTNAME= hunspell-1.2.2
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hunspell/}
diff -r 79f67a488055 -r f80579a0186f textproc/hunspell/PLIST
--- a/textproc/hunspell/PLIST Mon Apr 14 08:25:31 2008 +0000
+++ b/textproc/hunspell/PLIST Mon Apr 14 09:39:00 2008 +0000
@@ -1,6 +1,10 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2007/09/11 17:40:29 wiz Exp $
+@comment $NetBSD: PLIST,v 1.2 2008/04/14 09:39:00 wiz Exp $
+bin/analyze
+bin/chmorph
bin/example
bin/hunspell
+bin/hunzip
+bin/hzip
bin/munch
bin/unmunch
include/hunspell/affentry.hxx
@@ -9,16 +13,19 @@
include/hunspell/baseaffix.hxx
include/hunspell/csutil.hxx
include/hunspell/dictmgr.hxx
+include/hunspell/filemgr.hxx
include/hunspell/hashmgr.hxx
include/hunspell/htypes.hxx
include/hunspell/hunspell.h
include/hunspell/hunspell.hxx
+include/hunspell/hunzip.hxx
include/hunspell/langnum.hxx
include/hunspell/phonet.hxx
include/hunspell/suggestmgr.hxx
+include/hunspell/w_char.hxx
include/munch.h
include/unmunch.h
-lib/libhunspell-1.1.la
+lib/libhunspell-1.2.la
lib/libparsers.a
lib/pkgconfig/hunspell.pc
man/hu/man1/hunspell.1
diff -r 79f67a488055 -r f80579a0186f textproc/hunspell/buildlink3.mk
--- a/textproc/hunspell/buildlink3.mk Mon Apr 14 08:25:31 2008 +0000
+++ b/textproc/hunspell/buildlink3.mk Mon Apr 14 09:39:00 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.1 2007/09/11 17:48:06 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.2 2008/04/14 09:39:00 wiz Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
HUNSPELL_BUILDLINK3_MK:= ${HUNSPELL_BUILDLINK3_MK}+
@@ -12,7 +12,7 @@
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}hunspell
.if ${HUNSPELL_BUILDLINK3_MK} == "+"
-BUILDLINK_API_DEPENDS.hunspell+= hunspell>=1.1.12.2
+BUILDLINK_API_DEPENDS.hunspell+= hunspell>=1.2.2
BUILDLINK_PKGSRCDIR.hunspell?= ../../textproc/hunspell
.endif # HUNSPELL_BUILDLINK3_MK
diff -r 79f67a488055 -r f80579a0186f textproc/hunspell/distinfo
--- a/textproc/hunspell/distinfo Mon Apr 14 08:25:31 2008 +0000
+++ b/textproc/hunspell/distinfo Mon Apr 14 09:39:00 2008 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1.1.1 2007/09/11 17:40:29 wiz Exp $
+$NetBSD: distinfo,v 1.2 2008/04/14 09:39:00 wiz Exp $
-SHA1 (hunspell-1.1.12-2.tar.gz) = 2bd8ff433f5d4d4901fc6592f7f340013017acf5
-RMD160 (hunspell-1.1.12-2.tar.gz) = 15250b47b2ef3f867fa6f114e1f5b09933474764
-Size (hunspell-1.1.12-2.tar.gz) = 731022 bytes
+SHA1 (hunspell-1.2.2.tar.gz) = 521063ff64b2182e92e92f5355ae2cf396f39420
+RMD160 (hunspell-1.2.2.tar.gz) = 110c428f2b6734afefb8865dc3d63a4492594552
+Size (hunspell-1.2.2.tar.gz) = 752046 bytes
Home |
Main Index |
Thread Index |
Old Index