groonga-vl.spec 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  1. %bcond_with systemd
  2. %global _initdir %{_sysconfdir}/init.d/
  3. Name: groonga
  4. Summary: An Embeddable Fulltext Search Engine
  5. Version: 12.0.9
  6. Release: 1%{?_dist_release}%{?with_systemd:.systemd}
  7. Group: office
  8. Vendor: Project Vine
  9. Distribution: Vine Linux
  10. Packager: tomop, iwaim
  11. License: LGPLv2
  12. URL: http://groonga.org/
  13. Source0: http://packages.groonga.org/source/groonga/groonga-%{version}.tar.gz
  14. Source1: groonga-httpd.init
  15. Source2: groonga-server-gqtp.init
  16. Source3: groonga-server-http.init
  17. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id_u} -n)
  18. BuildRequires: mecab-devel
  19. BuildRequires: zlib-devel
  20. BuildRequires: lz4-devel
  21. BuildRequires: libzstd-devel
  22. Requires: %{name}-libs = %{version}-%{release}
  23. Requires: %{name}-plugin-suggest = %{version}-%{release}
  24. %if %{with systemd}
  25. %else
  26. %endif
  27. %description
  28. Groonga is an embeddable full-text search engine library. It can
  29. integrate with DBMS and scripting languages to enhance their search
  30. functionality. It also provides a standalone data store server based
  31. on relational data model.
  32. %package libs
  33. Summary: Runtime libraries for groonga
  34. Group: system
  35. License: LGPLv2 and (MIT or GPLv2)
  36. %description libs
  37. This package contains the libraries for groonga
  38. %package server-common
  39. Summary: Common packages for the groonga server and the groonga HTTP server
  40. Group: servers
  41. License: LGPLv2
  42. Requires: %{name} = %{version}-%{release}
  43. Requires(pre): shadow-utils
  44. %description server-common
  45. This package provides common settings for server use
  46. %package server-gqtp
  47. Summary: Groonga GQTP server
  48. Group: servers
  49. License: LGPLv2
  50. Requires: %{name}-server-common = %{version}-%{release}
  51. Requires(pre): shadow-utils
  52. Requires(post): /sbin/chkconfig
  53. Requires(preun): /sbin/chkconfig
  54. Requires(preun): /sbin/service
  55. Requires(postun): /sbin/service
  56. Obsoletes: %{name} < 1.2.2-0
  57. Obsoletes: %{name}-server < 2.0.7-0
  58. %description server-gqtp
  59. This package contains the groonga GQTP server
  60. %package server-http
  61. Summary: Groonga HTTP server (transitional)
  62. Group: servers
  63. License: LGPLv2
  64. Requires: %{name}-server-common = %{version}-%{release}
  65. Requires: curl
  66. Requires(pre): shadow-utils
  67. Requires(post): /sbin/chkconfig
  68. Requires(preun): /sbin/chkconfig
  69. Requires(preun): /sbin/service
  70. Requires(postun): /sbin/service
  71. Obsoletes: %{name} < 1.2.2-0
  72. Obsoletes: %{name}-server < 2.0.7-0
  73. %description server-http
  74. This is a transitional package to groonga-httpd.
  75. %package httpd
  76. Summary: Groonga HTTP server
  77. Group: servers
  78. License: LGPLv2 and BSD
  79. Requires: %{name}-server-common = %{version}-%{release}
  80. Provides: %{name}-server-http = %{version}-%{release}
  81. Obsoletes: %{name}-server-http <= 4.0.7-2
  82. %description httpd
  83. This package contains the groonga HTTP server. It is experimental
  84. but has many features. Because it is based on nginx HTTP server.
  85. It will obsolete groonga-server-http when it is stable.
  86. %package doc
  87. Summary: Documentation for groonga
  88. Group: documentation
  89. License: LGPLv2 and BSD
  90. %description doc
  91. Documentation for Groonga
  92. %package devel
  93. Summary: Libraries and header files for Groonga
  94. Group: programming
  95. Requires: %{name}-libs = %{version}-%{release}
  96. %description devel
  97. Libraries and header files for Groonga
  98. %package tokenizer-mecab
  99. Summary: MeCab tokenizer for Groonga
  100. Group: office
  101. Requires: %{name}-libs = %{version}-%{release}
  102. %description tokenizer-mecab
  103. MeCab tokenizer for Groonga
  104. %package plugin-suggest
  105. Summary: Suggest plugin for Groonga
  106. Group: office
  107. Requires: %{name}-libs = %{version}-%{release}
  108. %description plugin-suggest
  109. Sugget plugin for Groonga
  110. %package munin-plugins
  111. Summary: Munin plugins for Groonga
  112. Group: system
  113. Requires: %{name}-libs = %{version}-%{release}
  114. Requires: munin-node
  115. Requires(post): munin-node
  116. Requires(post): /sbin/service
  117. Requires(postun): /sbin/service
  118. %description munin-plugins
  119. Munin plugins for Groonga
  120. %debug_package
  121. %prep
  122. %setup -q
  123. %build
  124. %configure \
  125. --disable-static \
  126. %if %{with systemd}
  127. --with-package-platform=centos8 \
  128. %else
  129. --with-package-platform=centos6 \
  130. %endif
  131. --with-zlib \
  132. --with-lz4 \
  133. --with-zstd \
  134. --with-mecab \
  135. --with-rapidjson=bundled \
  136. --with-munin-plugins \
  137. --enable-mruby
  138. sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
  139. sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
  140. make %{?_smp_mflags}
  141. %install
  142. rm -rf $RPM_BUILD_ROOT
  143. make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
  144. rm $RPM_BUILD_ROOT%{_libdir}/groonga/plugins/*/*.la
  145. rm $RPM_BUILD_ROOT%{_libdir}/*.la
  146. rm -rf groonga-doc
  147. mv $RPM_BUILD_ROOT%{_datadir}/doc/groonga groonga-doc
  148. mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/run/groonga
  149. mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/groonga/db
  150. mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/log/groonga
  151. mv $RPM_BUILD_ROOT%{_datadir}/groonga/munin/ $RPM_BUILD_ROOT%{_datadir}/
  152. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/munin/plugin-conf.d/
  153. cat <<EOC > $RPM_BUILD_ROOT%{_sysconfdir}/munin/plugin-conf.d/groonga
  154. [groonga_*]
  155. user groonga
  156. group groonga
  157. env.PATH %{_bindir}
  158. env.database_path %{_localstatedir}/lib/groonga/db/db
  159. env.host 127.0.0.1
  160. env.http_host 127.0.0.1
  161. env.http_port 10041
  162. env.http_database_path %{_localstatedir}/lib/groonga/db/db
  163. env.http_pid_path %{_localstatedir}/run/groonga/groonga-http.pid
  164. env.http_query_log_path %{_localstatedir}/log/groonga/query-http.log
  165. env.httpd_host 127.0.0.1
  166. env.httpd_port 10041
  167. env.httpd_database_path %{_localstatedir}/lib/groonga/db/db
  168. env.httpd_pid_path %{_localstatedir}/run/groonga/groonga-httpd.pid
  169. env.httpd_query_log_path %{_localstatedir}/log/groonga/httpd/groonga-query.log
  170. env.gqtp_host 127.0.0.1
  171. env.gqtp_port 10043
  172. env.gqtp_database_path %{_localstatedir}/lib/groonga/db/db
  173. env.gqtp_pid_path %{_localstatedir}/run/groonga/groonga-gqtp.pid
  174. env.gqtp_query_log_path %{_localstatedir}/log/groonga/query-gqtp.log
  175. EOC
  176. %if %{with systemd}
  177. mkdir -p %{buildroot}%{_unitdir}
  178. mkdir -p %{buildroot}%{_tmpfilesdir}
  179. mv -f %{buildroot}%{_sysconfdir}/tmpfiles.d/* %{buildroot}%{_tmpfilesdir}/
  180. mv -f %{buildroot}/usr%{_unitdir}/* %{buildroot}%{_unitdir}/
  181. %else
  182. mkdir -p %{buildroot}%{_initdir}
  183. install -m755 %{SOURCE1} %{buildroot}%{_initdir}/groonga-httpd
  184. install -m755 %{SOURCE2} %{buildroot}%{_initdir}/groonga-server-gqtp
  185. install -m755 %{SOURCE3} %{buildroot}%{_initdir}/groonga-server-http
  186. # this file is needed by systemd only
  187. rm -rf %{buildroot}%{_sysconfdir}/tmpfiles.d
  188. rm -rf %{buildroot}/usr/lib/systemd
  189. %endif
  190. %clean
  191. rm -rf $RPM_BUILD_ROOT
  192. %pre server-common
  193. getent group groonga >/dev/null || groupadd -r groonga
  194. getent passwd groonga >/dev/null || \
  195. useradd -r -g groonga -d %{_localstatedir}/lib/groonga -s /sbin/nologin \
  196. -c 'groonga' groonga
  197. if [ $1 = 1 ]; then
  198. mkdir -p %{_localstatedir}/lib/groonga/db
  199. groonga -n %{_localstatedir}/lib/groonga/db/db shutdown > /dev/null
  200. chown -R groonga:groonga %{_localstatedir}/lib/groonga
  201. mkdir -p %{_localstatedir}/run/groonga
  202. chown -R groonga:groonga %{_localstatedir}/run/groonga
  203. fi
  204. exit 0
  205. %post server-gqtp
  206. %if %{with systemd}
  207. %systemd_post groonga-server-gqtp.service
  208. %else
  209. /sbin/chkconfig --add groonga-server-gqtp
  210. %endif
  211. %post server-http
  212. %if %{with systemd}
  213. %systemd_post groonga-server-http.service
  214. %else
  215. /sbin/chkconfig --add groonga-server-http
  216. %endif
  217. %post httpd
  218. if [ $1 = 1 ] ; then
  219. mkdir -p %{_localstatedir}/log/groonga/httpd
  220. chown -R groonga:groonga %{_localstatedir}/log/groonga/httpd
  221. %if %{with systemd}
  222. %systemd_post groonga-httpd.service
  223. elif [ $1 = 2 ] ; then
  224. /usr/sbin/groonga-httpd-restart > /dev/null 2>&1 || :
  225. %else
  226. elif [ $1 = 2 ] ; then
  227. /sbin/service groonga-httpd restart >/dev/null 2>&1 || :
  228. %endif
  229. fi
  230. %post munin-plugins
  231. %{_sbindir}/munin-node-configure --shell --remove-also | grep -e 'groonga_' | sh
  232. [ -f %{_localstatedir}/lock/subsys/munin-node ] && \
  233. %if %{with systemd}
  234. /bin/systemctl restart munin-node.service
  235. %else
  236. /sbin/service munin-node restart > /dev/null 2>&1
  237. %endif
  238. :
  239. %preun server-http
  240. %if %{with systemd}
  241. %systemd_preun groonga-server-http.service
  242. %else
  243. if [ $1 = 0 -o -x /bin/systemctl ] ; then
  244. /sbin/service groonga-server-http stop >/dev/null 2>&1 || :
  245. /sbin/chkconfig --del groonga-server-http
  246. fi
  247. %endif
  248. %postun server-http
  249. %if %{with systemd}
  250. %systemd_postun groonga-server-http.service
  251. %else
  252. if [ $1 -ge 1 ] ; then
  253. /sbin/service groonga-server-http condrestart >/dev/null 2>&1 || :
  254. fi
  255. %endif
  256. %preun server-gqtp
  257. %if %{with systemd}
  258. %systemd_preun groonga-server-gqtp.service
  259. %else
  260. if [ $1 = 0 -o -x /bin/systemctl ] ; then
  261. /sbin/service groonga-server-http stop >/dev/null 2>&1 || :
  262. /sbin/chkconfig --del groonga-server-gqtp
  263. fi
  264. %endif
  265. %postun server-gqtp
  266. %if %{with systemd}
  267. %systemd_postun groonga-server-gqtp.service
  268. %else
  269. if [ $1 -ge 1 ] ; then
  270. /sbin/service groonga-server-gqtp condrestart >/dev/null 2>&1 || :
  271. fi
  272. %endif
  273. %preun httpd
  274. %if %{with systemd}
  275. %systemd_preun groonga-httpd.service
  276. %else
  277. if [ $1 = 0 -o -x /bin/systemctl ] ; then
  278. %{_initdir}/groonga-httpd stop >/dev/null 2>&1 || :
  279. /sbin/chkconfig --del groonga-server-gqtp
  280. fi
  281. %endif
  282. %postun httpd
  283. %if %{with systemd}
  284. %systemd_postun groonga-httpd.service
  285. %else
  286. if [ $1 -ge 1 ] ; then
  287. %{_initdir}/groonga-httpd condrestart >/dev/null 2>&1 || :
  288. fi
  289. %endif
  290. %postun munin-plugins
  291. %if %{with systemd}
  292. %else
  293. if [ $1 -eq 0 ]; then
  294. [ -f %{_localstatedir}/lock/subsys/munin-node ] && \
  295. %if %{with systemd}
  296. /bin/systemctl restart munin-node.service
  297. %else
  298. /sbin/service munin-node restart > /dev/null 2>&1
  299. %endif
  300. :
  301. fi
  302. %endif
  303. %triggerpostun -n groonga-server-common -- groonga-server-common < 2.0.8-2
  304. chown -R groonga:groonga %{_localstatedir}/lib/groonga
  305. chown -R groonga:groonga %{_localstatedir}/run/groonga
  306. %files
  307. %defattr(-,root,root,-)
  308. %{_bindir}/groonga
  309. %{_bindir}/grndb
  310. %files libs
  311. %defattr(-,root,root,-)
  312. %license COPYING
  313. %doc README.md
  314. %{_libdir}/*.so.*
  315. %{_libdir}/groonga
  316. %{_datadir}/groonga
  317. %config(noreplace) %{_sysconfdir}/groonga/synonyms.tsv
  318. %files server-common
  319. %if %{with systemd}
  320. %{_tmpfilesdir}/*
  321. %endif
  322. %files server-gqtp
  323. %defattr(-,root,root,-)
  324. %config(noreplace) %{_sysconfdir}/groonga/
  325. %config(noreplace) %{_sysconfdir}/sysconfig/groonga-server-gqtp
  326. %config(noreplace) %{_sysconfdir}/logrotate.d/groonga-server-gqtp
  327. %ghost %dir %{_localstatedir}/run/%{name}
  328. %attr(0750,groonga,groonga) %dir %{_localstatedir}/lib/%{name}
  329. %attr(0750,groonga,groonga) %dir %{_localstatedir}/lib/%{name}/db
  330. %if %{with systemd}
  331. %{_unitdir}/groonga-server-gqtp.service
  332. %else
  333. %{_initdir}/groonga-server-gqtp
  334. %endif
  335. %files server-http
  336. %defattr(-,root,root,-)
  337. %config(noreplace) %{_sysconfdir}/groonga/
  338. %config(noreplace) %{_sysconfdir}/sysconfig/groonga-server-http
  339. %config(noreplace) %{_sysconfdir}/logrotate.d/groonga-server-http
  340. %ghost %dir %{_localstatedir}/run/%{name}
  341. %attr(0750,groonga,groonga) %dir %{_localstatedir}/lib/%{name}
  342. %attr(0750,groonga,groonga) %dir %{_localstatedir}/lib/%{name}/db
  343. %if %{with systemd}
  344. %{_unitdir}/groonga-server-http.service
  345. %else
  346. %{_initdir}/groonga-server-http
  347. %endif
  348. %files httpd
  349. %defattr(-,root,root,-)
  350. %config(noreplace) %{_sysconfdir}/groonga/httpd/*
  351. %config(noreplace) %{_sysconfdir}/sysconfig/groonga-httpd
  352. %config(noreplace) %{_sysconfdir}/logrotate.d/groonga-httpd
  353. %{_sbindir}/groonga-httpd
  354. %{_sbindir}/groonga-httpd-restart
  355. %ghost %dir %{_localstatedir}/run/%{name}
  356. %attr(0750,groonga,groonga) %dir %{_localstatedir}/lib/%{name}
  357. %attr(0750,groonga,groonga) %dir %{_localstatedir}/lib/%{name}/db
  358. %if %{with systemd}
  359. %{_unitdir}/groonga-httpd.service
  360. %else
  361. %{_initdir}/groonga-httpd
  362. %endif
  363. %files doc
  364. %defattr(-,root,root,-)
  365. %license COPYING
  366. %doc README.md
  367. %doc groonga-doc/*
  368. %files devel
  369. %defattr(-,root,root,-)
  370. %{_includedir}/groonga/
  371. %{_libdir}/*.so
  372. %{_libdir}/pkgconfig/groonga*.pc
  373. %files plugin-suggest
  374. %defattr(-,root,root,-)
  375. %{_bindir}/groonga-suggest-*
  376. %dir %{_libdir}/groonga/plugins
  377. %{_libdir}/groonga/plugins/suggest/suggest.so
  378. %files tokenizer-mecab
  379. %defattr(-,root,root,-)
  380. %{_libdir}/groonga/plugins/tokenizers/mecab.so
  381. %files munin-plugins
  382. %defattr(-,root,root,-)
  383. %{_datadir}/munin/plugins/*
  384. %config(noreplace) %{_sysconfdir}/munin/plugin-conf.d/*
  385. %changelog
  386. * Wed Nov 09 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 12.0.9-1
  387. - new upstream release.
  388. * Wed Mar 02 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 12.0.1-1
  389. - new upstream release.
  390. * Tue Dec 28 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 11.1.1-1
  391. - new upstream release.
  392. * Thu Sep 30 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 11.0.7-1
  393. - new upstream release.
  394. * Tue Aug 31 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 11.0.6-1
  395. - new upstream release.
  396. * Sat Aug 07 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 11.0.5-1
  397. - new upstream release.
  398. * Tue Jun 29 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 11.0.4-1
  399. - new upstream release.
  400. - added systemd support (disabled as default).
  401. * Fri Mar 19 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 11.0.0-1
  402. - new upstream release.
  403. - dropped ldconfig scriptlets.
  404. * Wed Sep 04 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.7-1
  405. - new upstream release.
  406. * Wed May 08 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.2-1
  407. - new upstream release.
  408. - added BR:libxcrypt-devel.
  409. * Sat Dec 30 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.1.0-1
  410. - new upstream release.
  411. * Mon May 1 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.2-1
  412. - new upstream release.
  413. * Tue Dec 13 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1.1-1
  414. - new upstream release.
  415. * Wed Jun 29 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.0.5-1
  416. - new upstream release.
  417. * Mon Nov 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.0-1
  418. - new upstream release.
  419. * Mon Sep 29 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.6-1
  420. - new upstream release.
  421. * Sat May 31 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.2-1
  422. - new upstream release.
  423. * Mon Mar 31 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.1-1
  424. - new upstream release.
  425. * Tue Feb 11 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.0.0-1
  426. - new upstream release.
  427. * Sun Dec 29 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.1.1-1
  428. - new upstream release.
  429. * Wed Dec 04 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.1.0-1
  430. - new upstream release.
  431. * Mon Feb 11 2013 IWAI, Masaharu <iwai@alib.jp> 3.0.0-1
  432. - update to 3.0.0
  433. - drop groonga-server-http script patch (Patch0): upstream merged
  434. - add grn_index_cursor_next() patch (Patch1) from upstream git
  435. - add Packager: iwaim
  436. * Thu Feb 7 2013 IWAI, Masaharu <iwai@alib.jp> 2.0.8-2
  437. - fix pre script for groonga-server-common sub package
  438. - add triggerpostun script: groonga-server-common < 2.0.8-2
  439. - add groonga-server-http script patch (Patch0)
  440. * Fri Nov 16 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.0.8-1
  441. - new upstream release.
  442. * Sat Sep 15 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.0.6-1
  443. - initial build for Vine Linux.
  444. * Wed Aug 29 2012 HAYASHI Kentaro <hayashi@clear-code.com> - 2.0.6-0
  445. - new upstream release.
  446. * Sun Jul 29 2012 Kouhei Sutou <kou@clear-code.com> - 2.0.5-0
  447. - new upstream release.
  448. - split groonga-httpd related files into groonga-httpd package.
  449. * Fri Jun 29 2012 Kouhei Sutou <kou@clear-code.com> - 2.0.4-0
  450. - new upstream release.
  451. - groonga package does not require groonga-tokenizer-mecab package.
  452. * Tue May 29 2012 Kouhei Sutou <kou@clear-code.com> - 2.0.3-0
  453. - new upstream release.
  454. * Sun Apr 29 2012 Kouhei Sutou <kou@clear-code.com> - 2.0.2-0
  455. - new upstream release.
  456. * Fri Mar 30 2012 Kouhei Sutou <kou@clear-code.com> - 2.0.1-2
  457. - Use shutdown command for stop.
  458. * Fri Mar 30 2012 Kouhei Sutou <kou@clear-code.com> - 2.0.1-1
  459. - Fix bind address argument parameter.
  460. Patch by Masaharu IWAI. Thanks!!!
  461. * Thu Mar 29 2012 Kouhei Sutou <kou@clear-code.com> - 2.0.1-0
  462. - new upstream release.
  463. - grntest -> groonga-benchmark.
  464. - remove groong-tools package.
  465. * Wed Feb 29 2012 Kouhei Sutou <kou@clear-code.com> - 2.0.0-0
  466. - new upstream release.
  467. - remove other permission from DB directory.
  468. - install init.d related files directly.
  469. - use HTTP as the default protocol.
  470. * Sun Jan 29 2012 Kouhei Sutou <kou@clear-code.com> - 1.3.0-0
  471. - new upstream release.
  472. - groonga-server package does not require groonga-munin-plugins package.
  473. suggested by Masaharu IWAI. Thanks!!!
  474. - groonga package does not require groonga-doc package.
  475. suggested by Masaharu IWAI. Thanks!!!
  476. * Thu Dec 29 2011 Kouhei Sutou <kou@clear-code.com> - 1.2.9-0
  477. - new upstream release.
  478. * Tue Nov 29 2011 Kouhei Sutou <kou@clear-code.com> - 1.2.8-0
  479. - new upstream release.
  480. - enable zlib support.
  481. - enable lzo support.
  482. - add --with-package-platform=redhat configure option to install init script.
  483. - add --with-munin-plugins cofnigure option to install Munin plugins.
  484. * Sat Oct 29 2011 Kouhei Sutou <kou@clear-code.com> - 1.2.7-0
  485. - new upstream release.
  486. * Thu Sep 29 2011 Kouhei Sutou <kou@clear-code.com> - 1.2.6-0
  487. - new upstream release.
  488. * Mon Aug 29 2011 Kouhei Sutou <kou@clear-code.com> - 1.2.5-0
  489. - new upstream release.
  490. * Fri Jul 29 2011 Kouhei Sutou <kou@clear-code.com> - 1.2.4-0
  491. - new upstream release.
  492. * Wed Jun 29 2011 Kouhei Sutou <kou@clear-code.com> - 1.2.3-0
  493. - new upstream release.
  494. - add a new groong-tools package.
  495. * Sun May 29 2011 Kouhei Sutou <kou@clear-code.com> - 1.2.2-0
  496. - new upstream release.
  497. - split server files into groonga-server package.
  498. * Fri Apr 29 2011 Kouhei Sutou <kou@clear-code.com> - 1.2.1-0
  499. - new upstream release.
  500. * Tue Mar 29 2011 Kouhei Sutou <kou@clear-code.com> - 1.2.0-0
  501. - new upstream release.
  502. * Wed Feb 09 2011 Kouhei Sutou <kou@clear-code.com> - 1.1.0-0
  503. - new upstream release.
  504. * Wed Feb 02 2011 Kouhei Sutou <kou@clear-code.com> - 1.0.8-0
  505. - new upstream release.
  506. * Sat Jan 29 2011 Kouhei Sutou <kou@clear-code.com> - 1.0.7-0
  507. - new upstream release.
  508. * Fri Dec 31 2010 Kouhei Sutou <kou@clear-code.com> - 1.0.6-0
  509. - new upstream release
  510. * Wed Dec 29 2010 Kouhei Sutou <kou@clear-code.com> - 1.0.5-0
  511. - new upstream release.
  512. * Mon Nov 29 2010 Kouhei Sutou <kou@clear-code.com> - 1.0.4-1
  513. - new upstream release
  514. * Wed Nov 24 2010 Daiki Ueno <dueno@redhat.com> - 1.0.3-2
  515. - %%ghost /var/run/*.
  516. * Fri Oct 29 2010 Kouhei Sutou <kou@clear-code.com> - 1.0.3-1
  517. - new upstream release.
  518. * Sat Oct 09 2010 Kouhei Sutou <kou@clear-code.com> - 1.0.2-2
  519. - merge Fedora changes.
  520. * Thu Sep 09 2010 Kouhei Sutou <kou@clear-code.com> - 1.0.2-1
  521. - new upstream release.
  522. * Mon Sep 06 2010 Kouhei Sutou <kou@clear-code.com> - 1.0.1-1
  523. - new upstream release.
  524. * Thu Sep 02 2010 Kouhei Sutou <kou@clear-code.com> - 1.0.0-1
  525. - split packages.
  526. * Tue Aug 24 2010 Daiki Ueno <dueno@redhat.com> - 0.7.6-1
  527. - initial packaging for Fedora