diff options
author | obache <obache@pkgsrc.org> | 2014-01-01 08:48:47 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-01-01 08:48:47 +0000 |
commit | 5ceef861539e7e6ed113d8f4b306f27a545e4fac (patch) | |
tree | 5e9b7bd735c7fab455b62530a124f25539d3f67c /textproc/groonga/Makefile | |
parent | 7ff70b974dd2bc1a82a4339c5f04c7d5439c5457 (diff) | |
download | pkgsrc-5ceef861539e7e6ed113d8f4b306f27a545e4fac.tar.gz |
Update groonga to 3.1.1.
Release 3.1.1 - 2013/12/29
--------------------------
Improvements
^^^^^^^^^^^^
* [deb] Refined Groonga packages for Debian policy. [groonga-dev,01930]
[Suggested by Hideki Yamane]
* [deb] Dropped Debian 6.0 (squeeze) support.
* [deb] Dropped Ubuntu 10.04 (lucid) support.
* Supported :doc:`/reference/functions/geo_in_rectangle` in the whole world.
* Supported error report when failed to casting invalid value of geo point type.
* Exported some macros which is used for accessing pseudo column names.
[groonga-dev,1999] [Suggested by whombx]
* [doc] Refined drilldown documentation. [Reported by @Yahppo]
* Supported :doc:`/reference/functions/between` function which is used for
filtering the column value in specific range.
* [doc] Updated Travis CI envrinment information. [Patch by cosmo0920]
* [rpm][fedora] Dropped Fedora 19.
* [rpm][fedora] Supported Fedora 20.
* [doc] Updated "Groonga" notation. [Patch by cosmo0920] [GitHub#122, #123, #124, #125, #125, #126, #127, #128, #129, #130, #131, #131, #132, #133, #134]
Fixes
^^^^^
* [munin] Fixed the wrong port number which is specified for GQTP.
* [geo_in_circle] Fixed a bug that if you specify "LONGITUDExLATITUDE" as
the 3rd argument of :doc:`/reference/functions/geo_in_circle`, Groonga crashes.
Thanks
^^^^^^
* Hideki Yamane
* whombx
* @Yappo
* cosmo0920
Diffstat (limited to 'textproc/groonga/Makefile')
-rw-r--r-- | textproc/groonga/Makefile | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/textproc/groonga/Makefile b/textproc/groonga/Makefile index d3f0db41537..720a2810594 100644 --- a/textproc/groonga/Makefile +++ b/textproc/groonga/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.30 2013/12/15 19:50:19 joerg Exp $ +# $NetBSD: Makefile,v 1.31 2014/01/01 08:48:47 obache Exp $ # -DISTNAME= groonga-3.1.0 +DISTNAME= groonga-3.1.1 CATEGORIES= textproc MASTER_SITES= http://packages.groonga.org/source/groonga/ @@ -43,18 +43,14 @@ OWN_DIRS+= ${VARBASE}/log/${PKGBASE} CHECK_WRKREF_SKIP+= bin/groonga CHECK_INTERPRETER_SKIP+= share/groonga/examples/* -REPLACE_RUBY+= data/munin/groonga_cpu_time -REPLACE_RUBY+= data/munin/groonga_disk -REPLACE_RUBY+= data/munin/groonga_n_records -REPLACE_RUBY+= data/munin/groonga_query_performance -REPLACE_RUBY+= data/munin/groonga_status +REPLACE_RUBY+= data/munin/groonga_cpu_time_ +REPLACE_RUBY+= data/munin/groonga_disk_ +REPLACE_RUBY+= data/munin/groonga_n_records_ +REPLACE_RUBY+= data/munin/groonga_query_performance_ +REPLACE_RUBY+= data/munin/groonga_status_ +REPLACE_RUBY+= data/munin/groonga_throughput_ .include "../../lang/ruby/replace.mk" -.include "../../mk/compiler.mk" -.if !empty(PKGSRC_COMPILER:Mclang) -MAKE_ENV+= CLANG_NO_OPT=-O0 -.endif - .include "../../devel/editline/buildlink3.mk" .include "../../devel/glib2/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |