Tue Nov 4 11:40:20 2014 UTC ()
Update groonga to 4.0.7.

News
====

.. _release-4-0-7:

Release 4.0.7 - 2014/10/29
--------------------------

Improvements
^^^^^^^^^^^^

* [windows] Supported Groonga with mruby on Windows.
* Added token filter plugin API.
* Added :ref:`token-filter-stop-word` token filter plugin.
  It treats records of ``is_stop_word`` column as actual stop words.
* [doc] Added :doc:`/client` section which introduces link to client libraries.
  [GitHub#210] [Patch by Naoya Murakami]
* [doc] Reconstructed documentation. :doc:`/reference/suggest` and
  :doc:`/reference/operations/geolocation_search` are grouped under :doc:`/reference`.
  [GitHub#206] [Patch by Naoya Murakami]
* [dump] Supports to dump TABLE_NO_KEY for token_flters.
  [GitHub#215] [Patch by Naoya Murakami]
* [deb] Added stop word token filter plugin.
  [GitHub#216] [Patch by Hiroshi Hatake]
* [deb] Clarified licenses about used/bundled files in debian/copyright.
* Dropped LZO compression support.
* Added LZ4 compression support. [GitHub#223] [Patch by Naoya Murakami]
* Added :doc:`/reference/function/in_values`. We recommends to use it
  instead of ``==`` and ``OR`` combinations ( ``((COLUMN == "a") OR
  (COLUMN == "b") OR (COLUMN == "c"))`` ) because of better
  performance.
* [load] Supported to update existing record in ``TABLE_NO_KEY`` by
  specifying a record by ``_id``.
* Added :ref:`token-filter-stem` token filter plugin. It provides
  stemming feature.  To use this token filter, you need to install
  `libstemmer <http://http://snowball.tartarus.org/>`_ library.
* [doc] Added :doc:`/reference/token_filters` documentation.
  [GitHub#227] [Patch by Naoya Murakami]

Fixes
^^^^^

* [doc] Fixed link of the Ranguba project. [GitHub#212] [Patch by Naoya Murakami]
* [httpd] Updated bundled nginx version to 1.7.6.
  [GitHub#208] [Patch by Hiroshi Hatake]
* [power8] Fixed build failure. See
  http://lists.askmonty.org/pipermail/commits/2014-October/006752.html
  [Patch by Sergey Vojtovich]
* Fixed a bug that URL encoding fails if ``char`` type is build as
  ``unsigned char`` type. [GitHub#217]
* Fixed a bug that a ``TABLE_DAT_KEY`` table returns empty results for
  :doc:`/reference/commands/select`. [GitHub#220]
* Fixed a memory leak about inspecting vector column. It occurs when
  something error reports about vector column.
* Fixed memory leaks in zlib/LZO compressed column [GitHub#221] [Patch
  by Naoya Murakami]
* Fixed a bug that the value of ``Int8`` column which is less than 100 may
  return true in ``--filter``. By this issue, not intended records may
  be included as search results.
* Fixed to handle binary operation for vector column as an error.
* Fixed a bug that ``!XXX`` may return inverted result on big endian
  environment.
* Fixed a memory leak on converting weight vector to text.

Thanks
^^^^^^

* Naoya Murakami
* Hiroshi Hatake
* Sergey Vojtovich

.. _release-4-0-6:

Release 4.0.6 - 2014/09/29
--------------------------

Improvements
^^^^^^^^^^^^

* [deb] Updated to follow the rule about machine-readable
  debian/copyright file. [Reported by Hideki Yamane]
* [deb][rpm] Changed to use signal instead of HTTP to control nginx.
  This way meets nginx style init script.
* [doc] Updated English documentation about [ :doc:`/reference/executables` ].
  [GitHub#196] [Patch by Masafumi Yokoyama]
* [OS X] Added missing sphinx error message for Homebrew users.
  [GitHub#198] [Patch by cosmo0920]
* [mruby] Query optimizer by mruby became a practical for some range select query.
  For example, mruby optimizer overhead is negligible enough for query such as
  "between(X, 0, 'exclude', 100, 'include')" - "X > 0 && X <= 100".
* [doc] Changed to recommend GitHub for reporting issues.
  Until now, Redmine account must be approved by administrator, so you can not
  report at feel free. [GitHub#202] [Patch by cosmo0920]
* [doc] Translated C API document. [GitHub#203] [Patch by NOKUBI Takatsugu]
* Supported to customize similarity threshold by ``'*S10"..."'`` syntax.
* Added source column validation to
  :doc:`/reference/commands/column_create`.  If source column doesn't
  exist, :doc:`/reference/commands/column_create` returns ``false`` and
  column isn't created.
* [debian] Dropped Debian jessie and sid support.

Fixes
^^^^^

* Fixed a bug that similar search doesn't use IDF (Inverse Document Frequency)
  for choosing target tokens.
  In the previous versions, it used token ID instead of IDF.
  [groonga-dev,02731] [groonga-dev,02754] [Reported by Satoshi Mitani, warp kawada]
* Fixed a crash bug when deleting a record.
  If the table of the record has ``_key`` and ``_key`` is
  indexed from two or more index columns, deleting causes a crash.
* Fixed compiler warning about unused variable 'e'. [GitHub#197] [Patch by cosmo0920]
* [fedora][httpd] Fixed service start failure without log directory.
* [mruby] Fixed build error with ``--disable-mruby``.
  [GitHub#200] [Patch by cosmo0920]
* Fixed build warning about CMP0014 for MariaDB bundled Mroonga package.
  [GitHub#201] [Patch by cosmo0920]
* Fixed a bug that "*" is parsed as prefix search with empty string.
  [groonga-dev,02796] [Reported by Kazuhiko]
* [httpd] Updated bundled nginx version to the latest mainline (1.7.5).
  This update contains vulnerability fix (CVE-2014-3616).

Thanks
^^^^^^

* Hideki Yamane
* Masafumi Yokoyama
* cosmo0920
* NOKUBI Takatsugu
* Satoshi Mitani
* warp kawada
* Kazuhiko


(obache)
diff -r1.45 -r1.46 pkgsrc/textproc/groonga/Makefile
diff -r1.24 -r1.25 pkgsrc/textproc/groonga/PLIST
diff -r1.31 -r1.32 pkgsrc/textproc/groonga/distinfo
diff -r1.12 -r1.13 pkgsrc/textproc/groonga/options.mk

cvs diff -r1.45 -r1.46 pkgsrc/textproc/groonga/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/groonga/Makefile 2014/08/29 10:04:45 1.45
+++ pkgsrc/textproc/groonga/Makefile 2014/11/04 11:40:20 1.46
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.45 2014/08/29 10:04:45 obache Exp $ 1# $NetBSD: Makefile,v 1.46 2014/11/04 11:40:20 obache Exp $
2# 2#
3 3
4DISTNAME= groonga-4.0.5 4DISTNAME= groonga-4.0.7
5CATEGORIES= textproc 5CATEGORIES= textproc
6MASTER_SITES= http://packages.groonga.org/source/groonga/ 6MASTER_SITES= http://packages.groonga.org/source/groonga/
7 7
8MAINTAINER= obache@NetBSD.org 8MAINTAINER= obache@NetBSD.org
9HOMEPAGE= http://groonga.org/ 9HOMEPAGE= http://groonga.org/
10COMMENT= Fulltext search engine and column store 10COMMENT= Fulltext search engine and column store
11LICENSE= gnu-lgpl-v2.1 11LICENSE= gnu-lgpl-v2.1
12 12
13RUBY_VERSION_SUPPORTED= 21 200 193 13RUBY_VERSION_SUPPORTED= 21 200 193
14.include "../../lang/ruby/rubyversion.mk" 14.include "../../lang/ruby/rubyversion.mk"
15DEPENDS+= ${RUBY_BASE}>=${RUBY_VERSION}:${RUBY_SRCDIR} 15DEPENDS+= ${RUBY_BASE}>=${RUBY_VERSION}:${RUBY_SRCDIR}
16 16
17GNU_CONFIGURE= yes 17GNU_CONFIGURE= yes

cvs diff -r1.24 -r1.25 pkgsrc/textproc/groonga/PLIST (expand / switch to unified diff)

--- pkgsrc/textproc/groonga/PLIST 2014/08/29 10:04:45 1.24
+++ pkgsrc/textproc/groonga/PLIST 2014/11/04 11:40:20 1.25
@@ -1,54 +1,56 @@ @@ -1,54 +1,56 @@
1@comment $NetBSD: PLIST,v 1.24 2014/08/29 10:04:45 obache Exp $ 1@comment $NetBSD: PLIST,v 1.25 2014/11/04 11:40:20 obache Exp $
2bin/groonga 2bin/groonga
3bin/groonga-benchmark 3bin/groonga-benchmark
4bin/groonga-suggest-create-dataset 4bin/groonga-suggest-create-dataset
5${PLIST.learner}bin/groonga-suggest-httpd 5${PLIST.learner}bin/groonga-suggest-httpd
6${PLIST.learner}bin/groonga-suggest-learner 6${PLIST.learner}bin/groonga-suggest-learner
7include/groonga/groonga.h 7include/groonga/groonga.h
8include/groonga/groonga/nfkc.h 8include/groonga/groonga/nfkc.h
9include/groonga/groonga/normalizer.h 9include/groonga/groonga/normalizer.h
10include/groonga/groonga/plugin.h 10include/groonga/groonga/plugin.h
 11include/groonga/groonga/token_filter.h
11include/groonga/groonga/tokenizer.h 12include/groonga/groonga/tokenizer.h
12lib/groonga/plugins/query_expanders/tsv.la 13lib/groonga/plugins/query_expanders/tsv.la
13lib/groonga/plugins/suggest/suggest.la 14lib/groonga/plugins/suggest/suggest.la
14lib/groonga/plugins/table/table.la 15lib/groonga/plugins/table/table.la
 16lib/groonga/plugins/token_filters/stop_word.la
15${PLIST.mecab}lib/groonga/plugins/tokenizers/mecab.la 17${PLIST.mecab}lib/groonga/plugins/tokenizers/mecab.la
16lib/libgroonga.la 18lib/libgroonga.la
17lib/pkgconfig/groonga.pc 19lib/pkgconfig/groonga.pc
18man/ja/man1/groonga.1 20man/ja/man1/groonga.1
19man/man1/groonga.1 21man/man1/groonga.1
20${PLIST.httpd}sbin/groonga-httpd 22${PLIST.httpd}sbin/groonga-httpd
21sbin/groonga-httpd-restart 23sbin/groonga-httpd-restart
22share/doc/groonga/en/html/.buildinfo 24share/doc/groonga/en/html/.buildinfo
23share/doc/groonga/en/html/_images/geo-points.png 25share/doc/groonga/en/html/_images/geo-points.png
24share/doc/groonga/en/html/_sources/characteristic.txt 26share/doc/groonga/en/html/_sources/characteristic.txt
 27share/doc/groonga/en/html/_sources/client.txt
25share/doc/groonga/en/html/_sources/community.txt 28share/doc/groonga/en/html/_sources/community.txt
26share/doc/groonga/en/html/_sources/contribution.txt 29share/doc/groonga/en/html/_sources/contribution.txt
27share/doc/groonga/en/html/_sources/contribution/development.txt 30share/doc/groonga/en/html/_sources/contribution/development.txt
28share/doc/groonga/en/html/_sources/contribution/development/com.txt 31share/doc/groonga/en/html/_sources/contribution/development/com.txt
29share/doc/groonga/en/html/_sources/contribution/development/cooperation.txt 32share/doc/groonga/en/html/_sources/contribution/development/cooperation.txt
30share/doc/groonga/en/html/_sources/contribution/development/query.txt 33share/doc/groonga/en/html/_sources/contribution/development/query.txt
31share/doc/groonga/en/html/_sources/contribution/development/release.txt 34share/doc/groonga/en/html/_sources/contribution/development/release.txt
32share/doc/groonga/en/html/_sources/contribution/development/repository.txt 35share/doc/groonga/en/html/_sources/contribution/development/repository.txt
33share/doc/groonga/en/html/_sources/contribution/development/test.txt 36share/doc/groonga/en/html/_sources/contribution/development/test.txt
34share/doc/groonga/en/html/_sources/contribution/documentation.txt 37share/doc/groonga/en/html/_sources/contribution/documentation.txt
35share/doc/groonga/en/html/_sources/contribution/documentation/c-api.txt 38share/doc/groonga/en/html/_sources/contribution/documentation/c-api.txt
36share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt 39share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt
37share/doc/groonga/en/html/_sources/contribution/documentation/introduction.txt 40share/doc/groonga/en/html/_sources/contribution/documentation/introduction.txt
38share/doc/groonga/en/html/_sources/contribution/report.txt 41share/doc/groonga/en/html/_sources/contribution/report.txt
39share/doc/groonga/en/html/_sources/development.txt 42share/doc/groonga/en/html/_sources/development.txt
40share/doc/groonga/en/html/_sources/development/travis-ci.txt 43share/doc/groonga/en/html/_sources/development/travis-ci.txt
41share/doc/groonga/en/html/_sources/geolocation_search.txt 
42share/doc/groonga/en/html/_sources/index.txt 44share/doc/groonga/en/html/_sources/index.txt
43share/doc/groonga/en/html/_sources/install.txt 45share/doc/groonga/en/html/_sources/install.txt
44share/doc/groonga/en/html/_sources/install/centos.txt 46share/doc/groonga/en/html/_sources/install/centos.txt
45share/doc/groonga/en/html/_sources/install/debian.txt 47share/doc/groonga/en/html/_sources/install/debian.txt
46share/doc/groonga/en/html/_sources/install/fedora.txt 48share/doc/groonga/en/html/_sources/install/fedora.txt
47share/doc/groonga/en/html/_sources/install/mac_os_x.txt 49share/doc/groonga/en/html/_sources/install/mac_os_x.txt
48share/doc/groonga/en/html/_sources/install/others.txt 50share/doc/groonga/en/html/_sources/install/others.txt
49share/doc/groonga/en/html/_sources/install/solaris.txt 51share/doc/groonga/en/html/_sources/install/solaris.txt
50share/doc/groonga/en/html/_sources/install/ubuntu.txt 52share/doc/groonga/en/html/_sources/install/ubuntu.txt
51share/doc/groonga/en/html/_sources/install/windows.txt 53share/doc/groonga/en/html/_sources/install/windows.txt
52share/doc/groonga/en/html/_sources/limitations.txt 54share/doc/groonga/en/html/_sources/limitations.txt
53share/doc/groonga/en/html/_sources/news.txt 55share/doc/groonga/en/html/_sources/news.txt
54share/doc/groonga/en/html/_sources/news/0.x.txt 56share/doc/groonga/en/html/_sources/news/0.x.txt
@@ -141,49 +143,50 @@ share/doc/groonga/en/html/_sources/refer @@ -141,49 +143,50 @@ share/doc/groonga/en/html/_sources/refer
141share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt 143share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt
142share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt 144share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt
143share/doc/groonga/en/html/_sources/reference/functions/now.txt 145share/doc/groonga/en/html/_sources/reference/functions/now.txt
144share/doc/groonga/en/html/_sources/reference/functions/query.txt 146share/doc/groonga/en/html/_sources/reference/functions/query.txt
145share/doc/groonga/en/html/_sources/reference/functions/rand.txt 147share/doc/groonga/en/html/_sources/reference/functions/rand.txt
146share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt 148share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt
147share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt 149share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt
148share/doc/groonga/en/html/_sources/reference/grn_expr.txt 150share/doc/groonga/en/html/_sources/reference/grn_expr.txt
149share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt 151share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt
150share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt 152share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt
151share/doc/groonga/en/html/_sources/reference/indexing.txt 153share/doc/groonga/en/html/_sources/reference/indexing.txt
152share/doc/groonga/en/html/_sources/reference/log.txt 154share/doc/groonga/en/html/_sources/reference/log.txt
153share/doc/groonga/en/html/_sources/reference/normalizers.txt 155share/doc/groonga/en/html/_sources/reference/normalizers.txt
 156share/doc/groonga/en/html/_sources/reference/operations.txt
 157share/doc/groonga/en/html/_sources/reference/operations/geolocation_search.txt
154share/doc/groonga/en/html/_sources/reference/output.txt 158share/doc/groonga/en/html/_sources/reference/output.txt
155share/doc/groonga/en/html/_sources/reference/query_expanders.txt 159share/doc/groonga/en/html/_sources/reference/query_expanders.txt
156share/doc/groonga/en/html/_sources/reference/query_expanders/tsv.txt 160share/doc/groonga/en/html/_sources/reference/query_expanders/tsv.txt
 161share/doc/groonga/en/html/_sources/reference/suggest.txt
 162share/doc/groonga/en/html/_sources/reference/suggest/completion.txt
 163share/doc/groonga/en/html/_sources/reference/suggest/correction.txt
 164share/doc/groonga/en/html/_sources/reference/suggest/introduction.txt
 165share/doc/groonga/en/html/_sources/reference/suggest/suggestion.txt
157share/doc/groonga/en/html/_sources/reference/tables.txt 166share/doc/groonga/en/html/_sources/reference/tables.txt
158share/doc/groonga/en/html/_sources/reference/tokenizers.txt 167share/doc/groonga/en/html/_sources/reference/tokenizers.txt
159share/doc/groonga/en/html/_sources/reference/tuning.txt 168share/doc/groonga/en/html/_sources/reference/tuning.txt
160share/doc/groonga/en/html/_sources/reference/types.txt 169share/doc/groonga/en/html/_sources/reference/types.txt
161share/doc/groonga/en/html/_sources/server.txt 170share/doc/groonga/en/html/_sources/server.txt
162share/doc/groonga/en/html/_sources/server/gqtp.txt 171share/doc/groonga/en/html/_sources/server/gqtp.txt
163share/doc/groonga/en/html/_sources/server/http.txt 172share/doc/groonga/en/html/_sources/server/http.txt
164share/doc/groonga/en/html/_sources/server/http/comparison.txt 173share/doc/groonga/en/html/_sources/server/http/comparison.txt
165share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt 174share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt
166share/doc/groonga/en/html/_sources/server/http/groonga.txt 175share/doc/groonga/en/html/_sources/server/http/groonga.txt
167share/doc/groonga/en/html/_sources/server/package.txt 176share/doc/groonga/en/html/_sources/server/package.txt
168share/doc/groonga/en/html/_sources/spec.txt 177share/doc/groonga/en/html/_sources/spec.txt
169share/doc/groonga/en/html/_sources/spec/gqtp.txt 178share/doc/groonga/en/html/_sources/spec/gqtp.txt
170share/doc/groonga/en/html/_sources/spec/search.txt 179share/doc/groonga/en/html/_sources/spec/search.txt
171share/doc/groonga/en/html/_sources/suggest.txt 
172share/doc/groonga/en/html/_sources/suggest/completion.txt 
173share/doc/groonga/en/html/_sources/suggest/correction.txt 
174share/doc/groonga/en/html/_sources/suggest/introduction.txt 
175share/doc/groonga/en/html/_sources/suggest/suggestion.txt 
176share/doc/groonga/en/html/_sources/suggest/tutorial.txt 
177share/doc/groonga/en/html/_sources/troubleshooting.txt 180share/doc/groonga/en/html/_sources/troubleshooting.txt
178share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt 181share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt
179share/doc/groonga/en/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt 182share/doc/groonga/en/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt
180share/doc/groonga/en/html/_sources/tutorial.txt 183share/doc/groonga/en/html/_sources/tutorial.txt
181share/doc/groonga/en/html/_sources/tutorial/data.txt 184share/doc/groonga/en/html/_sources/tutorial/data.txt
182share/doc/groonga/en/html/_sources/tutorial/drilldown.txt 185share/doc/groonga/en/html/_sources/tutorial/drilldown.txt
183share/doc/groonga/en/html/_sources/tutorial/index.txt 186share/doc/groonga/en/html/_sources/tutorial/index.txt
184share/doc/groonga/en/html/_sources/tutorial/introduction.txt 187share/doc/groonga/en/html/_sources/tutorial/introduction.txt
185share/doc/groonga/en/html/_sources/tutorial/lexicon.txt 188share/doc/groonga/en/html/_sources/tutorial/lexicon.txt
186share/doc/groonga/en/html/_sources/tutorial/match_columns.txt 189share/doc/groonga/en/html/_sources/tutorial/match_columns.txt
187share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt 190share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt
188share/doc/groonga/en/html/_sources/tutorial/network.txt 191share/doc/groonga/en/html/_sources/tutorial/network.txt
189share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt 192share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt
@@ -205,44 +208,44 @@ share/doc/groonga/en/html/_static/jp.png @@ -205,44 +208,44 @@ share/doc/groonga/en/html/_static/jp.png
205share/doc/groonga/en/html/_static/jquery.js 208share/doc/groonga/en/html/_static/jquery.js
206share/doc/groonga/en/html/_static/logo.png 209share/doc/groonga/en/html/_static/logo.png
207share/doc/groonga/en/html/_static/minus.png 210share/doc/groonga/en/html/_static/minus.png
208share/doc/groonga/en/html/_static/navigation-bar.png 211share/doc/groonga/en/html/_static/navigation-bar.png
209share/doc/groonga/en/html/_static/plus.png 212share/doc/groonga/en/html/_static/plus.png
210share/doc/groonga/en/html/_static/pygments.css 213share/doc/groonga/en/html/_static/pygments.css
211share/doc/groonga/en/html/_static/searchtools.js 214share/doc/groonga/en/html/_static/searchtools.js
212share/doc/groonga/en/html/_static/underscore.js 215share/doc/groonga/en/html/_static/underscore.js
213share/doc/groonga/en/html/_static/up-pressed.png 216share/doc/groonga/en/html/_static/up-pressed.png
214share/doc/groonga/en/html/_static/up.png 217share/doc/groonga/en/html/_static/up.png
215share/doc/groonga/en/html/_static/us.png 218share/doc/groonga/en/html/_static/us.png
216share/doc/groonga/en/html/_static/websupport.js 219share/doc/groonga/en/html/_static/websupport.js
217share/doc/groonga/en/html/characteristic.html 220share/doc/groonga/en/html/characteristic.html
 221share/doc/groonga/en/html/client.html
218share/doc/groonga/en/html/community.html 222share/doc/groonga/en/html/community.html
219share/doc/groonga/en/html/contribution.html 223share/doc/groonga/en/html/contribution.html
220share/doc/groonga/en/html/contribution/development.html 224share/doc/groonga/en/html/contribution/development.html
221share/doc/groonga/en/html/contribution/development/com.html 225share/doc/groonga/en/html/contribution/development/com.html
222share/doc/groonga/en/html/contribution/development/cooperation.html 226share/doc/groonga/en/html/contribution/development/cooperation.html
223share/doc/groonga/en/html/contribution/development/query.html 227share/doc/groonga/en/html/contribution/development/query.html
224share/doc/groonga/en/html/contribution/development/release.html 228share/doc/groonga/en/html/contribution/development/release.html
225share/doc/groonga/en/html/contribution/development/repository.html 229share/doc/groonga/en/html/contribution/development/repository.html
226share/doc/groonga/en/html/contribution/development/test.html 230share/doc/groonga/en/html/contribution/development/test.html
227share/doc/groonga/en/html/contribution/documentation.html 231share/doc/groonga/en/html/contribution/documentation.html
228share/doc/groonga/en/html/contribution/documentation/c-api.html 232share/doc/groonga/en/html/contribution/documentation/c-api.html
229share/doc/groonga/en/html/contribution/documentation/i18n.html 233share/doc/groonga/en/html/contribution/documentation/i18n.html
230share/doc/groonga/en/html/contribution/documentation/introduction.html 234share/doc/groonga/en/html/contribution/documentation/introduction.html
231share/doc/groonga/en/html/contribution/report.html 235share/doc/groonga/en/html/contribution/report.html
232share/doc/groonga/en/html/development.html 236share/doc/groonga/en/html/development.html
233share/doc/groonga/en/html/development/travis-ci.html 237share/doc/groonga/en/html/development/travis-ci.html
234share/doc/groonga/en/html/genindex.html 238share/doc/groonga/en/html/genindex.html
235share/doc/groonga/en/html/geolocation_search.html 
236share/doc/groonga/en/html/index.html 239share/doc/groonga/en/html/index.html
237share/doc/groonga/en/html/install.html 240share/doc/groonga/en/html/install.html
238share/doc/groonga/en/html/install/centos.html 241share/doc/groonga/en/html/install/centos.html
239share/doc/groonga/en/html/install/debian.html 242share/doc/groonga/en/html/install/debian.html
240share/doc/groonga/en/html/install/fedora.html 243share/doc/groonga/en/html/install/fedora.html
241share/doc/groonga/en/html/install/mac_os_x.html 244share/doc/groonga/en/html/install/mac_os_x.html
242share/doc/groonga/en/html/install/others.html 245share/doc/groonga/en/html/install/others.html
243share/doc/groonga/en/html/install/solaris.html 246share/doc/groonga/en/html/install/solaris.html
244share/doc/groonga/en/html/install/ubuntu.html 247share/doc/groonga/en/html/install/ubuntu.html
245share/doc/groonga/en/html/install/windows.html 248share/doc/groonga/en/html/install/windows.html
246share/doc/groonga/en/html/limitations.html 249share/doc/groonga/en/html/limitations.html
247share/doc/groonga/en/html/news.html 250share/doc/groonga/en/html/news.html
248share/doc/groonga/en/html/news/0.x.html 251share/doc/groonga/en/html/news/0.x.html
@@ -336,86 +339,87 @@ share/doc/groonga/en/html/reference/func @@ -336,86 +339,87 @@ share/doc/groonga/en/html/reference/func
336share/doc/groonga/en/html/reference/functions/highlight_html.html 339share/doc/groonga/en/html/reference/functions/highlight_html.html
337share/doc/groonga/en/html/reference/functions/html_untag.html 340share/doc/groonga/en/html/reference/functions/html_untag.html
338share/doc/groonga/en/html/reference/functions/now.html 341share/doc/groonga/en/html/reference/functions/now.html
339share/doc/groonga/en/html/reference/functions/query.html 342share/doc/groonga/en/html/reference/functions/query.html
340share/doc/groonga/en/html/reference/functions/rand.html 343share/doc/groonga/en/html/reference/functions/rand.html
341share/doc/groonga/en/html/reference/functions/snippet_html.html 344share/doc/groonga/en/html/reference/functions/snippet_html.html
342share/doc/groonga/en/html/reference/functions/sub_filter.html 345share/doc/groonga/en/html/reference/functions/sub_filter.html
343share/doc/groonga/en/html/reference/grn_expr.html 346share/doc/groonga/en/html/reference/grn_expr.html
344share/doc/groonga/en/html/reference/grn_expr/query_syntax.html 347share/doc/groonga/en/html/reference/grn_expr/query_syntax.html
345share/doc/groonga/en/html/reference/grn_expr/script_syntax.html 348share/doc/groonga/en/html/reference/grn_expr/script_syntax.html
346share/doc/groonga/en/html/reference/indexing.html 349share/doc/groonga/en/html/reference/indexing.html
347share/doc/groonga/en/html/reference/log.html 350share/doc/groonga/en/html/reference/log.html
348share/doc/groonga/en/html/reference/normalizers.html 351share/doc/groonga/en/html/reference/normalizers.html
 352share/doc/groonga/en/html/reference/operations.html
 353share/doc/groonga/en/html/reference/operations/geolocation_search.html
349share/doc/groonga/en/html/reference/output.html 354share/doc/groonga/en/html/reference/output.html
350share/doc/groonga/en/html/reference/query_expanders.html 355share/doc/groonga/en/html/reference/query_expanders.html
351share/doc/groonga/en/html/reference/query_expanders/tsv.html 356share/doc/groonga/en/html/reference/query_expanders/tsv.html
 357share/doc/groonga/en/html/reference/suggest.html
 358share/doc/groonga/en/html/reference/suggest/completion.html
 359share/doc/groonga/en/html/reference/suggest/correction.html
 360share/doc/groonga/en/html/reference/suggest/introduction.html
 361share/doc/groonga/en/html/reference/suggest/suggestion.html
352share/doc/groonga/en/html/reference/tables.html 362share/doc/groonga/en/html/reference/tables.html
353share/doc/groonga/en/html/reference/tokenizers.html 363share/doc/groonga/en/html/reference/tokenizers.html
354share/doc/groonga/en/html/reference/tuning.html 364share/doc/groonga/en/html/reference/tuning.html
355share/doc/groonga/en/html/reference/types.html 365share/doc/groonga/en/html/reference/types.html
356share/doc/groonga/en/html/search.html 366share/doc/groonga/en/html/search.html
357share/doc/groonga/en/html/searchindex.js 367share/doc/groonga/en/html/searchindex.js
358share/doc/groonga/en/html/server.html 368share/doc/groonga/en/html/server.html
359share/doc/groonga/en/html/server/gqtp.html 369share/doc/groonga/en/html/server/gqtp.html
360share/doc/groonga/en/html/server/http.html 370share/doc/groonga/en/html/server/http.html
361share/doc/groonga/en/html/server/http/comparison.html 371share/doc/groonga/en/html/server/http/comparison.html
362share/doc/groonga/en/html/server/http/groonga-httpd.html 372share/doc/groonga/en/html/server/http/groonga-httpd.html
363share/doc/groonga/en/html/server/http/groonga.html 373share/doc/groonga/en/html/server/http/groonga.html
364share/doc/groonga/en/html/server/package.html 374share/doc/groonga/en/html/server/package.html
365share/doc/groonga/en/html/spec.html 375share/doc/groonga/en/html/spec.html
366share/doc/groonga/en/html/spec/gqtp.html 376share/doc/groonga/en/html/spec/gqtp.html
367share/doc/groonga/en/html/spec/search.html 377share/doc/groonga/en/html/spec/search.html
368share/doc/groonga/en/html/suggest.html 
369share/doc/groonga/en/html/suggest/completion.html 
370share/doc/groonga/en/html/suggest/correction.html 
371share/doc/groonga/en/html/suggest/introduction.html 
372share/doc/groonga/en/html/suggest/suggestion.html 
373share/doc/groonga/en/html/suggest/tutorial.html 
374share/doc/groonga/en/html/troubleshooting.html 378share/doc/groonga/en/html/troubleshooting.html
375share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html 379share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html
376share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html 380share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html
377share/doc/groonga/en/html/tutorial.html 381share/doc/groonga/en/html/tutorial.html
378share/doc/groonga/en/html/tutorial/data.html 382share/doc/groonga/en/html/tutorial/data.html
379share/doc/groonga/en/html/tutorial/drilldown.html 383share/doc/groonga/en/html/tutorial/drilldown.html
380share/doc/groonga/en/html/tutorial/index.html 384share/doc/groonga/en/html/tutorial/index.html
381share/doc/groonga/en/html/tutorial/introduction.html 385share/doc/groonga/en/html/tutorial/introduction.html
382share/doc/groonga/en/html/tutorial/lexicon.html 386share/doc/groonga/en/html/tutorial/lexicon.html
383share/doc/groonga/en/html/tutorial/match_columns.html 387share/doc/groonga/en/html/tutorial/match_columns.html
384share/doc/groonga/en/html/tutorial/micro_blog.html 388share/doc/groonga/en/html/tutorial/micro_blog.html
385share/doc/groonga/en/html/tutorial/network.html 389share/doc/groonga/en/html/tutorial/network.html
386share/doc/groonga/en/html/tutorial/patricia_trie.html 390share/doc/groonga/en/html/tutorial/patricia_trie.html
387share/doc/groonga/en/html/tutorial/query_expansion.html 391share/doc/groonga/en/html/tutorial/query_expansion.html
388share/doc/groonga/en/html/tutorial/search.html 392share/doc/groonga/en/html/tutorial/search.html
389share/doc/groonga/ja/html/.buildinfo 393share/doc/groonga/ja/html/.buildinfo
390share/doc/groonga/ja/html/_images/geo-points.png 394share/doc/groonga/ja/html/_images/geo-points.png
391share/doc/groonga/ja/html/_sources/characteristic.txt 395share/doc/groonga/ja/html/_sources/characteristic.txt
 396share/doc/groonga/ja/html/_sources/client.txt
392share/doc/groonga/ja/html/_sources/community.txt 397share/doc/groonga/ja/html/_sources/community.txt
393share/doc/groonga/ja/html/_sources/contribution.txt 398share/doc/groonga/ja/html/_sources/contribution.txt
394share/doc/groonga/ja/html/_sources/contribution/development.txt 399share/doc/groonga/ja/html/_sources/contribution/development.txt
395share/doc/groonga/ja/html/_sources/contribution/development/com.txt 400share/doc/groonga/ja/html/_sources/contribution/development/com.txt
396share/doc/groonga/ja/html/_sources/contribution/development/cooperation.txt 401share/doc/groonga/ja/html/_sources/contribution/development/cooperation.txt
397share/doc/groonga/ja/html/_sources/contribution/development/query.txt 402share/doc/groonga/ja/html/_sources/contribution/development/query.txt
398share/doc/groonga/ja/html/_sources/contribution/development/release.txt 403share/doc/groonga/ja/html/_sources/contribution/development/release.txt
399share/doc/groonga/ja/html/_sources/contribution/development/repository.txt 404share/doc/groonga/ja/html/_sources/contribution/development/repository.txt
400share/doc/groonga/ja/html/_sources/contribution/development/test.txt 405share/doc/groonga/ja/html/_sources/contribution/development/test.txt
401share/doc/groonga/ja/html/_sources/contribution/documentation.txt 406share/doc/groonga/ja/html/_sources/contribution/documentation.txt
402share/doc/groonga/ja/html/_sources/contribution/documentation/c-api.txt 407share/doc/groonga/ja/html/_sources/contribution/documentation/c-api.txt
403share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt 408share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt
404share/doc/groonga/ja/html/_sources/contribution/documentation/introduction.txt 409share/doc/groonga/ja/html/_sources/contribution/documentation/introduction.txt
405share/doc/groonga/ja/html/_sources/contribution/report.txt 410share/doc/groonga/ja/html/_sources/contribution/report.txt
406share/doc/groonga/ja/html/_sources/development.txt 411share/doc/groonga/ja/html/_sources/development.txt
407share/doc/groonga/ja/html/_sources/development/travis-ci.txt 412share/doc/groonga/ja/html/_sources/development/travis-ci.txt
408share/doc/groonga/ja/html/_sources/geolocation_search.txt 
409share/doc/groonga/ja/html/_sources/index.txt 413share/doc/groonga/ja/html/_sources/index.txt
410share/doc/groonga/ja/html/_sources/install.txt 414share/doc/groonga/ja/html/_sources/install.txt
411share/doc/groonga/ja/html/_sources/install/centos.txt 415share/doc/groonga/ja/html/_sources/install/centos.txt
412share/doc/groonga/ja/html/_sources/install/debian.txt 416share/doc/groonga/ja/html/_sources/install/debian.txt
413share/doc/groonga/ja/html/_sources/install/fedora.txt 417share/doc/groonga/ja/html/_sources/install/fedora.txt
414share/doc/groonga/ja/html/_sources/install/mac_os_x.txt 418share/doc/groonga/ja/html/_sources/install/mac_os_x.txt
415share/doc/groonga/ja/html/_sources/install/others.txt 419share/doc/groonga/ja/html/_sources/install/others.txt
416share/doc/groonga/ja/html/_sources/install/solaris.txt 420share/doc/groonga/ja/html/_sources/install/solaris.txt
417share/doc/groonga/ja/html/_sources/install/ubuntu.txt 421share/doc/groonga/ja/html/_sources/install/ubuntu.txt
418share/doc/groonga/ja/html/_sources/install/windows.txt 422share/doc/groonga/ja/html/_sources/install/windows.txt
419share/doc/groonga/ja/html/_sources/limitations.txt 423share/doc/groonga/ja/html/_sources/limitations.txt
420share/doc/groonga/ja/html/_sources/news.txt 424share/doc/groonga/ja/html/_sources/news.txt
421share/doc/groonga/ja/html/_sources/news/0.x.txt 425share/doc/groonga/ja/html/_sources/news/0.x.txt
@@ -508,49 +512,50 @@ share/doc/groonga/ja/html/_sources/refer @@ -508,49 +512,50 @@ share/doc/groonga/ja/html/_sources/refer
508share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt 512share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt
509share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt 513share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt
510share/doc/groonga/ja/html/_sources/reference/functions/now.txt 514share/doc/groonga/ja/html/_sources/reference/functions/now.txt
511share/doc/groonga/ja/html/_sources/reference/functions/query.txt 515share/doc/groonga/ja/html/_sources/reference/functions/query.txt
512share/doc/groonga/ja/html/_sources/reference/functions/rand.txt 516share/doc/groonga/ja/html/_sources/reference/functions/rand.txt
513share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt 517share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt
514share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt 518share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt
515share/doc/groonga/ja/html/_sources/reference/grn_expr.txt 519share/doc/groonga/ja/html/_sources/reference/grn_expr.txt
516share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt 520share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt
517share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt 521share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt
518share/doc/groonga/ja/html/_sources/reference/indexing.txt 522share/doc/groonga/ja/html/_sources/reference/indexing.txt
519share/doc/groonga/ja/html/_sources/reference/log.txt 523share/doc/groonga/ja/html/_sources/reference/log.txt
520share/doc/groonga/ja/html/_sources/reference/normalizers.txt 524share/doc/groonga/ja/html/_sources/reference/normalizers.txt
 525share/doc/groonga/ja/html/_sources/reference/operations.txt
 526share/doc/groonga/ja/html/_sources/reference/operations/geolocation_search.txt
521share/doc/groonga/ja/html/_sources/reference/output.txt 527share/doc/groonga/ja/html/_sources/reference/output.txt
522share/doc/groonga/ja/html/_sources/reference/query_expanders.txt 528share/doc/groonga/ja/html/_sources/reference/query_expanders.txt
523share/doc/groonga/ja/html/_sources/reference/query_expanders/tsv.txt 529share/doc/groonga/ja/html/_sources/reference/query_expanders/tsv.txt
 530share/doc/groonga/ja/html/_sources/reference/suggest.txt
 531share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt
 532share/doc/groonga/ja/html/_sources/reference/suggest/correction.txt
 533share/doc/groonga/ja/html/_sources/reference/suggest/introduction.txt
 534share/doc/groonga/ja/html/_sources/reference/suggest/suggestion.txt
524share/doc/groonga/ja/html/_sources/reference/tables.txt 535share/doc/groonga/ja/html/_sources/reference/tables.txt
525share/doc/groonga/ja/html/_sources/reference/tokenizers.txt 536share/doc/groonga/ja/html/_sources/reference/tokenizers.txt
526share/doc/groonga/ja/html/_sources/reference/tuning.txt 537share/doc/groonga/ja/html/_sources/reference/tuning.txt
527share/doc/groonga/ja/html/_sources/reference/types.txt 538share/doc/groonga/ja/html/_sources/reference/types.txt
528share/doc/groonga/ja/html/_sources/server.txt 539share/doc/groonga/ja/html/_sources/server.txt
529share/doc/groonga/ja/html/_sources/server/gqtp.txt 540share/doc/groonga/ja/html/_sources/server/gqtp.txt
530share/doc/groonga/ja/html/_sources/server/http.txt 541share/doc/groonga/ja/html/_sources/server/http.txt
531share/doc/groonga/ja/html/_sources/server/http/comparison.txt 542share/doc/groonga/ja/html/_sources/server/http/comparison.txt
532share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt 543share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt
533share/doc/groonga/ja/html/_sources/server/http/groonga.txt 544share/doc/groonga/ja/html/_sources/server/http/groonga.txt
534share/doc/groonga/ja/html/_sources/server/package.txt 545share/doc/groonga/ja/html/_sources/server/package.txt
535share/doc/groonga/ja/html/_sources/spec.txt 546share/doc/groonga/ja/html/_sources/spec.txt
536share/doc/groonga/ja/html/_sources/spec/gqtp.txt 547share/doc/groonga/ja/html/_sources/spec/gqtp.txt
537share/doc/groonga/ja/html/_sources/spec/search.txt 548share/doc/groonga/ja/html/_sources/spec/search.txt
538share/doc/groonga/ja/html/_sources/suggest.txt 
539share/doc/groonga/ja/html/_sources/suggest/completion.txt 
540share/doc/groonga/ja/html/_sources/suggest/correction.txt 
541share/doc/groonga/ja/html/_sources/suggest/introduction.txt 
542share/doc/groonga/ja/html/_sources/suggest/suggestion.txt 
543share/doc/groonga/ja/html/_sources/suggest/tutorial.txt 
544share/doc/groonga/ja/html/_sources/troubleshooting.txt 549share/doc/groonga/ja/html/_sources/troubleshooting.txt
545share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt 550share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt
546share/doc/groonga/ja/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt 551share/doc/groonga/ja/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt
547share/doc/groonga/ja/html/_sources/tutorial.txt 552share/doc/groonga/ja/html/_sources/tutorial.txt
548share/doc/groonga/ja/html/_sources/tutorial/data.txt 553share/doc/groonga/ja/html/_sources/tutorial/data.txt
549share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt 554share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt
550share/doc/groonga/ja/html/_sources/tutorial/index.txt 555share/doc/groonga/ja/html/_sources/tutorial/index.txt
551share/doc/groonga/ja/html/_sources/tutorial/introduction.txt 556share/doc/groonga/ja/html/_sources/tutorial/introduction.txt
552share/doc/groonga/ja/html/_sources/tutorial/lexicon.txt 557share/doc/groonga/ja/html/_sources/tutorial/lexicon.txt
553share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt 558share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt
554share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt 559share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt
555share/doc/groonga/ja/html/_sources/tutorial/network.txt 560share/doc/groonga/ja/html/_sources/tutorial/network.txt
556share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt 561share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt
@@ -572,44 +577,44 @@ share/doc/groonga/ja/html/_static/jp.png @@ -572,44 +577,44 @@ share/doc/groonga/ja/html/_static/jp.png
572share/doc/groonga/ja/html/_static/jquery.js 577share/doc/groonga/ja/html/_static/jquery.js
573share/doc/groonga/ja/html/_static/logo.png 578share/doc/groonga/ja/html/_static/logo.png
574share/doc/groonga/ja/html/_static/minus.png 579share/doc/groonga/ja/html/_static/minus.png
575share/doc/groonga/ja/html/_static/navigation-bar.png 580share/doc/groonga/ja/html/_static/navigation-bar.png
576share/doc/groonga/ja/html/_static/plus.png 581share/doc/groonga/ja/html/_static/plus.png
577share/doc/groonga/ja/html/_static/pygments.css 582share/doc/groonga/ja/html/_static/pygments.css
578share/doc/groonga/ja/html/_static/searchtools.js 583share/doc/groonga/ja/html/_static/searchtools.js
579share/doc/groonga/ja/html/_static/underscore.js 584share/doc/groonga/ja/html/_static/underscore.js
580share/doc/groonga/ja/html/_static/up-pressed.png 585share/doc/groonga/ja/html/_static/up-pressed.png
581share/doc/groonga/ja/html/_static/up.png 586share/doc/groonga/ja/html/_static/up.png
582share/doc/groonga/ja/html/_static/us.png 587share/doc/groonga/ja/html/_static/us.png
583share/doc/groonga/ja/html/_static/websupport.js 588share/doc/groonga/ja/html/_static/websupport.js
584share/doc/groonga/ja/html/characteristic.html 589share/doc/groonga/ja/html/characteristic.html
 590share/doc/groonga/ja/html/client.html
585share/doc/groonga/ja/html/community.html 591share/doc/groonga/ja/html/community.html
586share/doc/groonga/ja/html/contribution.html 592share/doc/groonga/ja/html/contribution.html
587share/doc/groonga/ja/html/contribution/development.html 593share/doc/groonga/ja/html/contribution/development.html
588share/doc/groonga/ja/html/contribution/development/com.html 594share/doc/groonga/ja/html/contribution/development/com.html
589share/doc/groonga/ja/html/contribution/development/cooperation.html 595share/doc/groonga/ja/html/contribution/development/cooperation.html
590share/doc/groonga/ja/html/contribution/development/query.html 596share/doc/groonga/ja/html/contribution/development/query.html
591share/doc/groonga/ja/html/contribution/development/release.html 597share/doc/groonga/ja/html/contribution/development/release.html
592share/doc/groonga/ja/html/contribution/development/repository.html 598share/doc/groonga/ja/html/contribution/development/repository.html
593share/doc/groonga/ja/html/contribution/development/test.html 599share/doc/groonga/ja/html/contribution/development/test.html
594share/doc/groonga/ja/html/contribution/documentation.html 600share/doc/groonga/ja/html/contribution/documentation.html
595share/doc/groonga/ja/html/contribution/documentation/c-api.html 601share/doc/groonga/ja/html/contribution/documentation/c-api.html
596share/doc/groonga/ja/html/contribution/documentation/i18n.html 602share/doc/groonga/ja/html/contribution/documentation/i18n.html
597share/doc/groonga/ja/html/contribution/documentation/introduction.html 603share/doc/groonga/ja/html/contribution/documentation/introduction.html
598share/doc/groonga/ja/html/contribution/report.html 604share/doc/groonga/ja/html/contribution/report.html
599share/doc/groonga/ja/html/development.html 605share/doc/groonga/ja/html/development.html
600share/doc/groonga/ja/html/development/travis-ci.html 606share/doc/groonga/ja/html/development/travis-ci.html
601share/doc/groonga/ja/html/genindex.html 607share/doc/groonga/ja/html/genindex.html
602share/doc/groonga/ja/html/geolocation_search.html 
603share/doc/groonga/ja/html/index.html 608share/doc/groonga/ja/html/index.html
604share/doc/groonga/ja/html/install.html 609share/doc/groonga/ja/html/install.html
605share/doc/groonga/ja/html/install/centos.html 610share/doc/groonga/ja/html/install/centos.html
606share/doc/groonga/ja/html/install/debian.html 611share/doc/groonga/ja/html/install/debian.html
607share/doc/groonga/ja/html/install/fedora.html 612share/doc/groonga/ja/html/install/fedora.html
608share/doc/groonga/ja/html/install/mac_os_x.html 613share/doc/groonga/ja/html/install/mac_os_x.html
609share/doc/groonga/ja/html/install/others.html 614share/doc/groonga/ja/html/install/others.html
610share/doc/groonga/ja/html/install/solaris.html 615share/doc/groonga/ja/html/install/solaris.html
611share/doc/groonga/ja/html/install/ubuntu.html 616share/doc/groonga/ja/html/install/ubuntu.html
612share/doc/groonga/ja/html/install/windows.html 617share/doc/groonga/ja/html/install/windows.html
613share/doc/groonga/ja/html/limitations.html 618share/doc/groonga/ja/html/limitations.html
614share/doc/groonga/ja/html/news.html 619share/doc/groonga/ja/html/news.html
615share/doc/groonga/ja/html/news/0.x.html 620share/doc/groonga/ja/html/news/0.x.html
@@ -703,51 +708,52 @@ share/doc/groonga/ja/html/reference/func @@ -703,51 +708,52 @@ share/doc/groonga/ja/html/reference/func
703share/doc/groonga/ja/html/reference/functions/highlight_html.html 708share/doc/groonga/ja/html/reference/functions/highlight_html.html
704share/doc/groonga/ja/html/reference/functions/html_untag.html 709share/doc/groonga/ja/html/reference/functions/html_untag.html
705share/doc/groonga/ja/html/reference/functions/now.html 710share/doc/groonga/ja/html/reference/functions/now.html
706share/doc/groonga/ja/html/reference/functions/query.html 711share/doc/groonga/ja/html/reference/functions/query.html
707share/doc/groonga/ja/html/reference/functions/rand.html 712share/doc/groonga/ja/html/reference/functions/rand.html
708share/doc/groonga/ja/html/reference/functions/snippet_html.html 713share/doc/groonga/ja/html/reference/functions/snippet_html.html
709share/doc/groonga/ja/html/reference/functions/sub_filter.html 714share/doc/groonga/ja/html/reference/functions/sub_filter.html
710share/doc/groonga/ja/html/reference/grn_expr.html 715share/doc/groonga/ja/html/reference/grn_expr.html
711share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html 716share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html
712share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html 717share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html
713share/doc/groonga/ja/html/reference/indexing.html 718share/doc/groonga/ja/html/reference/indexing.html
714share/doc/groonga/ja/html/reference/log.html 719share/doc/groonga/ja/html/reference/log.html
715share/doc/groonga/ja/html/reference/normalizers.html 720share/doc/groonga/ja/html/reference/normalizers.html
 721share/doc/groonga/ja/html/reference/operations.html
 722share/doc/groonga/ja/html/reference/operations/geolocation_search.html
716share/doc/groonga/ja/html/reference/output.html 723share/doc/groonga/ja/html/reference/output.html
717share/doc/groonga/ja/html/reference/query_expanders.html 724share/doc/groonga/ja/html/reference/query_expanders.html
718share/doc/groonga/ja/html/reference/query_expanders/tsv.html 725share/doc/groonga/ja/html/reference/query_expanders/tsv.html
 726share/doc/groonga/ja/html/reference/suggest.html
 727share/doc/groonga/ja/html/reference/suggest/completion.html
 728share/doc/groonga/ja/html/reference/suggest/correction.html
 729share/doc/groonga/ja/html/reference/suggest/introduction.html
 730share/doc/groonga/ja/html/reference/suggest/suggestion.html
719share/doc/groonga/ja/html/reference/tables.html 731share/doc/groonga/ja/html/reference/tables.html
720share/doc/groonga/ja/html/reference/tokenizers.html 732share/doc/groonga/ja/html/reference/tokenizers.html
721share/doc/groonga/ja/html/reference/tuning.html 733share/doc/groonga/ja/html/reference/tuning.html
722share/doc/groonga/ja/html/reference/types.html 734share/doc/groonga/ja/html/reference/types.html
723share/doc/groonga/ja/html/search.html 735share/doc/groonga/ja/html/search.html
724share/doc/groonga/ja/html/searchindex.js 736share/doc/groonga/ja/html/searchindex.js
725share/doc/groonga/ja/html/server.html 737share/doc/groonga/ja/html/server.html
726share/doc/groonga/ja/html/server/gqtp.html 738share/doc/groonga/ja/html/server/gqtp.html
727share/doc/groonga/ja/html/server/http.html 739share/doc/groonga/ja/html/server/http.html
728share/doc/groonga/ja/html/server/http/comparison.html 740share/doc/groonga/ja/html/server/http/comparison.html
729share/doc/groonga/ja/html/server/http/groonga-httpd.html 741share/doc/groonga/ja/html/server/http/groonga-httpd.html
730share/doc/groonga/ja/html/server/http/groonga.html 742share/doc/groonga/ja/html/server/http/groonga.html
731share/doc/groonga/ja/html/server/package.html 743share/doc/groonga/ja/html/server/package.html
732share/doc/groonga/ja/html/spec.html 744share/doc/groonga/ja/html/spec.html
733share/doc/groonga/ja/html/spec/gqtp.html 745share/doc/groonga/ja/html/spec/gqtp.html
734share/doc/groonga/ja/html/spec/search.html 746share/doc/groonga/ja/html/spec/search.html
735share/doc/groonga/ja/html/suggest.html 
736share/doc/groonga/ja/html/suggest/completion.html 
737share/doc/groonga/ja/html/suggest/correction.html 
738share/doc/groonga/ja/html/suggest/introduction.html 
739share/doc/groonga/ja/html/suggest/suggestion.html 
740share/doc/groonga/ja/html/suggest/tutorial.html 
741share/doc/groonga/ja/html/troubleshooting.html 747share/doc/groonga/ja/html/troubleshooting.html
742share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html 748share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html
743share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html 749share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html
744share/doc/groonga/ja/html/tutorial.html 750share/doc/groonga/ja/html/tutorial.html
745share/doc/groonga/ja/html/tutorial/data.html 751share/doc/groonga/ja/html/tutorial/data.html
746share/doc/groonga/ja/html/tutorial/drilldown.html 752share/doc/groonga/ja/html/tutorial/drilldown.html
747share/doc/groonga/ja/html/tutorial/index.html 753share/doc/groonga/ja/html/tutorial/index.html
748share/doc/groonga/ja/html/tutorial/introduction.html 754share/doc/groonga/ja/html/tutorial/introduction.html
749share/doc/groonga/ja/html/tutorial/lexicon.html 755share/doc/groonga/ja/html/tutorial/lexicon.html
750share/doc/groonga/ja/html/tutorial/match_columns.html 756share/doc/groonga/ja/html/tutorial/match_columns.html
751share/doc/groonga/ja/html/tutorial/micro_blog.html 757share/doc/groonga/ja/html/tutorial/micro_blog.html
752share/doc/groonga/ja/html/tutorial/network.html 758share/doc/groonga/ja/html/tutorial/network.html
753share/doc/groonga/ja/html/tutorial/patricia_trie.html 759share/doc/groonga/ja/html/tutorial/patricia_trie.html

cvs diff -r1.31 -r1.32 pkgsrc/textproc/groonga/distinfo (expand / switch to unified diff)

--- pkgsrc/textproc/groonga/distinfo 2014/08/29 10:04:45 1.31
+++ pkgsrc/textproc/groonga/distinfo 2014/11/04 11:40:20 1.32
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.31 2014/08/29 10:04:45 obache Exp $ 1$NetBSD: distinfo,v 1.32 2014/11/04 11:40:20 obache Exp $
2 2
3SHA1 (groonga-4.0.5.tar.gz) = 2e6fd8743a71532f5ee29f3508b678f5505802d2 3SHA1 (groonga-4.0.7.tar.gz) = b00c56c6d7318fe1a87f6f55366182ace4014a2a
4RMD160 (groonga-4.0.5.tar.gz) = ff6dbebc7cb62dc9079246bd2b4a5e7a2d022557 4RMD160 (groonga-4.0.7.tar.gz) = 9254e7651161b196f5ed57987cb5cdb8195d8e1b
5Size (groonga-4.0.5.tar.gz) = 10828892 bytes 5Size (groonga-4.0.7.tar.gz) = 10990151 bytes

cvs diff -r1.12 -r1.13 pkgsrc/textproc/groonga/options.mk (expand / switch to unified diff)

--- pkgsrc/textproc/groonga/options.mk 2014/08/29 10:04:45 1.12
+++ pkgsrc/textproc/groonga/options.mk 2014/11/04 11:40:20 1.13
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1# $NetBSD: options.mk,v 1.12 2014/08/29 10:04:45 obache Exp $ 1# $NetBSD: options.mk,v 1.13 2014/11/04 11:40:20 obache Exp $
2# 2#
3 3
4PKG_OPTIONS_VAR= PKG_OPTIONS.groonga 4PKG_OPTIONS_VAR= PKG_OPTIONS.groonga
5PKG_SUPPORTED_OPTIONS= mecab tests zlib lzo 5PKG_SUPPORTED_OPTIONS= mecab tests zlib lz4
6PKG_SUPPORTED_OPTIONS+= groonga-suggest-learner groonga-httpd 6PKG_SUPPORTED_OPTIONS+= groonga-suggest-learner groonga-httpd
7PKG_SUGGESTED_OPTIONS= mecab groonga-suggest-learner groonga-httpd 7PKG_SUGGESTED_OPTIONS= mecab groonga-suggest-learner groonga-httpd
8 8
9.include "../../mk/bsd.options.mk" 9.include "../../mk/bsd.options.mk"
10 10
11PLIST_VARS+= mecab learner httpd 11PLIST_VARS+= mecab learner httpd
12 12
13.if !empty(PKG_OPTIONS:Mmecab) 13.if !empty(PKG_OPTIONS:Mmecab)
14CONFIGURE_ARGS+= --with-mecab 14CONFIGURE_ARGS+= --with-mecab
15CONFIGURE_ARGS+= --with-mecab-config=${BUILDLINK_PREFIX.mecab}/bin/mecab-config 15CONFIGURE_ARGS+= --with-mecab-config=${BUILDLINK_PREFIX.mecab}/bin/mecab-config
16.include "../../textproc/mecab/buildlink3.mk" 16.include "../../textproc/mecab/buildlink3.mk"
17PLIST.mecab= yes 17PLIST.mecab= yes
18.else 18.else
@@ -35,31 +35,31 @@ BUILD_DEPENDS+= ${RUBY_PKGPREFIX}-test- @@ -35,31 +35,31 @@ BUILD_DEPENDS+= ${RUBY_PKGPREFIX}-test-
35RUBY_JSON_REQD= 0:build 35RUBY_JSON_REQD= 0:build
36.include "../../lang/ruby/json.mk" 36.include "../../lang/ruby/json.mk"
37.else 37.else
38CONFIGURE_ARGS+= --without-cutter 38CONFIGURE_ARGS+= --without-cutter
39.endif 39.endif
40 40
41.if !empty(PKG_OPTIONS:Mzlib) 41.if !empty(PKG_OPTIONS:Mzlib)
42CONFIGURE_ARGS+= --with-zlib 42CONFIGURE_ARGS+= --with-zlib
43.include "../../devel/zlib/buildlink3.mk" 43.include "../../devel/zlib/buildlink3.mk"
44.else 44.else
45CONFIGURE_ARGS+= --without-zlib 45CONFIGURE_ARGS+= --without-zlib
46.endif 46.endif
47 47
48.if !empty(PKG_OPTIONS:Mlzo) 48.if !empty(PKG_OPTIONS:Mlz4)
49CONFIGURE_ARGS+= --with-lzo 49CONFIGURE_ARGS+= --with-lz4
50.include "../../archivers/lzo/buildlink3.mk" 50.include "../../archivers/lz4/buildlink3.mk"
51.else 51.else
52CONFIGURE_ARGS+= --without-lzo 52CONFIGURE_ARGS+= --without-lz4
53.endif 53.endif
54 54
55.if !empty(PKG_OPTIONS:Mgroonga-suggest-learner) 55.if !empty(PKG_OPTIONS:Mgroonga-suggest-learner)
56.include "../../devel/libevent/buildlink3.mk" 56.include "../../devel/libevent/buildlink3.mk"
57.include "../../devel/msgpack/buildlink3.mk" 57.include "../../devel/msgpack/buildlink3.mk"
58.include "../../net/zeromq/buildlink3.mk" 58.include "../../net/zeromq/buildlink3.mk"
59CONFIGURE_ARGS+= --with-libevent=${BUILDLINK_PREFIX.libevent} 59CONFIGURE_ARGS+= --with-libevent=${BUILDLINK_PREFIX.libevent}
60CONFIGURE_ARGS+= --with-message-pack=${BUILDLINK_PREFIX.msgpack} 60CONFIGURE_ARGS+= --with-message-pack=${BUILDLINK_PREFIX.msgpack}
61CONFIGURE_ARGS+= --enable-zeromq 61CONFIGURE_ARGS+= --enable-zeromq
62PLIST.learner= yes 62PLIST.learner= yes
63.else 63.else
64CONFIGURE_ARGS+= --without-libevent 64CONFIGURE_ARGS+= --without-libevent
65CONFIGURE_ARGS+= --without-message-pack 65CONFIGURE_ARGS+= --without-message-pack
@@ -90,18 +90,18 @@ CONF_FILES+= share/examples/${PKGBASE}/h @@ -90,18 +90,18 @@ CONF_FILES+= share/examples/${PKGBASE}/h
90CONF_FILES+= share/examples/${PKGBASE}/httpd/koi-win \ 90CONF_FILES+= share/examples/${PKGBASE}/httpd/koi-win \
91 ${PKG_SYSCONFDIR}/httpd/koi-win 91 ${PKG_SYSCONFDIR}/httpd/koi-win
92CONF_FILES+= share/examples/${PKGBASE}/httpd/mime.types \ 92CONF_FILES+= share/examples/${PKGBASE}/httpd/mime.types \
93 ${PKG_SYSCONFDIR}/httpd/mime.types 93 ${PKG_SYSCONFDIR}/httpd/mime.types
94CONF_FILES+= share/examples/${PKGBASE}/httpd/scgi_params \ 94CONF_FILES+= share/examples/${PKGBASE}/httpd/scgi_params \
95 ${PKG_SYSCONFDIR}/httpd/scgi_params 95 ${PKG_SYSCONFDIR}/httpd/scgi_params
96CONF_FILES+= share/examples/${PKGBASE}/httpd/uwsgi_params \ 96CONF_FILES+= share/examples/${PKGBASE}/httpd/uwsgi_params \
97 ${PKG_SYSCONFDIR}/httpd/uwsgi_params 97 ${PKG_SYSCONFDIR}/httpd/uwsgi_params
98CONF_FILES+= share/examples/${PKGBASE}/httpd/win-utf \ 98CONF_FILES+= share/examples/${PKGBASE}/httpd/win-utf \
99 ${PKG_SYSCONFDIR}/httpd/win-utf 99 ${PKG_SYSCONFDIR}/httpd/win-utf
100 100
101SUBST_CLASSES+= confpath 101SUBST_CLASSES+= confpath
102SUBST_STAGE.confpath= post-configure 102SUBST_STAGE.confpath= post-configure
103SUBST_FILES.confpath= vendor/nginx-1.7.4/objs/Makefile 103SUBST_FILES.confpath= vendor/nginx-1.7.6/objs/Makefile
104SUBST_SED.confpath= -e 's,\$$(DESTDIR)${PKG_SYSCONFDIR}/httpd,\$$(DESTDIR)${PREFIX}/share/examples/${PKGBASE}/httpd,g' 104SUBST_SED.confpath= -e 's,\$$(DESTDIR)${PKG_SYSCONFDIR}/httpd,\$$(DESTDIR)${PREFIX}/share/examples/${PKGBASE}/httpd,g'
105.else 105.else
106CONFIGURE_ARGS+= --disable-groonga-httpd 106CONFIGURE_ARGS+= --disable-groonga-httpd
107.endif 107.endif