pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/textproc/groonga Update groonga to 4.0.1.
details: https://anonhg.NetBSD.org/pkgsrc/rev/7e1ad27b8a94
branches: trunk
changeset: 632747:7e1ad27b8a94
user: obache <obache%pkgsrc.org@localhost>
date: Sat Apr 05 08:09:35 2014 +0000
description:
Update groonga to 4.0.1.
Release 4.0.1 - 2014/03/29
--------------------------
Improvements
^^^^^^^^^^^^
* [doc] Added a link in return value to detailed header description (:doc:`/reference/command/output_format`).
* Supported to inspect vector and object value in JSON load.
It shows more details about data which is failed to load.
* Added ``adjuster`` option to select command.
adjuster options accepts following syntax: INDEX_COLUMN @ STRING_LITERAL (* FACTOR).
* Supported :ref:`weight-vector-column`. You need to specify 'COLUMN_VECTOR|WITH_WEIGHT' flags
to create weight vector column.
* Added missing MIN/MAX macros on SunOS. [GitHub#154] [Patch by Sebastian Wiedenroth]
* Improved recycling garbage data. It suppress to increse database size.
* [doc] Added documentation about GET parameters for :doc:`/reference/executables/groonga-suggest-httpd`.
* [doc] Added documentation about :doc:`/reference/column`.
* [doc] Added documentation about :doc:`/reference/columns/vector`.
* [column_list] Supported to show weight vector column.
* [column_create] Added error check for creating multi column index without WITH_SECTION.
* [httpd] Enabled stub status module (NginxHttpStubStatusModule) for groonga-httpd. [Suggested by Masahiro Nagano]
Fixes
^^^^^
* Fixed a bug that a division overflow caused a fatal error.
For example, it occurs when you execute 'COLUMN / -1' operation to Int32 or Int64 column. [#2307]
* Fixed a bug that '%' operations performs '/' operations. [#2307]
* [doc] Fixed a wrong documentation about :doc:`reference/commands/column_rename`.
* Fixed the issue that out of bound array element access may occurs. [GitHub#158] [Reported by dcb314]
Thanks
^^^^^^
* nise_nabe
* Sebastian Wiedenroth
* dcb314
diffstat:
textproc/groonga/Makefile | 5 ++---
textproc/groonga/PLIST | 10 +++++++++-
textproc/groonga/distinfo | 8 ++++----
textproc/groonga/options.mk | 4 ++--
textproc/groonga/patches/patch-lib_geo.h | 23 -----------------------
5 files changed, 17 insertions(+), 33 deletions(-)
diffs (118 lines):
diff -r d2055bc7c2bf -r 7e1ad27b8a94 textproc/groonga/Makefile
--- a/textproc/groonga/Makefile Sat Apr 05 03:44:18 2014 +0000
+++ b/textproc/groonga/Makefile Sat Apr 05 08:09:35 2014 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.39 2014/03/15 04:05:18 obache Exp $
+# $NetBSD: Makefile,v 1.40 2014/04/05 08:09:35 obache Exp $
#
-DISTNAME= groonga-4.0.0
-PKGREVISION= 1
+DISTNAME= groonga-4.0.1
CATEGORIES= textproc
MASTER_SITES= http://packages.groonga.org/source/groonga/
diff -r d2055bc7c2bf -r 7e1ad27b8a94 textproc/groonga/PLIST
--- a/textproc/groonga/PLIST Sat Apr 05 03:44:18 2014 +0000
+++ b/textproc/groonga/PLIST Sat Apr 05 08:09:35 2014 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.19 2014/01/29 09:00:15 obache Exp $
+@comment $NetBSD: PLIST,v 1.20 2014/04/05 08:09:35 obache Exp $
bin/groonga
bin/groonga-benchmark
bin/groonga-suggest-create-dataset
@@ -80,6 +80,8 @@
share/doc/groonga/en/html/_sources/reference/api/grn_type.txt
share/doc/groonga/en/html/_sources/reference/api/grn_user_data.txt
share/doc/groonga/en/html/_sources/reference/cast.txt
+share/doc/groonga/en/html/_sources/reference/column.txt
+share/doc/groonga/en/html/_sources/reference/columns/vector.txt
share/doc/groonga/en/html/_sources/reference/command.txt
share/doc/groonga/en/html/_sources/reference/command/command_version.txt
share/doc/groonga/en/html/_sources/reference/command/output_format.txt
@@ -265,6 +267,8 @@
share/doc/groonga/en/html/reference/api/grn_type.html
share/doc/groonga/en/html/reference/api/grn_user_data.html
share/doc/groonga/en/html/reference/cast.html
+share/doc/groonga/en/html/reference/column.html
+share/doc/groonga/en/html/reference/columns/vector.html
share/doc/groonga/en/html/reference/command.html
share/doc/groonga/en/html/reference/command/command_version.html
share/doc/groonga/en/html/reference/command/output_format.html
@@ -427,6 +431,8 @@
share/doc/groonga/ja/html/_sources/reference/api/grn_type.txt
share/doc/groonga/ja/html/_sources/reference/api/grn_user_data.txt
share/doc/groonga/ja/html/_sources/reference/cast.txt
+share/doc/groonga/ja/html/_sources/reference/column.txt
+share/doc/groonga/ja/html/_sources/reference/columns/vector.txt
share/doc/groonga/ja/html/_sources/reference/command.txt
share/doc/groonga/ja/html/_sources/reference/command/command_version.txt
share/doc/groonga/ja/html/_sources/reference/command/output_format.txt
@@ -612,6 +618,8 @@
share/doc/groonga/ja/html/reference/api/grn_type.html
share/doc/groonga/ja/html/reference/api/grn_user_data.html
share/doc/groonga/ja/html/reference/cast.html
+share/doc/groonga/ja/html/reference/column.html
+share/doc/groonga/ja/html/reference/columns/vector.html
share/doc/groonga/ja/html/reference/command.html
share/doc/groonga/ja/html/reference/command/command_version.html
share/doc/groonga/ja/html/reference/command/output_format.html
diff -r d2055bc7c2bf -r 7e1ad27b8a94 textproc/groonga/distinfo
--- a/textproc/groonga/distinfo Sat Apr 05 03:44:18 2014 +0000
+++ b/textproc/groonga/distinfo Sat Apr 05 08:09:35 2014 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.25 2014/02/25 05:12:14 obache Exp $
+$NetBSD: distinfo,v 1.26 2014/04/05 08:09:35 obache Exp $
-SHA1 (groonga-4.0.0.tar.gz) = 9a64d4c98eda4db563bcaf9464504d24dfdb3ff4
-RMD160 (groonga-4.0.0.tar.gz) = 2242bfc5492ae29c693877b66a40e87c3759e827
-Size (groonga-4.0.0.tar.gz) = 9483418 bytes
+SHA1 (groonga-4.0.1.tar.gz) = 96859d352cb6439f8dbe8e5fb55373f796a4a11e
+RMD160 (groonga-4.0.1.tar.gz) = 44faa099c8cddfb87d3ccbfa25c054a839128031
+Size (groonga-4.0.1.tar.gz) = 9576335 bytes
SHA1 (patch-lib_geo.h) = 0a3ae38000542a2bb68b47cf59dbe3d41f462e54
diff -r d2055bc7c2bf -r 7e1ad27b8a94 textproc/groonga/options.mk
--- a/textproc/groonga/options.mk Sat Apr 05 03:44:18 2014 +0000
+++ b/textproc/groonga/options.mk Sat Apr 05 08:09:35 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.9 2014/03/15 04:55:21 obache Exp $
+# $NetBSD: options.mk,v 1.10 2014/04/05 08:09:35 obache Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.groonga
@@ -98,7 +98,7 @@
SUBST_CLASSES+= confpath
SUBST_STAGE.confpath= post-configure
-SUBST_FILES.confpath= vendor/nginx-1.4.4/objs/Makefile
+SUBST_FILES.confpath= vendor/nginx-1.4.7/objs/Makefile
SUBST_SED.confpath= -e 's,\$$(DESTDIR)${PKG_SYSCONFDIR}/httpd,\$$(DESTDIR)${PREFIX}/share/examples/${PKGBASE}/httpd,g'
.else
CONFIGURE_ARGS+= --disable-groonga-httpd
diff -r d2055bc7c2bf -r 7e1ad27b8a94 textproc/groonga/patches/patch-lib_geo.h
--- a/textproc/groonga/patches/patch-lib_geo.h Sat Apr 05 03:44:18 2014 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-$NetBSD: patch-lib_geo.h,v 1.1 2014/02/16 15:39:51 wiedi Exp $
-
-need MIN/MAX on SunOS
---- lib/geo.h.orig 2013-12-20 09:27:33.336349381 +0000
-+++ lib/geo.h
-@@ -24,7 +24,7 @@
- #include "ii.h"
- #include "db.h"
-
--#ifdef WIN32
-+#if defined(WIN32) || defined(__sun)
- # define _USE_MATH_DEFINES
- # ifndef MAX
- # define MAX(a, b) ((a) > (b) ? (a) : (b))
-@@ -33,7 +33,7 @@
- # ifndef MIN
- # define MIN(a, b) ((a) < (b) ? (a) : (b))
- # endif
--#endif /* WIN32 */
-+#endif /* WIN32 or __sun */
- #include <math.h>
-
- #ifdef __cplusplus
Home |
Main Index |
Thread Index |
Old Index