Received: by mail.netbsd.org (Postfix, from userid 605) id 03BEC84D60; Fri, 23 Feb 2018 15:02:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6D1AE84D45 for ; Fri, 23 Feb 2018 15:02:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id YpEhNhUfqoM8 for ; Fri, 23 Feb 2018 15:02:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9D37F84D24 for ; Fri, 23 Feb 2018 15:02:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 980DCFB40; Fri, 23 Feb 2018 15:02:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1519398134218090" MIME-Version: 1.0 Date: Fri, 23 Feb 2018 15:02:14 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/libdatrie To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180223150214.980DCFB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1519398134218090 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Feb 23 15:02:14 UTC 2018 Modified Files: pkgsrc/devel/libdatrie: Makefile PLIST distinfo Log Message: libdatrie: updated to 0.2.10 0.2.10: - Correctly check doxygen version on configure. - Optimization on AlphaMap mapping. (contributing to 0.2% less run time for LibThai word breaking) 0.2.9: - Fix binary file opening on Windows - Fix infinite loop on empty trie iteration. - Micro-optimization with LIKELY/UNLIKELY hints. (contributing to 4.76% faster dictionary loading, 1.95% faster word breaking for LibThai) - Improved error handling - 'trietool-0.2' utility is renamed to just 'trietool' - Improved documentation - No timestamp on Doxygen-generated doc To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/libdatrie/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/libdatrie/PLIST cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/libdatrie/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1519398134218090 Content-Disposition: inline Content-Length: 2945 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libdatrie/Makefile diff -u pkgsrc/devel/libdatrie/Makefile:1.16 pkgsrc/devel/libdatrie/Makefile:1.17 --- pkgsrc/devel/libdatrie/Makefile:1.16 Wed Aug 16 20:21:07 2017 +++ pkgsrc/devel/libdatrie/Makefile Fri Feb 23 15:02:14 2018 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2017/08/16 20:21:07 wiz Exp $ -# +# $NetBSD: Makefile,v 1.17 2018/02/23 15:02:14 adam Exp $ -DISTNAME= libdatrie-0.2.8 +DISTNAME= libdatrie-0.2.10 CATEGORIES= devel MASTER_SITES= http://linux.thai.net/pub/thailinux/software/libthai/ MASTER_SITES+= ftp://linux.thai.net/pub/ThaiLinux/software/libthai/ @@ -12,15 +11,13 @@ HOMEPAGE= https://linux.thai.net/~thep/d COMMENT= Implementation of Double-Array Trie LICENSE= gnu-lgpl-v2.1 -GNU_CONFIGURE= yes -USE_LIBTOOL= yes -USE_TOOLS+= pkg-config - -CONFIGURE_ENV+= ICONV_LIBS=${BUILDLINK_LDADD.iconv:Q} - -PKGCONFIG_OVERRIDE+= datrie-0.2.pc.in - +USE_LIBTOOL= yes +USE_TOOLS+= pkg-config +GNU_CONFIGURE= yes CONFIGURE_ARGS+= --disable-doxygen-doc +CONFIGURE_ENV+= ICONV_LIBS=${BUILDLINK_LDADD.iconv:Q} +PKGCONFIG_OVERRIDE+= datrie-0.2.pc.in +TEST_TARGET= check .include "../../converters/libiconv/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/libdatrie/PLIST diff -u pkgsrc/devel/libdatrie/PLIST:1.3 pkgsrc/devel/libdatrie/PLIST:1.4 --- pkgsrc/devel/libdatrie/PLIST:1.3 Sun Jun 14 17:48:51 2009 +++ pkgsrc/devel/libdatrie/PLIST Fri Feb 23 15:02:14 2018 @@ -1,4 +1,5 @@ -@comment $NetBSD: PLIST,v 1.3 2009/06/14 17:48:51 joerg Exp $ +@comment $NetBSD: PLIST,v 1.4 2018/02/23 15:02:14 adam Exp $ +bin/trietool bin/trietool-0.2 include/datrie/alpha-map.h include/datrie/trie.h @@ -7,4 +8,5 @@ include/datrie/typedefs.h lib/libdatrie.la lib/pkgconfig/datrie-0.2.pc man/man1/trietool-0.2.1 +man/man1/trietool.1 share/doc/libdatrie/README.migration Index: pkgsrc/devel/libdatrie/distinfo diff -u pkgsrc/devel/libdatrie/distinfo:1.8 pkgsrc/devel/libdatrie/distinfo:1.9 --- pkgsrc/devel/libdatrie/distinfo:1.8 Tue Nov 3 03:27:39 2015 +++ pkgsrc/devel/libdatrie/distinfo Fri Feb 23 15:02:14 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2015/11/03 03:27:39 agc Exp $ +$NetBSD: distinfo,v 1.9 2018/02/23 15:02:14 adam Exp $ -SHA1 (libdatrie-0.2.8.tar.xz) = cf064f97ef10ee297c15e45463fab87cc6fad0dc -RMD160 (libdatrie-0.2.8.tar.xz) = b03871d76916b139d629d0f12fc484ef57e1aa3f -SHA512 (libdatrie-0.2.8.tar.xz) = 6c561475b73e31e09316891fcdb3bed4501661e4d258ced523b5df54d6fe8014cf0c023caf0ac28b3732d65741973f8661b36235ee6ea71712cb08674d89f821 -Size (libdatrie-0.2.8.tar.xz) = 286428 bytes +SHA1 (libdatrie-0.2.10.tar.xz) = 29162b5a63b75f54bb00f6b60fb8a9fb8502d89b +RMD160 (libdatrie-0.2.10.tar.xz) = 7af9ebbd93a667a8db15a013d9bd75fc93bdd886 +SHA512 (libdatrie-0.2.10.tar.xz) = ee68ded9d6e06c562da462d42e7e56098a82478d7b8547506200c3018b72536c4037a4e518924f779dc77d3ab139d93216bdb29ab4116b9dc9efd1a5d1eb9e31 +Size (libdatrie-0.2.10.tar.xz) = 294380 bytes --_----------=_1519398134218090--