pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc/enchant2
Module Name: pkgsrc
Committed By: adam
Date: Mon Sep 7 08:11:23 UTC 2026
Modified Files:
pkgsrc/textproc/enchant2: Makefile distinfo options.mk
Log Message:
enchant2: updated to 2.8.21
2.8.21 (September 3, 2026)
This release fixes two bugs in composite dictionaries: first, if any
dictionary creation failed during creation of a composite dictionary,
dictionaries already created would be leaked; and secondly, the broker error
status could end up indicating an error incorrectly when one provider or
language failed and a fallback later succeeded. Thanks to @lpyuu for the
report and fixes.
2.8.20 (August 25, 2026)
This release improves the man page for enchant(1), mostly by documenting
Ispell command-line options and pipe-mode commands that it ignores.
To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 pkgsrc/textproc/enchant2/Makefile
cvs rdiff -u -r1.44 -r1.45 pkgsrc/textproc/enchant2/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/enchant2/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/textproc/enchant2/Makefile
diff -u pkgsrc/textproc/enchant2/Makefile:1.61 pkgsrc/textproc/enchant2/Makefile:1.62
--- pkgsrc/textproc/enchant2/Makefile:1.61 Wed Sep 2 19:04:41 2026
+++ pkgsrc/textproc/enchant2/Makefile Mon Sep 7 08:11:23 2026
@@ -1,33 +1,30 @@
-# $NetBSD: Makefile,v 1.61 2026/09/02 19:04:41 wiz Exp $
+# $NetBSD: Makefile,v 1.62 2026/09/07 08:11:23 adam Exp $
-DISTNAME= enchant-2.8.19
-PKGNAME= ${DISTNAME:S/enchant/enchant2/}
-PKGREVISION= 2
-CATEGORIES= textproc
-MASTER_SITES= ${MASTER_SITE_GITHUB:=rrthomas/}
-GITHUB_PROJECT= enchant
-GITHUB_RELEASE= v${PKGVERSION_NOREV}
-DIST_SUBDIR= ${PKGNAME_NOREV}
-
-MAINTAINER= pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE= https://rrthomas.github.io/enchant/
-COMMENT= Generic spell checking library
-LICENSE= gnu-lgpl-v2.1
+DISTNAME= enchant-2.8.21
+PKGNAME= ${DISTNAME:S/enchant/enchant2/}
+CATEGORIES= textproc
+MASTER_SITES= ${MASTER_SITE_GITHUB:=rrthomas/}
+GITHUB_PROJECT= enchant
+GITHUB_RELEASE= v${PKGVERSION_NOREV}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= https://rrthomas.github.io/enchant/
+COMMENT= Generic spell checking library
+LICENSE= gnu-lgpl-v2.1
+USE_CXX_FEATURES= c++11
USE_LANGUAGES= c c++
-USE_CXX_FEATURES+= c++11
-
-USE_TOOLS+= autoconf gmake groff pkg-config
USE_PKGLOCALEDIR= yes
USE_LIBTOOL= yes
+USE_TOOLS+= autoconf gmake groff pkg-config
PKGCONFIG_OVERRIDE+= enchant.pc.in
GNU_CONFIGURE= yes
CFLAGS.SunOS+= -D__EXTENSIONS__
# Force disable all spell checkers that are not handled in options.mk,
# to avoid them being unintentionally found if installed.
-CONFIGURE_ARGS+= --without-nuspell
CONFIGURE_ARGS+= --without-hspell # Hebrew
+CONFIGURE_ARGS+= --without-nuspell
CONFIGURE_ARGS+= --without-voikko # Finnish
# \todo The package previously relied on finding applespell on mac,
Index: pkgsrc/textproc/enchant2/distinfo
diff -u pkgsrc/textproc/enchant2/distinfo:1.44 pkgsrc/textproc/enchant2/distinfo:1.45
--- pkgsrc/textproc/enchant2/distinfo:1.44 Mon Jul 13 11:48:00 2026
+++ pkgsrc/textproc/enchant2/distinfo Mon Sep 7 08:11:23 2026
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.44 2026/07/13 11:48:00 ryoon Exp $
+$NetBSD: distinfo,v 1.45 2026/09/07 08:11:23 adam Exp $
-BLAKE2s (enchant2-2.8.19/enchant-2.8.19.tar.gz) = 56aa5ec9abebc2148263cba166243a2c93943a6fdd6892a15199470f60af77d1
-SHA512 (enchant2-2.8.19/enchant-2.8.19.tar.gz) = 3143e2c01445e03a78aa9e297a5dfa88e888b12e6e8472b50937d9765a31ac2483f711e6cf6ad85d5302f46ea7dda215b316d592a3b88f42522e3aa7ae38ada5
-Size (enchant2-2.8.19/enchant-2.8.19.tar.gz) = 1335294 bytes
+BLAKE2s (enchant-2.8.21.tar.gz) = ac6c689953f1506b7b1e478c37a03674d211370cf91386f0f19ac2dbe65714f8
+SHA512 (enchant-2.8.21.tar.gz) = 8e8bd820ff529f97215d9ca477fa6be8d330669b4378c36260e0460983beb6788d62b1f2b6602816b32aa0e12c012e1b1a2a1bacef9b86db7850a8d129c44f77
+Size (enchant-2.8.21.tar.gz) = 1315249 bytes
SHA1 (patch-config.h.in) = ac10b6900034acb0e961d73b1f9cf1a39bb00775
Index: pkgsrc/textproc/enchant2/options.mk
diff -u pkgsrc/textproc/enchant2/options.mk:1.3 pkgsrc/textproc/enchant2/options.mk:1.4
--- pkgsrc/textproc/enchant2/options.mk:1.3 Sat Jun 22 12:39:59 2024
+++ pkgsrc/textproc/enchant2/options.mk Mon Sep 7 08:11:23 2026
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.3 2024/06/22 12:39:59 gdt Exp $
+# $NetBSD: options.mk,v 1.4 2026/09/07 08:11:23 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.enchant2
PKG_SUPPORTED_OPTIONS= aspell enchant-zemberek hunspell
@@ -28,7 +28,7 @@ PLIST_VARS+= hunspell
.if !empty(PKG_OPTIONS:Mhunspell)
CONFIGURE_ARGS+= --with-hunspell
.include "../../textproc/hunspell/buildlink3.mk"
-DEPENDS+= hunspell-en_US-[0-9]*:../../textproc/hunspell-en_US
+DEPENDS+= hunspell-en_US>=0:../../textproc/hunspell-en_US
PLIST.hunspell= yes
.else
CONFIGURE_ARGS+= --without-hunspell
Home |
Main Index |
Thread Index |
Old Index