Date: Mon, 26 Aug 2019 19:59:32 +0000 (UTC) From: Thierry Thomas <thierry@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509968 - in head/textproc/aspell: . files Message-ID: <201908261959.x7QJxWUX009757@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: thierry Date: Mon Aug 26 19:59:32 2019 New Revision: 509968 URL: https://svnweb.freebsd.org/changeset/ports/509968 Log: Upgrade to 0.60.8 (pre-release snapshot). Changelog at <http://aspell.net/man-html/ChangeLog.html>. Note: it includes a fix for a potently unbounded buffer over-read in GNU Aspell 0.60.*, but unfortunately, the fix will break applications that use null- terminated UCS-2 or UCS-4 strings with the C API. See details at <https://lists.gnu.org/archive/html/aspell-announce/2019-08/msg00000.html>. Security: Potently unbounded buffer over-read in GNU Aspell 0.60.* Modified: head/textproc/aspell/Makefile head/textproc/aspell/distinfo head/textproc/aspell/files/patch-Makefile.in head/textproc/aspell/pkg-plist Modified: head/textproc/aspell/Makefile ============================================================================== --- head/textproc/aspell/Makefile Mon Aug 26 19:58:13 2019 (r509967) +++ head/textproc/aspell/Makefile Mon Aug 26 19:59:32 2019 (r509968) @@ -2,9 +2,11 @@ # $FreeBSD$ PORTNAME= aspell -PORTVERSION= 0.60.7 +DISTVERSION= 0.60.8-20190817 CATEGORIES= textproc -MASTER_SITES= GNU/aspell +#MASTER_SITES= GNU/aspell +MASTER_SITES= ${MASTER_SITE_GNU_ALPHA} +MASTER_SITE_SUBDIR=aspell MAINTAINER= office@FreeBSD.org COMMENT= Spelling checker with better suggestion logic than ispell @@ -27,7 +29,7 @@ SHEBANG_FILES= scripts/aspell-import CPE_VENDOR= gnu INSTALL_TARGET= install-strip -VERINST= ${PORTVERSION:R} +VERINST= ${PORTVERSION:R:R} SUB_FILES= aspell.ver PLIST_SUB= VER=${VERINST} SUB_LIST= VERINST=${VERINST} Modified: head/textproc/aspell/distinfo ============================================================================== --- head/textproc/aspell/distinfo Mon Aug 26 19:58:13 2019 (r509967) +++ head/textproc/aspell/distinfo Mon Aug 26 19:59:32 2019 (r509968) @@ -1,3 +1,3 @@ -TIMESTAMP = 1564430692 -SHA256 (aspell-0.60.7.tar.gz) = 5ca8fc8cb0370cc6c9eb5b64c6d1bc5d57b3750dbf17887726c3407d833b70e4 -SIZE (aspell-0.60.7.tar.gz) = 2071890 +TIMESTAMP = 1566848068 +SHA256 (aspell-0.60.8-20190817.tar.gz) = 92df8b464f4cb7efb374efd7962c51db2c57798323fa2b86c1a442f7c16c0d5b +SIZE (aspell-0.60.8-20190817.tar.gz) = 27065381 Modified: head/textproc/aspell/files/patch-Makefile.in ============================================================================== --- head/textproc/aspell/files/patch-Makefile.in Mon Aug 26 19:58:13 2019 (r509967) +++ head/textproc/aspell/files/patch-Makefile.in Mon Aug 26 19:59:32 2019 (r509968) @@ -1,6 +1,6 @@ ---- Makefile.in.orig 2019-07-29 06:38:02 UTC +--- Makefile.in.orig 2019-08-18 01:39:59 UTC +++ Makefile.in -@@ -651,7 +651,12 @@ top_build_prefix = @top_build_prefix@ +@@ -666,7 +666,12 @@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AUTOMAKE_OPTIONS = foreign subdir-objects @@ -14,17 +14,17 @@ DIST_SUBDIRS = ${SUBDIRS} examples myspell lib5 filterdir = ${pkglibdir} optdir = ${pkgdatadir} -@@ -739,7 +744,7 @@ libaspell_la_SOURCES = common/cache.cpp common/string. +@@ -766,7 +771,7 @@ libaspell_la_SOURCES = common/cache.cpp common/string. lib/string_list-c.cpp lib/find_speller.cpp lib/speller-c.cpp \ lib/string_pair_enumeration-c.cpp lib/new_checker.cpp \ modules/filter/url.cpp $(am__append_3) -libaspell_la_LIBADD = $(LTLIBINTL) $(PTHREAD_LIB) -+libaspell_la_LIBADD = $(LTLIBINTL) $(PTHREAD_LIB) $(LTLIBINTL) - @INCREMENTED_SONAME_FALSE@libaspell_la_LDFLAGS = -version-info 17:0:2 -no-undefined - @INCREMENTED_SONAME_TRUE@libaspell_la_LDFLAGS = -version-info 18:0:2 -no-undefined ++libaspell_la_LIBADD = $(LTLIBINTL) $(PTHREAD_LIB) $(LTLIBINTL) + @INCREMENTED_SONAME_FALSE@libaspell_la_LDFLAGS = -version-info 18:0:3 -no-undefined + @INCREMENTED_SONAME_TRUE@libaspell_la_LDFLAGS = -version-info 19:0:3 -no-undefined @PSPELL_COMPATIBILITY_TRUE@libpspell_la_SOURCES = lib/dummy.cpp -@@ -748,7 +753,7 @@ libaspell_la_LIBADD = $(LTLIBINTL) $(PTHREAD_LIB) - @INCREMENTED_SONAME_TRUE@@PSPELL_COMPATIBILITY_TRUE@libpspell_la_LDFLAGS = -version-info 18:0:2 -no-undefined +@@ -774,7 +779,7 @@ libaspell_la_LIBADD = $(LTLIBINTL) $(PTHREAD_LIB) + @PSPELL_COMPATIBILITY_TRUE@libpspell_la_LDFLAGS = $(libaspell_la_LDFLAGS) word_list_compress_SOURCES = prog/compress.c aspell_SOURCES = prog/aspell.cpp prog/check_funs.cpp prog/checker_string.cpp -aspell_LDADD = libaspell.la $(CURSES_LIB) Modified: head/textproc/aspell/pkg-plist ============================================================================== --- head/textproc/aspell/pkg-plist Mon Aug 26 19:58:13 2019 (r509967) +++ head/textproc/aspell/pkg-plist Mon Aug 26 19:59:32 2019 (r509968) @@ -70,11 +70,11 @@ lib/aspell-%%VER%%/standard.kbd lib/libaspell.a lib/libaspell.so lib/libaspell.so.15 -lib/libaspell.so.15.2.0 +lib/libaspell.so.15.3.0 lib/libpspell.a lib/libpspell.so lib/libpspell.so.15 -lib/libpspell.so.15.2.0 +lib/libpspell.so.15.3.0 man/man1/aspell-import.1.gz man/man1/aspell.1.gz man/man1/prezip-bin.1.gz @@ -85,6 +85,7 @@ man/man1/word-list-compress.1.gz %%DATADIR%%/comment.amf %%DATADIR%%/email.amf %%DATADIR%%/html.amf +%%DATADIR%%/markdown.amf %%DATADIR%%/none.amf %%DATADIR%%/nroff.amf %%DATADIR%%/perl.amf
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908261959.x7QJxWUX009757>