mariadb-vl.spec 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527
  1. %bcond_with systemd
  2. %bcond_with source
  3. %bcond_without onigmo
  4. %global daemon_name mariadb
  5. %define mysqld_user mysql
  6. %define mysqld_group mysql
  7. %define mysqldatadir /var/lib/mysql
  8. %if %{with systemd}
  9. %define pidfiledir %{_rundir}/mariadb
  10. %else
  11. %define pidfiledir /var/run/mariadb
  12. %endif
  13. # We define some system's well known locations here so we can use them easily
  14. # later when building to another location (like SCL)
  15. %global logrotateddir %{_sysconfdir}/logrotate.d
  16. %global logfiledir %{_localstatedir}/log/%{daemon_name}
  17. %global logfile %{logfiledir}/%{daemon_name}.log
  18. # Working around perl dependency problem
  19. %global __perl_requires %{SOURCE998}
  20. %global __perllib_requires %{SOURCE998}
  21. %define _unpackaged_files_terminate_build 1
  22. %define mariadb_version 10.11.9
  23. %define mariadb_base_version 10.11
  24. %define mroonga_version 14.04
  25. %define groonga_version 14.0.6
  26. %define groonga_normalize_mysql_version 1.2.3
  27. %define client_version 18
  28. %define galera_api_version 26.4
  29. Name: mariadb
  30. Summary: MariaDB: a very fast and robust SQL database server
  31. Version: %{mariadb_version}
  32. Release: 1%{_dist_release}%{?with_systemd:.systemd}
  33. Group: servers
  34. Vendor: Project Vine
  35. Distribution: Vine Linux
  36. Packager: tomop
  37. License: GPL2
  38. URL: https://mariadb.org/
  39. Source: https://archive.mariadb.org/mariadb-%{version}/source/mariadb-%{version}.tar.gz
  40. # for systemd
  41. Source10: mysql.tmpfiles.d.in
  42. Source11: mysql.service.in
  43. Source12: mysql-prepare-db-dir.sh
  44. Source14: mysql-check-socket.sh
  45. Source15: mysql-scripts-common.sh
  46. Source16: mysql-check-upgrade.sh
  47. Source18: mysql@.service.in
  48. Source20: mysql-log-rotate.sh
  49. # Don't depend on lib::mtr*
  50. Source998: perl-requires.sh
  51. Source1000: macros.mariadb.in
  52. Source1001: mysql.init
  53. Source2000: https://github.com/mroonga/mroonga/archive/refs/tags/v%{mroonga_version}.tar.gz#/mroonga-%{mroonga_version}.tar.gz
  54. Patch0: mariadb-scripts.patch
  55. Patch1: mariadb-ownsetup.patch
  56. Patch2000: mroonga-mariadb-10.11.9.patch
  57. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  58. BuildRequires: bison, cmake, gcc-c++, groff, git
  59. BuildRequires: libaio-devel, libboost-devel, libevent-devel, libxml2-devel
  60. BuildRequires: ncurses-devel, perl, openssl-devel, readline-devel
  61. BuildRequires: jemalloc-devel
  62. BuildRequires: pam-devel
  63. BuildRequires: unixODBC-devel
  64. BuildRequires: mecab-devel
  65. BuildRequires: pcre2-devel
  66. BuildRequires: pkgconfig(zlib)
  67. BuildRequires: libzstd-devel
  68. BuildRequires: lz4-devel
  69. BuildRequires: groonga-devel
  70. BuildRequires: groonga-normalizer-mysql-devel
  71. Requires: fileutils sh-utils
  72. Provides: msqlormysql MySQL mysql
  73. Obsoletes: mysql MySQL5
  74. %if %{with systemd}
  75. BuildRequires: systemd
  76. BuildRequires: systemd-devel
  77. %{?systemd_requires}
  78. %else
  79. Requires(post): chkconfig
  80. Requires(preun): chkconfig
  81. %endif
  82. # From the manual
  83. %description
  84. MariaDB: a very fast and robust SQL database server
  85. It is GPL v2 licensed, which means you can use the it free of charge under the
  86. conditions of the GNU General Public License Version 2 (http://www.gnu.org/licenses/).
  87. MariaDB documentation can be found at http://kb.askmonty.org/
  88. MariaDB bug reports should be submitted through https://mariadb.atlassian.net/
  89. %package server
  90. Summary: MariaDB: a very fast and robust SQL database server
  91. Version: %{mariadb_version}
  92. Release: %{release}
  93. Group: servers
  94. Requires: fileutils sh-utils net-tools mariadb-common which
  95. Requires(post): mariadb-common
  96. Provides: mysql-server mysql MySQL MySQL-server mariadbserver-%{mariadb_base_version}
  97. Obsoletes: MySQL mysql mysql-server
  98. Obsoletes: MySQL-server < 5.6.0
  99. Obsoletes: mariadb-tokudb < 10.5.5
  100. %description server
  101. MariaDB: a very fast and robust SQL database server
  102. It is GPL v2 licensed, which means you can use the it free of charge under the
  103. conditions of the GNU General Public License Version 2 (http://www.gnu.org/licenses/).
  104. MariaDB documentation can be found at http://kb.askmonty.org/
  105. MariaDB bug reports should be submitted through https://mariadb.atlassian.net/
  106. %package server-jemalloc
  107. Summary: A configuration file to run MariaDB with jemalloc
  108. Group: servers
  109. BuildRequires: jemalloc
  110. Requires: mariadb-server = %{version}-%{release}
  111. Requires: jemalloc
  112. %description server-jemalloc
  113. This package contains a systemd drop-in file to run MariaDB with jemalloc.
  114. %package mroonga
  115. ##Version: %{mroonga_version}
  116. Summary: A fast fulltext searchable storage engine for MariaDB.
  117. Version: %{mariadb_version}_%{mroonga_version}
  118. Group: servers
  119. Requires(pre): mariadb-server = %{mariadb_version}-%{release}
  120. Requires: mariadb-server = %{mariadb_version}-%{release}
  121. Requires: groonga-libs >= %{groonga_version}
  122. Requires: groonga-tokenizer-mecab >= %{groonga_version}
  123. Requires: groonga-normalizer-mysql >= %{groonga_normalize_mysql_version}
  124. Obsoletes: MySQL-mroonga < 4.02
  125. Obsoletes: mariadb-mroonga < 4.07
  126. Obsoletes: mariadb-mroonga-doc < 4.07
  127. %description mroonga
  128. Mroonga is a fast fulltext searchable storage plugin for MariaDB.
  129. It is based on groonga that is a fast fulltext search engine and
  130. column store. Groonga is good at real-time update.
  131. %package connect
  132. Summary: CONNECT storage engine for MariaDB.
  133. Version: %{mariadb_version}
  134. Group: servers
  135. Requires(pre): mariadb-server = %{mariadb_version}-%{release}
  136. Requires: mariadb-server = %{mariadb_version}-%{release}
  137. %description connect
  138. The CONNECT storage engine enables MariaDB to access external
  139. local or remote data (MED). This is done by defining tables
  140. based on different data types, in particular files in various
  141. formats, data extracted from other DBMS or products (such as Excel)
  142. via ODBC, or data retrieved from the environment (for example
  143. DIR, WMI, and MAC tables).
  144. This storage engine supports table partitioning, MariaDB virtual
  145. columns and also permits defining special columns such as ROWID,
  146. FILEID, and SERVID.
  147. %package galera
  148. Summary: The configuration files and scripts for galera replication
  149. Version: %{mariadb_version}
  150. Group: servers
  151. Provides: mariadb-server-galera = %{mariadb_version}-%{release}
  152. Requires(pre): mariadb-server = %{mariadb_version}-%{release}
  153. Requires: mariadb-server = %{mariadb_version}-%{release}
  154. Requires: galera(%{galera_api_version})
  155. %description galera
  156. This package contains the files for MariaDB Galera Cluster.
  157. %package lz4
  158. Summary: lz4 compression plugin for MariaDB
  159. Version: %{mariadb_version}
  160. Group: servers
  161. Requires: %{name}-server = %{version}-%{release}
  162. %description lz4
  163. This package contains the lz4 compression plugin for MariaDB.
  164. %package client
  165. Summary: MariaDB - Client
  166. Version: %{mariadb_version}
  167. Group: office
  168. Obsoletes: mysql-client MySQL-client < 5.6.0
  169. Provides: mysql-client MySQL-client mariadbclient-%{mariadb_base_version}
  170. %description client
  171. This package contains the standard MariaDB clients and administration tools.
  172. %package devel
  173. Summary: MariaDB - Development libraries and headers
  174. Version: %{mariadb_version}
  175. Group: programming
  176. Requires: %{name}-static, openssl-devel, pkgconfig(zlib)
  177. Conflicts: MySQL-devel < 5.6.0
  178. Conflicts: libmysqlclient-devel
  179. Conflicts: libmariadb-devel
  180. %description devel
  181. This package contains the development libraries and headers to develop
  182. MariaDB server components (e.g. plugins or embedded applications).
  183. %package static
  184. Summary: MariaDB - static libraries
  185. Version: %{mariadb_version}
  186. Group: programming
  187. Requires: %{name}-devel
  188. %description static
  189. This package provides static libraries of MariaDB.
  190. %if %{with source}
  191. %package source
  192. Summary: MariaDB - Source
  193. Version: %{mariadb_version}
  194. Group: programming
  195. Requires: mariadb-devel = %{version}-%{release}
  196. Obsoletes: MySQL-source < 5.6.0
  197. AutoReqProv: no
  198. %description source
  199. This package contains the sources files of MariaDB.
  200. %endif
  201. %package test
  202. Summary: MariaDB - Test suite
  203. Version: %{mariadb_version}
  204. Group: admin-tools
  205. Requires: %{name}-client = %{version}-%{release} perl-DBI perl
  206. Obsoletes: mysql-bench MySQL5-bench MySQL-bench MySQL-test < 5.6.0
  207. Provides: perl(mtr_misc.pl)
  208. %description test
  209. This package contains the MariaDB regression test suite.
  210. %package embedded
  211. Summary: MariaDB as an embeddable library
  212. Version: %{mariadb_version}
  213. Group: system
  214. Obsoletes: mysql-embedded MySQL-embedded
  215. Provides: mysql-embedded MySQL-embedded
  216. %description embedded
  217. This package contains a version of the MariaDB server that can be embedded
  218. into a client application instead of running as a separate process.
  219. %debug_package
  220. %prep
  221. %setup -q
  222. %if %{with systemd}
  223. %patch0 -p1
  224. %endif
  225. %patch1 -p1
  226. tar xvf %{SOURCE2000}
  227. pushd mroonga-%{mroonga_version}
  228. %patch2000 -p1
  229. popd
  230. cp -f \
  231. %{SOURCE10} %{SOURCE11} %{SOURCE12} %{SOURCE14} \
  232. %{SOURCE15} %{SOURCE16} %{SOURCE18} \
  233. scripts/
  234. cp -f %{SOURCE20} support-files/
  235. %build
  236. # Be strict about variables, bail at earliest opportunity, etc.
  237. set -eu
  238. # Optional package files
  239. touch optional-files-devel
  240. # Build full release
  241. # workaround: force TOKUDB_OK=1
  242. # https://jira.mariadb.org/browse/MDEV-14524?workflowName=MariaDB+v3&stepId=1
  243. %cmake \
  244. -DINSTALL_LAYOUT=RPM \
  245. -DINSTALL_SBINDIR=libexec \
  246. -DINSTALL_SCRIPTDIR=bin \
  247. -DLOG_LOCATION="%{logfile}" \
  248. -DPID_FILE_DIR="%{pidfiledir}" \
  249. -DBUILD_CONFIG=mysql_release \
  250. -DCMAKE_BUILD_TYPE=Release \
  251. -DINSTALL_UNIX_ADDRDIR="/var/lib/mysql/mysql.sock" \
  252. -DCOMPILATION_COMMENT="Vine Linux MariaDB RPM" \
  253. -DDAEMON_NO_PREFIX="%{name}" \
  254. -DWITH_PIC="ON" \
  255. -DWITH_EMBEDDED_SERVER="ON" \
  256. -DWITH_LOCALES="yes" \
  257. -DWITH_PCRE="system" \
  258. -DWITH_SSL="system" \
  259. -DWITH_ZLIB="system" \
  260. -DWITH_UNIT_TESTS="no" \
  261. -DWITH_SEQUENCE_STORAGE_ENGINE="ON" \
  262. -DWITH_XTRADB_STORAGE_ENGINE="ON" \
  263. -DWITHOUT_MROONGA_STORAGE_ENGINE="yes" \
  264. -DWITH_JEMALLOC="yes" \
  265. %if %{without onigmo}
  266. -DGRN_WITH_ONIGMO="no"
  267. %endif
  268. echo BEGIN_NORMAL_CONFIG ; grep -E '^#define' %{_vpath_builddir}/include/config.h ; echo END_NORMAL_CONFIG
  269. %cmake_build
  270. pushd mroonga-%{mroonga_version}
  271. autoreconf -vif
  272. mariadb_source=`realpath -e ../`
  273. mariadb_build=`realpath -e ../%{_vpath_builddir}`
  274. %configure \
  275. --disable-static \
  276. --with-mysql-source=${mariadb_source} \
  277. --with-mysql-build=${mariadb_build} \
  278. --with-mysql-config=${mariadb_build}/scripts/mysql_config \
  279. %{?mroonga_configure_options}
  280. %make_build
  281. popd
  282. %install
  283. rm -rf %{buildroot}
  284. install -d %{buildroot}%{mysqldatadir}/mysql
  285. install -d %{buildroot}%{_infodir}
  286. # Install all binaries
  287. %cmake_install
  288. pushd mroonga-%{mroonga_version}
  289. %make_install
  290. rm %{buildroot}%{_libdir}/mysql/plugin/*.la
  291. rm %{buildroot}%{_libdir}/mysql/plugin/ha_mroonga.so
  292. rm %{buildroot}%{_libdir}/mysql/plugin/ha_mroonga.so.?
  293. mv %{buildroot}%{_libdir}/mysql/plugin/ha_mroonga.so.?.?.? \
  294. %{buildroot}%{_libdir}/mysql/plugin/ha_mroonga.so
  295. mkdir -p %{buildroot}%{_datadir}/mysql
  296. rm -rf %{buildroot}%{_datadir}/mroonga/{deb,rpm}
  297. sed -i -e 's|/usr/share/mroonga/|/usr/share/mysql/mroonga/|' %{buildroot}%{_datadir}/mroonga/{install,uninstall}.sql
  298. mv %{buildroot}%{_datadir}/mroonga %{buildroot}%{_datadir}/mysql/mroonga
  299. popd
  300. rm -rf mroonga-doc
  301. mv %{buildroot}%{_datadir}/doc/mroonga/ mroonga-doc/
  302. %if %{with systemd}
  303. install -d %{buildroot}%{_libexecdir}
  304. pushd %{_vpath_builddir}
  305. rm -rf %{buildroot}/usr/lib/systemd/system
  306. # install systemd unit files and scripts for handling server startup
  307. install -D -p -m 644 scripts/mysql.service %{buildroot}%{_unitdir}/%{daemon_name}.service
  308. install -D -p -m 644 scripts/mysql@.service %{buildroot}%{_unitdir}/%{daemon_name}.service
  309. # Remove the upstream version
  310. rm -f %{buildroot}%{_tmpfilesdir}/tmpfiles.conf
  311. # Install downstream version
  312. install -D -p -m 0644 scripts/mysql.tmpfiles.d %{buildroot}%{_tmpfilesdir}/%{name}.conf
  313. # helper scripts for service starting
  314. install -p -m 755 scripts/mysql-prepare-db-dir %{buildroot}%{_libexecdir}/mysql-prepare-db-dir
  315. install -p -m 755 scripts/mysql-check-socket %{buildroot}%{_libexecdir}/mysql-check-socket
  316. install -p -m 755 scripts/mysql-check-upgrade %{buildroot}%{_libexecdir}/mysql-check-upgrade
  317. install -p -m 644 scripts/mysql-scripts-common %{buildroot}%{_libexecdir}/mysql-scripts-common
  318. popd
  319. jemalloc_file=`ls %{_libdir}/libjemalloc.so.* | head -n 1`
  320. if [ -z "$jemalloc_file" -o ! -x "$jemalloc_file" ]; then
  321. echo "jemalloc not found."
  322. exit 1
  323. fi
  324. mkdir -p %{buildroot}%{_unitdir}/mariadb.service.d
  325. cat <<EOF > %{buildroot}%{_unitdir}/mariadb.service.d/jemalloc.conf
  326. [Service]
  327. Environment="LD_PRELOAD=$jemalloc_file"
  328. EOF
  329. rm -f %{buildroot}%{_sysconfdir}/init.d/*
  330. rm -f %{buildroot}%{_libexecdir}/rcmysql
  331. %else
  332. install -m755 %{SOURCE1001} %{buildroot}%{_sysconfdir}/init.d/mysql
  333. mkdir -p %{buildroot}%{pidfiledir}
  334. # drop systemd files.
  335. rm -rf %{buildroot}%{_sysconfdir}/systemd
  336. %endif
  337. # Logfile creation
  338. mkdir -p %{buildroot}%{logfiledir}
  339. chmod 0750 %{buildroot}%{logfiledir}
  340. #touch %{buildroot}%{logfile}
  341. # for compatibility with upstream RPMs, create mysqld symlink in sbin
  342. mkdir -p %{buildroot}%{_sbindir}
  343. ln -s ../libexec/mysqld %{buildroot}%{_sbindir}/mysqld
  344. ln -s ../libexec/mariadbd %{buildroot}%{_sbindir}/mariadbd
  345. mkdir -p %{buildroot}%{_localstatedir}/run
  346. install -m 0644 Docs/mysql.info %{buildroot}%{_infodir}
  347. rm -rf ./doc
  348. mv -f %{buildroot}%{_docdir} ./
  349. rm doc/README-wsrep
  350. %if %{with source}
  351. mkdir -p %{buildroot}%{_datadir}/%{name}-source
  352. pushd %{buildroot}%{_datadir}/%{name}-source
  353. tar zxf %{SOURCE0}
  354. find %{buildroot}%{_datadir}/%{name}-source -type f -exec chmod ugo-x {} \;
  355. popd
  356. %endif
  357. install -d %{buildroot}%{_sysconfdir}/rpm
  358. sed -e 's/@BASEVERSION@/%{mariadb_base_version}/' -e 's/@VERSION@/%{version}/' -e 's/@RELEASE@/%{release}/' < %{SOURCE1000} > %{buildroot}%{_sysconfdir}/rpm/macros.mariadb
  359. rm -f %{buildroot}%{_mandir}/man1/mysql_fix_privilege_tables.1*
  360. rm -f %{buildroot}%{_mandir}/man8/mysqlmanager.8*
  361. rm -f %{buildroot}%{_sysconfdir}/my.cnf
  362. rm -f %{buildroot}%{_sysconfdir}/my.cnf.d/client.cnf
  363. rm -f %{buildroot}%{_libdir}/libmysqlclient*.so*
  364. rm -f %{buildroot}%{_libdir}/mysql/plugin/daemon_example.ini
  365. # install files for galera cluster.
  366. install -m755 ./scripts/galera_new_cluster.sh %{buildroot}%{_bindir}/galera_new_cluster
  367. install -m755 ./scripts/galera_recovery.sh %{buildroot}%{_bindir}/galera_recovery
  368. perl -pi -e 's|^wsrep_provider=.*$|wsrep_provider=%{_libdir}/galera/libgalera_smm.so|' %{buildroot}%{_datadir}/mysql/wsrep.cnf
  369. perl -pi -e 's|^wsrep_notify_cmd=.*$|#wsrep_notify_cmd=%{_datadir}/mysql/wsrep_notify|' %{buildroot}%{_datadir}/mysql/wsrep.cnf
  370. install -m644 %{buildroot}%{_datadir}/mysql/wsrep.cnf %{buildroot}%{_sysconfdir}/my.cnf.d/galera.cnf
  371. # force linking statically.
  372. perl -pi -e 's,-lmariadb,%{_libdir}/libmariadbclient.a,' %{buildroot}%{_bindir}/mysql_config
  373. perl -pi -e 's,-lmariadb,%{_libdir}/libmariadbclient.a,' %{buildroot}%{_datadir}/pkgconfig/mariadb.pc
  374. # install pam_user_map.so to /lib64/security for 64bit architectures
  375. %ifarch x86_64
  376. if [ ! -e %{buildroot}/%{_lib}/security/pam_user_map.so ]; then
  377. mkdir -p %{buildroot}/%{_lib}/security
  378. mv %{buildroot}/lib/security/pam_user_map.so %{buildroot}/%{_lib}/security/
  379. fi
  380. %endif
  381. # drop client library
  382. rm -f %{buildroot}%{_libdir}/libmariadb.so*
  383. rm -f %{buildroot}%{_prefix}/lib/pkgconfig/libmariadb.pc
  384. rm -f %{buildroot}%{_prefix}/lib64/pkgconfig/libmariadb.pc
  385. ##############################################################################
  386. %pre server
  387. # Create a MySQL user and group. Do not report any problems if it already
  388. # exists.
  389. datadir=/var/lib/mysql
  390. groupadd -r mysql 2> /dev/null || true
  391. useradd -M -r -d $datadir -s /bin/bash -c "MySQL server" -g mysql mysql 2> /dev/null || true
  392. # The user may already exist, make sure it has the proper group nevertheless (BUG#12823)
  393. usermod -g mysql mysql 2> /dev/null || true
  394. # upgrade from mariadb-server <= 10.6.4-1
  395. if [ ! -L %{_sbindir}/mysqld ]; then
  396. rm -f %{_sbindir}/mysqld
  397. fi
  398. if [ ! -L %{_sbindir}/mariadbd ]; then
  399. rm -f %{_sbindir}/mariadbd
  400. fi
  401. %post server
  402. # Make MySQL start/shutdown automatically when the machine does it.
  403. if [ $1 = 1 ] ; then
  404. %if %{with systemd}
  405. %systemd_post %{daemon_name}.service
  406. %else
  407. if [ -x /sbin/chkconfig ] ; then
  408. /sbin/chkconfig --add mysql
  409. fi
  410. %endif
  411. basedir=`/usr/bin/my_print_defaults --mysqld|sed -ne 's/^--basedir=//p'|tail -1`
  412. if [ -z "$basedir" ] ; then
  413. basedir=/usr
  414. fi
  415. datadir=`/usr/bin/my_print_defaults --mysqld|sed -ne 's/^--datadir=//p'|tail -1`
  416. if [ -z "$datadir" ] ; then
  417. datadir=/var/lib/mysql
  418. else
  419. # datadir may be relative to a basedir!
  420. if ! expr $datadir : / > /dev/null; then
  421. datadir=$basedir/$datadir
  422. fi
  423. fi
  424. tmpdir=`/usr/bin/my_print_defaults --mysqld|sed -ne 's/^--datadir=//p'|tail -1`
  425. if [ -z "$datadir" ] ; then
  426. datadir=/var/lib/mysql
  427. else
  428. # datadir may be relative to a basedir!
  429. if ! expr $datadir : / > /dev/null; then
  430. datadir=$basedir/$datadir
  431. fi
  432. fi
  433. # Change permissions so that the user that will run the MySQL daemon
  434. # owns all database files.
  435. chown -R mysql:mysql $datadir
  436. if [ ! -e $datadir/mysql ]; then
  437. # Create data directory
  438. mkdir -p $datadir/{mysql,test}
  439. chown -R mysql:mysql $datadir
  440. # Initiate databases
  441. /usr/bin/mysql_install_db --rpm --user=mysql
  442. fi
  443. # Change permissions again to fix any new files.
  444. chown -R mysql:mysql $datadir
  445. # Fix permissions for the permission database so that only the user
  446. # can read them.
  447. chmod -R og-rw $datadir/mysql
  448. fi
  449. %preun server
  450. %if %{with systemd}
  451. %systemd_preun %{daemon_name}.service
  452. %else
  453. %endif
  454. if [ $1 = 0 ] ; then
  455. # Stop MySQL before uninstalling it
  456. if [ -x /etc/init.d/mysql ] ; then
  457. /etc/init.d/mysql stop > /dev/null
  458. fi
  459. # Don't start it automatically anymore
  460. if [ -x /sbin/chkconfig ] ; then
  461. /sbin/chkconfig --del mysql
  462. fi
  463. fi
  464. %postun server
  465. %if %{with systemd}
  466. %systemd_postun_with_restart %{daemon_name}.service
  467. %else
  468. if [ $1 -ge 1 ]; then
  469. if [ -x /etc/init.d/mysql ] ; then
  470. # only restart the server if it was alredy running
  471. /etc/init.d/mysql status > /dev/null 2>&1 && \
  472. /etc/init.d/mysql restart
  473. fi
  474. fi
  475. %endif
  476. %pre mroonga
  477. if [ $1 -gt 1 ]; then
  478. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/uninstall.sql || cat <<EOF
  479. An error occured when to unregister plugin.
  480. Please run a command below:
  481. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/uninstall.sql
  482. EOF
  483. fi
  484. %post mroonga
  485. if [ $1 -eq 1 ] ; then
  486. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/install.sql || cat <<EOF
  487. An error occured when to register plugin.
  488. Please run a command below:
  489. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/install.sql
  490. EOF
  491. fi
  492. %postun mroonga
  493. if [ $1 -gt 0 ] ; then
  494. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/install.sql || cat <<EOF
  495. An error occured when to register plugin.
  496. Please run a command below:
  497. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/install.sql
  498. EOF
  499. fi
  500. %files server
  501. %defattr(-,root,root)
  502. %{!?_licensedir:%global license %%doc}
  503. %license COPYING*
  504. %doc doc/*
  505. %doc %{_infodir}/mysql.info*
  506. %doc %{_mandir}/man1/aria_*.1*
  507. %doc %{_mandir}/man1/innochecksum.1*
  508. %doc %{_mandir}/man1/mariabackup.1*
  509. %doc %{_mandir}/man1/mariadb-backup.1*
  510. %doc %{_mandir}/man1/mariadb-convert-table-format.1*
  511. %doc %{_mandir}/man1/mariadb-conv.1*
  512. %doc %{_mandir}/man1/mariadb-dumpslow.1*
  513. %doc %{_mandir}/man1/mariadb-fix-extensions.1*
  514. %doc %{_mandir}/man1/mariadb-hotcopy.1*
  515. %doc %{_mandir}/man1/mariadb-install-db.1*
  516. %doc %{_mandir}/man1/mariadb-ldb.1*
  517. %doc %{_mandir}/man1/mariadb-secure-installation.1*
  518. %doc %{_mandir}/man1/mariadb-service-convert.1*
  519. %doc %{_mandir}/man1/mariadb-setpermission.1*
  520. %doc %{_mandir}/man1/mariadb-tzinfo-to-sql.1*
  521. %doc %{_mandir}/man1/mariadb-upgrade.1*
  522. %doc %{_mandir}/man1/mariadbd-multi.1*
  523. %doc %{_mandir}/man1/mariadbd-safe-helper.1*
  524. %doc %{_mandir}/man1/mariadbd-safe.1*
  525. %doc %{_mandir}/man1/mbstream.1*
  526. %doc %{_mandir}/man1/my_print_defaults.1*
  527. %doc %{_mandir}/man1/my_safe_process.1*
  528. %doc %{_mandir}/man1/myisam_ftdump.1*
  529. %doc %{_mandir}/man1/myisamchk.1*
  530. %doc %{_mandir}/man1/myisamlog.1*
  531. %doc %{_mandir}/man1/myisampack.1*
  532. %doc %{_mandir}/man1/myrocks_hotbackup.1*
  533. %doc %{_mandir}/man1/mysql_convert_table_format.1*
  534. %doc %{_mandir}/man1/mysql_fix_extensions.1*
  535. %doc %{_mandir}/man1/mysqld_multi.1*
  536. %doc %{_mandir}/man1/mysqld_safe.1*
  537. %doc %{_mandir}/man1/mysqld_safe_helper.1*
  538. %doc %{_mandir}/man1/mysqldumpslow.1*
  539. %doc %{_mandir}/man1/mysql_install_db.1*
  540. %doc %{_mandir}/man1/mysql_ldb.1*
  541. %doc %{_mandir}/man1/mysql_secure_installation.1*
  542. %doc %{_mandir}/man1/mysql_setpermission.1*
  543. %doc %{_mandir}/man1/mysql_upgrade.1*
  544. %doc %{_mandir}/man1/mysqlhotcopy.1*
  545. %doc %{_mandir}/man1/mysql.server.1*
  546. %doc %{_mandir}/man1/mysqltest.1*
  547. %doc %{_mandir}/man1/mysql_tzinfo_to_sql.1*
  548. %doc %{_mandir}/man1/perror.1*
  549. %doc %{_mandir}/man1/replace.1*
  550. %doc %{_mandir}/man1/resolve_stack_dump.1*
  551. %doc %{_mandir}/man1/resolveip.1*
  552. %doc %{_mandir}/man1/wsrep_sst_*.1*
  553. %doc %{_mandir}/man8/mysqld.8*
  554. %doc %{_mandir}/man8/mariadbd.8*
  555. %{_bindir}/aria_*
  556. %{_bindir}/innochecksum
  557. %{_bindir}/mariabackup
  558. %{_bindir}/mariadb-backup
  559. %{_bindir}/mariadb-conv
  560. %{_bindir}/mariadb-convert-table-format
  561. %{_bindir}/mariadb-dumpslow
  562. %{_bindir}/mariadb-fix-extensions
  563. %{_bindir}/mariadb-hotcopy
  564. %{_bindir}/mariadb-install-db
  565. %{_bindir}/mariadb-secure-installation
  566. %{_bindir}/mariadb-setpermission
  567. %{_bindir}/mariadb-tzinfo-to-sql
  568. %{_bindir}/mariadb-upgrade
  569. %{_bindir}/mariadbd-multi
  570. %{_bindir}/mariadbd-safe
  571. %{_bindir}/mariadbd-safe-helper
  572. %{_bindir}/mbstream
  573. %{_bindir}/my_print_defaults
  574. %{_bindir}/myisam_ftdump
  575. %{_bindir}/myisamchk
  576. %{_bindir}/myisamlog
  577. %{_bindir}/myisampack
  578. %{_bindir}/mysql_convert_table_format
  579. %{_bindir}/mysql_fix_extensions
  580. %{_bindir}/mysql_install_db
  581. %{_bindir}/mysql_secure_installation
  582. %{_bindir}/mysql_setpermission
  583. %{_bindir}/mysql_tzinfo_to_sql
  584. %{_bindir}/mysql_upgrade
  585. %{_bindir}/mysqld_multi
  586. %{_bindir}/mysqld_safe
  587. %{_bindir}/mysqld_safe_helper
  588. %{_bindir}/mysqldumpslow
  589. %{_bindir}/mysqlhotcopy
  590. %{_bindir}/mysqltest
  591. %{_bindir}/perror
  592. %{_bindir}/replace
  593. %{_bindir}/resolve_stack_dump
  594. %{_bindir}/resolveip
  595. %{_bindir}/wsrep*
  596. %{_sbindir}/mariadbd
  597. %{_sbindir}/mysqld
  598. %{_libexecdir}/*
  599. %dir %{_libdir}/mysql
  600. %dir %{_libdir}/mysql/plugin
  601. %attr(0700,mysql,root) %dir %{_libdir}/mysql/plugin/auth_pam_tool_dir
  602. %attr(4755,root,root) %{_libdir}/mysql/plugin/auth_pam_tool_dir/auth_pam_tool
  603. %{_libdir}/mysql/plugin/*.so
  604. /%{_lib}/security/pam_user_map.so
  605. %exclude %{_libdir}/mysql/plugin/ha_connect.so
  606. %exclude %{_libdir}/mysql/plugin/ha_mroonga.so
  607. %exclude %{_libdir}/mysql/plugin/provider_lz4.so
  608. %exclude %{_datadir}/mysql/mroonga
  609. #exclude %{_datadir}/mysql/systemd/use_galera_new_cluster.conf
  610. %attr(0750,mysql,mysql) %dir %{logfiledir}
  611. %dir %{_sysconfdir}/my.cnf.d
  612. %config(noreplace) %{_sysconfdir}/my.cnf.d/enable_encryption.preset
  613. %config(noreplace) %{_sysconfdir}/my.cnf.d/server.cnf
  614. %config(noreplace) %{_sysconfdir}/my.cnf.d/spider.cnf
  615. %config(noreplace) %{_sysconfdir}/security/user_map.conf
  616. %config(noreplace,missingok) %{_sysconfdir}/logrotate.d/mariadb
  617. %if %{with systemd}
  618. %{_bindir}/mariadb-service-convert
  619. %{_unitdir}/*.service
  620. %{_tmpfilesdir}/%{name}.conf
  621. %dir %{_unitdir}/mariadb.service.d
  622. %{_sysusersdir}/%{name}.conf
  623. %else
  624. %{_sysconfdir}/init.d/mysql
  625. %attr(0755,mysql,mysql) %dir %{pidfiledir}
  626. %endif
  627. %{_datadir}/mysql
  628. %attr(755, mysql, mysql) %dir %{mysqldatadir}
  629. %ifarch x86_64
  630. %{_bindir}/mariadb-ldb
  631. %{_bindir}/myrocks_hotbackup
  632. %{_bindir}/mysql_ldb
  633. %{_bindir}/sst_dump
  634. %endif
  635. %if %{with systemd}
  636. %files server-jemalloc
  637. %{_unitdir}/mariadb.service.d/jemalloc.conf
  638. %endif
  639. %files mroonga
  640. %defattr(-, root, root)
  641. %{!?_licensedir:%global license %%doc}
  642. %license mroonga-%{mroonga_version}/COPYING
  643. %doc mroonga-doc/*
  644. %{_libdir}/mysql/plugin/ha_mroonga.so
  645. %{_datadir}/mysql/mroonga
  646. %files connect
  647. %defattr(-, root, root)
  648. %{_libdir}/mysql/plugin/ha_connect.so
  649. %files galera
  650. %defattr(-, root, root)
  651. %doc Docs/README-wsrep
  652. %doc %{_mandir}/man1/galera_new_cluster.1*
  653. %doc %{_mandir}/man1/galera_recovery.1*
  654. %dir %{_sysconfdir}/my.cnf.d
  655. %config(noreplace) %{_sysconfdir}/my.cnf.d/galera.cnf
  656. %{_bindir}/galera_new_cluster
  657. %{_bindir}/galera_recovery
  658. %if %{with systemd}
  659. %{_datadir}/mysql/systemd/use_galera_new_cluster.conf
  660. %endif
  661. %files lz4
  662. %{_libdir}/mysql/plugin/provider_lz4.so
  663. %dir %{_sysconfdir}/my.cnf.d
  664. %{_sysconfdir}/my.cnf.d/provider_lz4.cnf
  665. %files client
  666. %defattr(-, root, root)
  667. %{!?_licensedir:%global license %%doc}
  668. %license COPYING*
  669. %config(noreplace) %{_sysconfdir}/my.cnf.d/mysql-clients.cnf
  670. %{_bindir}/mariadb
  671. %{_bindir}/mariadb-access
  672. %{_bindir}/mariadb-admin
  673. %{_bindir}/mariadb-binlog
  674. %{_bindir}/mariadb-check
  675. %{_bindir}/mariadb-dump
  676. %{_bindir}/mariadb-find-rows
  677. %{_bindir}/mariadb-import
  678. %{_bindir}/mariadb-plugin
  679. %{_bindir}/mariadb-show
  680. %{_bindir}/mariadb-slap
  681. %{_bindir}/mariadb-waitpid
  682. %{_bindir}/msql2mysql
  683. %{_bindir}/mysql
  684. %{_bindir}/mysql_find_rows
  685. %{_bindir}/mysql_plugin
  686. %{_bindir}/mysql_waitpid
  687. %{_bindir}/mysqlaccess
  688. %{_bindir}/mysqladmin
  689. %{_bindir}/mysqlbinlog
  690. %{_bindir}/mysqlcheck
  691. %{_bindir}/mysqldump
  692. %{_bindir}/mysqlimport
  693. %{_bindir}/mysqlshow
  694. %{_bindir}/mysqlslap
  695. %{_bindir}/mytop
  696. %doc %{_mandir}/man1/mariadb.1*
  697. %doc %{_mandir}/man1/mariadb-access.1*
  698. %doc %{_mandir}/man1/mariadb-admin.1*
  699. %doc %{_mandir}/man1/mariadb-binlog.1*
  700. %doc %{_mandir}/man1/mariadb-check.1*
  701. %doc %{_mandir}/man1/mariadb-dump.1*
  702. %doc %{_mandir}/man1/mariadb-find-rows.1*
  703. %doc %{_mandir}/man1/mariadb-import.1*
  704. %doc %{_mandir}/man1/mariadb-plugin.1*
  705. %doc %{_mandir}/man1/mariadb-show.1*
  706. %doc %{_mandir}/man1/mariadb-slap.1*
  707. %doc %{_mandir}/man1/mariadb-waitpid.1*
  708. %doc %{_mandir}/man1/msql2mysql.1*
  709. %doc %{_mandir}/man1/mysql.1*
  710. %doc %{_mandir}/man1/mysql_find_rows.1*
  711. %doc %{_mandir}/man1/mysql_waitpid.1*
  712. %doc %{_mandir}/man1/mysqlaccess.1*
  713. %doc %{_mandir}/man1/mysqladmin.1*
  714. %doc %{_mandir}/man1/mysqlbinlog.1*
  715. %doc %{_mandir}/man1/mysqlcheck.1*
  716. %doc %{_mandir}/man1/mysqldump.1*
  717. %doc %{_mandir}/man1/mysqlimport.1*
  718. %doc %{_mandir}/man1/mysql_plugin.1*
  719. %doc %{_mandir}/man1/mysqlshow.1*
  720. %doc %{_mandir}/man1/mysqlslap.1*
  721. %doc %{_mandir}/man1/mytop.1*
  722. %files devel
  723. %defattr(-, root, root)
  724. %doc %{_mandir}/man1/mysql_config.1*
  725. %{_bindir}/mariadb-config
  726. %{_bindir}/mariadb_config
  727. %{_bindir}/mysql_config
  728. %{_includedir}/mysql
  729. %{_datadir}/aclocal/mysql.m4
  730. %{_libdir}/pkgconfig/mariadb.pc
  731. %{_libdir}/*.so
  732. %{_sysconfdir}/rpm/*
  733. %{_bindir}/mariadb-embedded
  734. %{_bindir}/mysql_embedded
  735. %doc %{_mandir}/man1/mariadb_config.1*
  736. %doc %{_mandir}/man1/mariadb-embedded.1*
  737. %doc %{_mandir}/man1/mysql_embedded.1*
  738. %doc %{_mandir}/man3/*
  739. %files static
  740. %defattr(-,root,root)
  741. %{_libdir}/lib*.a
  742. %if %{with source}
  743. %files source
  744. %defattr(-, root, root)
  745. %{_datadir}/mariadb-source
  746. %endif
  747. %files test
  748. %defattr(-, root, root)
  749. %attr(-, root, root) %{_datadir}/mysql-test
  750. %{_bindir}/mariadb-client-test
  751. %{_bindir}/mariadb-client-test-embedded
  752. %{_bindir}/mariadb-test
  753. %{_bindir}/mariadb-test-embedded
  754. %{_bindir}/mysql_client_test
  755. %{_bindir}/mysql_client_test_embedded
  756. %{_bindir}/mysqltest_embedded
  757. %{_bindir}/test-connect-t
  758. %doc %{_mandir}/man1/mariadb-client-test-embedded.1*
  759. %doc %{_mandir}/man1/mariadb-client-test.1*
  760. %doc %{_mandir}/man1/mariadb-test-embedded.1*
  761. %doc %{_mandir}/man1/mariadb-test.1*
  762. %doc %{_mandir}/man1/mysql_client_test.1*
  763. %doc %{_mandir}/man1/mysql-stress-test.pl.1*
  764. %doc %{_mandir}/man1/mysql-test-run.pl.1*
  765. %doc %{_mandir}/man1/mysql_client_test_embedded.1*
  766. %doc %{_mandir}/man1/mysqltest_embedded.1*
  767. %files embedded
  768. %defattr(-,root,root)
  769. %{_libdir}/libmariadbd.so.*
  770. %changelog
  771. * Fri Aug 16 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.11.9-1
  772. - new upstream release.
  773. * Wed Jun 19 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.11.8-1
  774. - new upstream release.
  775. - updated patch1000.
  776. * Tue Feb 13 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.11.7-1
  777. - new upstream release.
  778. - updated patch1000.
  779. * Wed Nov 15 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.11.6-1
  780. - new upstream release.
  781. - updated patch1000.
  782. * Tue Aug 15 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.11.5-1
  783. - new upstream release.
  784. - updated patch1000.
  785. * Wed Aug 02 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.11.4-2
  786. - updated patch1000.
  787. * Wed Jun 07 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.11.4-1
  788. - new upstream release.
  789. - updated patch1000.
  790. * Tue Feb 07 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.6.12-1
  791. - new upstream release.
  792. - updated patch1000.
  793. * Tue Nov 08 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.6.11-1
  794. - new upstream release.
  795. - updated patch1000.
  796. * Tue Aug 16 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.6.9-1
  797. - new upstream release.
  798. - updated patch1000.
  799. * Sat May 21 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.6.8-1
  800. - new upstream release.
  801. - updated patch1000.
  802. * Sun Feb 13 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.6.7-1
  803. - new upstream release.
  804. - updated patch1000.
  805. * Tue Dec 28 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.6.5-6
  806. - updated patch1000.
  807. * Tue Nov 30 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.6.5-5
  808. - updated patch1000.
  809. * Tue Nov 09 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.6.5-4
  810. - new upstream release.
  811. - updated patch1000.
  812. - forgot to reduce %%release.
  813. * Wed Oct 06 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.6.4-4
  814. - updated patch1000.
  815. - rebuilt with openssl-3.0.0.
  816. * Tue Aug 31 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.6.4-3
  817. - updated patch1000.
  818. - dropped Patch1001: merged into mroonga upstream.
  819. * Sun Aug 29 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.6.4-2
  820. - fixed systemd-unit.
  821. - fixed locations of pidfile and logfile.
  822. * Sat Aug 07 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.6.4-1
  823. - new upstream release.
  824. - updated patch1000.
  825. - added Patch1001 to build mroonga with mariadb-10.6.
  826. * Tue Jun 29 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.5.11-1
  827. - new upstream release.
  828. - updated patch1000.
  829. * Sat May 08 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.5.10-1
  830. - new upstream release.
  831. - updated patch1000.
  832. - dropped Patch1001: fixed in upstream.
  833. * Tue Feb 23 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.5.9-1
  834. - new upstream release.
  835. - updated patch1000.
  836. - dropped Patch2000: fixed in upstream.
  837. - added Patch1001 to fix FTBFS.
  838. * Thu Nov 12 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.5.8-1
  839. - new upstream release.
  840. - updated patch1000.
  841. - added Patch2000 to fix failure on starting mariadbd.
  842. * Wed Nov 04 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.5.7-1
  843. - new upstream release.
  844. - replaced patch1000 to update Groonga to v10.0.8.
  845. * Thu Oct 08 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.5.6-1
  846. - new upstream release.
  847. - replaced patch1000 to update Groonga to v10.0.7.
  848. - dropped Patch1001: fixed in upstream.
  849. * Wed Aug 12 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.5.5-1
  850. - new upstream release.
  851. - replaced patch1000 to update Groonga to v10.0.5.
  852. - added Patch1001 to fix FTBFS.
  853. - disabled tokudb as default.
  854. * Thu May 14 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.4.13-1
  855. - new upstream release.
  856. - replaced patch1000 to update Groonga to v10.0.2.
  857. - added systemd support (disabled as default).
  858. * Mon Feb 10 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.4.12-1
  859. - new upstream release.
  860. - replaced patch1000 to update Groonga to v9.1.2.
  861. * Wed Dec 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.4.11-1
  862. - new upstream release.
  863. - replaced patch1000 to update Groonga to v9.1.0.
  864. * Sat Nov 09 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.4.10-1
  865. - new upstream release.
  866. * Wed Nov 06 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.4.9-1
  867. - new upstream release.
  868. - replaced patch1000 to update Groonga to v9.0.9.
  869. * Fri Aug 30 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.4.7-1
  870. - new upstream release.
  871. - replaced patch1000 to update Groonga to v9.0.7.
  872. * Fri May 31 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.3.15-1
  873. - new upstream release.
  874. - replaced patch1000 to update Groonga to v9.0.3.
  875. - added BR:lz4-devel.
  876. * Sun May 05 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.3.14-1
  877. - new upstream release.
  878. - replaced patch1000 to update Groonga to v9.0.2.
  879. - added a subpackage for galera cluster.
  880. - enabled regexp with groonga.
  881. * Thu Jan 31 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.3.12-1
  882. - new upstream release.
  883. - replaced patch1000 to update Groonga to v8.1.1.
  884. * Fri Nov 30 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.3.11-1
  885. - new upstream release.
  886. - replaced patch1000 to update Mroonga to v8.09.
  887. * Mon Nov 05 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.3.10-2
  888. - drop shared client library.
  889. * Mon Nov 05 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.3.10-1
  890. - new upstream release.
  891. - replaced patch1000 to update Mroonga to v8.07.
  892. * Fri Mar 30 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.2.14-1
  893. - new upstream release.
  894. - replaced patch1000 to update Mroonga to v8.01.
  895. * Sat Dec 02 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.2.11-1
  896. - new upstream release.
  897. - replaced patch1000 to update Mroonga to v7.09.
  898. * Sun Jul 16 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.2.7-1
  899. - new upstream release.
  900. - replaced patch1000 to update Mroonga to v7.04.
  901. * Thu May 4 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.23-1
  902. - new upstream release.
  903. - replaced patch1000 to update Mroonga to v7.02.
  904. * Thu Mar 16 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.22-1
  905. - new upstream release.
  906. - replaced patch1000 to update Mroonga to v7.00.
  907. * Wed Dec 21 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.20-1
  908. - new upstream release.
  909. - replaced patch1000 to update Mroonga to v6.11.
  910. * Tue Jul 19 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.16-1
  911. - new upstream release.
  912. - replaced patch1000 to update Mroonga to v6.06.
  913. * Wed May 11 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.14-1
  914. - new upstream release.
  915. - replaced patch1000 to update Mroonga to v6.02.
  916. * Fri Apr 1 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.13-1
  917. - new upstream release.
  918. - replaced patch1000 to update Mroonga to v6.01.
  919. * Tue Mar 15 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.12-1
  920. - new upstream release.
  921. - replaced patch1000 to update Mroonga to git HEAD.
  922. * Sat Jan 30 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.11-1
  923. - new upstream release.
  924. - replaced patch1000 to update Mroonga to v5.12.
  925. * Fri Jan 8 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.10-1
  926. - new upstream release.
  927. - replaced patch1000 to update Mroonga to v5.11.
  928. - moved CONNECT and TokuDB storage engines to subpackages.
  929. * Sun Nov 29 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.9-4
  930. - replaced patch1000 to update Mroonga to git HEAD.
  931. * Sat Nov 28 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.9-3
  932. - replaced patch1000 to update Mroonga to git HEAD.
  933. * Thu Nov 26 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.9-2
  934. - replaced patch1000 to update Mroonga to git HEAD.
  935. * Tue Nov 24 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.9-1
  936. - new upstream release.
  937. - replaced patch1000 to update Mroonga to git HEAD.
  938. * Fri Oct 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.8-3
  939. - added BR:jemalloc-devel.
  940. * Thu Oct 29 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.8-2
  941. - replaced patch1000 to update Mroonga to 5.09.
  942. * Wed Oct 21 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.8-1
  943. - new upstream release.
  944. - replaced patch1000 for MariaDB 10.1.8.
  945. * Fri Oct 9 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.21-3
  946. - replaced patch1000 to update Mroonga to 5.08.
  947. * Mon Aug 31 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.21-2
  948. - replaced patch1000 to update Mroonga to 5.06.
  949. * Mon Aug 10 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.21-1
  950. - new upstream release.
  951. - added patch1000 to update Mroonga from 5.02 to 5.05.
  952. * Tue Jun 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.20-2
  953. - fixed dependencies.
  954. * Fri Jun 19 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.20-1
  955. - new upstream release.
  956. * Sun May 10 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.19-1
  957. - new upstream release.
  958. * Fri May 8 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.18-1
  959. - new upstream release.
  960. * Tue Mar 3 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.17-1
  961. - new upstream release.
  962. * Wed Jan 28 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.16-1
  963. - new upstream release.
  964. * Wed Nov 26 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.15-1
  965. - new upstream release.
  966. - enabled bundled Mroonga.
  967. * Mon Sep 29 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.14-1
  968. - new upstream release.
  969. * Sat May 31 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.11-1
  970. - new upstream release.
  971. * Sun Apr 13 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.10-2
  972. - fixed Conflicts: and Obsoletes:.
  973. * Mon Mar 31 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.10-1
  974. - new upstream release.
  975. * Mon Mar 24 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.9-1
  976. - new upstream release.
  977. * Tue Feb 11 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.8-1
  978. - new upstream release.
  979. * Sat Dec 07 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.6-2
  980. - removed duplicated files.
  981. * Wed Dec 04 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.6-1
  982. - switched to MariaDB.
  983. * Wed Feb 20 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.30-1
  984. - new upstream release.
  985. * Fri Nov 16 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.28-1
  986. - new upstream release.
  987. * Sat Sep 15 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.27-1
  988. - new upstream release.
  989. - added a sub-package "MySQL-source".
  990. - added some macros for rpm.
  991. * Thu Jun 21 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.25-1
  992. - new upstream release.
  993. * Thu May 10 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.24-1
  994. - new upstream release.
  995. * Tue May 01 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.23-1
  996. - new upstream release.
  997. - added "Vendor:" and "Distribution:" tag.
  998. * Tue Aug 23 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.15-1
  999. - new upstream release.
  1000. - removed NDB cluster support.
  1001. * Mon Apr 18 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.56-3
  1002. - Added "BR: zlib-devel" to MySQL-devel.
  1003. * Sun Apr 03 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.56-2
  1004. - Added "BR: openssl-devel" to MySQL-devel.
  1005. * Fri Mar 11 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.56-1
  1006. - new upstream release.
  1007. * Mon Jan 10 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.54-1
  1008. - new upstream release.
  1009. - updated jp-patch.
  1010. - added ssl support.
  1011. * Sat Nov 06 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.52-1
  1012. - new upstream release.
  1013. - replaced '%%__find_requires' to '%%__perl_requires'.
  1014. - updated jp-patch.
  1015. * Fri Oct 29 2010 Shu KONNO <owa@bg.wakwak.com> 5.1.44-3
  1016. - added mysql-5.1.44-lib64.patch (on x86_64)
  1017. - added -fPIC (on x86_64)
  1018. * Sun Oct 17 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.1.44-2
  1019. - made embedded package again
  1020. * Fri Mar 05 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.44-1
  1021. - new upstream release.
  1022. - updated jp-patch.
  1023. * Thu Feb 04 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.43-2
  1024. - VineSeed: rebuilt with new toolchain.
  1025. * Wed Feb 03 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.43-1
  1026. - new upstream release.
  1027. - fixed CVE-2009-4484.
  1028. * Fri Nov 20 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.41-1
  1029. - new upstream release.
  1030. * Thu Nov 19 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.40-2
  1031. - added net-tools to 'Requires'.
  1032. - added groff to 'BuildRequires'.
  1033. - renamed subpackage 'MySQL-shared' to 'libmysqlclient16' (VineSeed only).
  1034. * Tue Nov 10 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.40-1
  1035. - new upstream release.
  1036. * Sat Sep 26 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.39-1
  1037. - new upstream release.
  1038. * Sun Jul 5 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.36-1
  1039. - new upstream release.
  1040. - dropped %%Patch100 (fixed in upstream).
  1041. * Sat Jun 6 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.35-1
  1042. - new upstream release.
  1043. - add %%Patch100 (no longer needed for MySQL-5.1.36 or later).
  1044. * Thu May 21 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.34-1
  1045. - new upstream release.
  1046. - rename 'MySQL-bench' to 'MySQL-test'.
  1047. - update Patch0.
  1048. - change default charset to 'utf8'.
  1049. * Sat Apr 12 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.51a-1
  1050. - new upstream release.
  1051. - update Patch0.
  1052. - add "--with-client-charset=ujis".
  1053. - sync %%files to official RPM.
  1054. - remove MySQL-Max.
  1055. * Thu Dec 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.0.27-0vl7
  1056. - for VineSeed
  1057. * Thu Dec 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.0.27-0vl6
  1058. - move shared library from /usr/lib/ to /usr/lib/mysql/
  1059. - add /etc/ld.so.conf.d/*.conf
  1060. - fix broken libmysqlcient*.la files (or should we remove them permanently?)
  1061. * Sat Jun 16 2007 IWAI, Masaharu <iwai@alib.jp> 5.0.27-0vl5
  1062. - rebuild <BTS:VineLinux:534>
  1063. * Mon Nov 13 2006 NAKAMURA Kenta <kenta@vinelinux.org> 5.0.27-0vl4
  1064. - added -fPIC
  1065. * Mon Oct 30 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.27-0vl3
  1066. - fixed dependency. <BTS:338>
  1067. * Mon Oct 30 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.27-0vl2
  1068. - add %%Patch1. <BTS:320>
  1069. * Sat Oct 28 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.27-0vl1
  1070. - new upstream release.
  1071. * Fri Oct 27 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.26-0vl1
  1072. - new upstream release.
  1073. * Sat Jun 3 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.22-0vl1
  1074. - new upstream release.
  1075. * Sat May 13 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.21-0vl1
  1076. - release++.
  1077. * Wed May 10 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.21-0vl0
  1078. - new upstream release.
  1079. - for VineSeed.
  1080. * Wed Feb 8 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 4.1.16-0vl0
  1081. - new upstream release.
  1082. - replace Patch0 for MySQL-4.1.16.
  1083. * Thu Oct 6 2005 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 4.1.14-0vl0
  1084. - new upstream release.
  1085. - add Patch0.
  1086. * Tue Sep 6 2005 Takeyuki FUJIOKA <fuji@ftserve.net> 4.0.25-0vl0
  1087. - new upstream version
  1088. -- mysql-4.0.25
  1089. * Fri Jan 21 2005 Takeyuki FUJIOKA <fuji@ftserve.net> 4.0.23-0vl0
  1090. - new upstream version
  1091. -- mysql-4.0.23
  1092. * Tue Sep 28 2004 Takeyuki FUJIOKA <fuji@ftserve.net> 4.0.22-0vl0
  1093. - new upstream version
  1094. -- mysql-4.0.22
  1095. * Tue Sep 28 2004 Takeyuki FUJIOKA <fuji@ftserve.net> 4.0.21-0vl1
  1096. - new upstream version
  1097. -- mysql-4.0.21
  1098. * Fri May 21 2004 Satoshi MACHINO <machino@vinelinux.org> 4.0.20-0vl1
  1099. - new upstream version
  1100. -- mysql-4.0.20
  1101. * Tue May 04 2004 Tomoya TAKA <taka@vinelinux.org> 4.0.18-0vl2
  1102. - modify CFLAGS, CXXFLAGS and configure options for alpha
  1103. * Tue Mar 23 2004 Satoshi MACHINO <machino@vinelinux.org> 4.0.18-0vl1
  1104. - Upgraded to MySQL-4
  1105. - added "with-charset=ujis" and "without-readline" to configure (vineseed-plus-02150)
  1106. - merged to MySQL Official packages
  1107. -- renamed package "MySQL" to "MySQL-server"
  1108. -- when using gcc, _always_ use CXX=gcc
  1109. -- replaced Copyright with License field (Copyright is obsolete)
  1110. -- added myisam_ftdump to the Server package
  1111. -- marked /etc/logrotate.d/mysql as a config file (BUG 2156)
  1112. -- fixed file permissions (BUG 1672)
  1113. -- removed dependency on MySQL-client from the MySQL-devel subpackage
  1114. -- as it is not really required. (BUG 1610)
  1115. -- Fixed BUG 1162 (removed macro names from the changelog)
  1116. -- Really fixed BUG 998 (disable the checking for installed but
  1117. -- unpackaged files)
  1118. -- Fixed BUG 959 (libmysqld not being compiled properly)
  1119. -- Fixed BUG 998 (RPM build errors): added missing files to the
  1120. -- distribution (mysql_fix_extensions, mysql_tableinfo, mysqldumpslow,
  1121. -- mysql_fix_privilege_tables.1), removed "-n" from install section.
  1122. -- removed the GIF Icon (file was not included in the sources anyway)
  1123. -- removed unused variable shared_lib_version
  1124. -- do not run automake before building the standard binary
  1125. -- (should not be necessary)
  1126. -- add server suffix '-standard' to standard binary (to be in line
  1127. -- with the binary tarball distributions)
  1128. -- allow overriding CC and CXX (required when building
  1129. -- with other compilers)
  1130. * Mon Apr 14 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 3.23.56-0vl5
  1131. - added BuildRequires: automake16
  1132. * Thu Apr 03 2003 Tomoya TAKA <taka@vinelinux.org> 3.23.56-0vl3
  1133. - add '-fPIC -DPIC' to CFLAGS on alpha
  1134. - little fix of spec file
  1135. * Thu Mar 27 2003 Tomoya TAKA <taka@vinelinux.org> 3.23.56-0vl2
  1136. - enable MySQL-shared subpackage for alpha
  1137. - delete 'BuildPrereq: kernel24-headers' for alpha
  1138. - fix shared %files (exclude sparc)
  1139. * Tue Mar 18 2003 Satoshi MACHINO <machino@vinelinux.org> 3.23.56-0vl1
  1140. - new upstream version
  1141. * Sun Mar 9 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.23.55-0vl2
  1142. - fixed devel %files (dropped *.la files)
  1143. * Tue Jan 28 2003 Satoshi MACHINO <machino@vinelinux.org> 3.23.55-0vl1
  1144. - new upstream version
  1145. - fixed document permission
  1146. * Sat Dec 21 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.54a-0vl1
  1147. - new upstream version
  1148. * Sat Oct 19 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.53-0vl2
  1149. - dropped MySQL-Max sub-pakage for sparc/sparc64/alpha
  1150. -- don't work
  1151. * Wed Oct 16 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.53-0vl1
  1152. - new upstream version
  1153. - diseble-assembler in configure on sparc,sparc64,alpha
  1154. * Wed Aug 21 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.52-0vl1
  1155. - new upstream version
  1156. - moved some man files to main package
  1157. - added enable-local-infile in configure
  1158. - changed --with-extra-charsets=all in configure
  1159. * Fri Jun 14 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.51-0vl2
  1160. - fixed changelog
  1161. * Thu Jun 13 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.51-0vl1
  1162. - updated to mysql-3.23.51
  1163. * Fri Mar 15 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.49-0vl2
  1164. - rebuild on zlib-1.1.4(security fix.)
  1165. * Mon Feb 18 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.49-0vl1
  1166. - updated to mysql-2.23.49
  1167. * Tue Feb 12 2002 Tomoya TAKA <taka@vinelinux.org> 3.23.48-0vl2
  1168. - add 'BuildPrereq: kernel24-headers' on alpha
  1169. - remove shared library and max on alpha
  1170. * Tue Feb 12 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.48-0vl1
  1171. - updated to mysql-3.23.48
  1172. * Thu Jan 03 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.47-0vl1
  1173. - updated to mysql-3.23.47
  1174. * Wed Dec 05 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.46-0vl1
  1175. - updated to mysql-3.23.46
  1176. * Thu Nov 29 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.45-0vl1
  1177. - updated to mysql-3.23.45
  1178. * Mon Nov 12 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.44-0vl1
  1179. - updated to mysql-3.23.44
  1180. * Sat Oct 13 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.43-0vl1
  1181. - updated to mysql-3.23.43
  1182. - removed shared library and max on sparc
  1183. * Wed Sep 12 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.42-0vl1
  1184. - updated to mysql-3.23.42
  1185. - changed MYSQL_BUILD_CC: and MYSQL_BUILD_XCC: to -gcc
  1186. * Thu Aug 30 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.41-0vl1
  1187. - updated to mysql-3.23.41
  1188. * Wed Aug 22 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.40-0vl1
  1189. - updated to mysql-3.23.40
  1190. * Tue Jul 10 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.39-0vl1
  1191. - updated to mysql-3.23.39
  1192. * Fri Jun 15 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.38-1vl2
  1193. - added configure --with-charset=ujis
  1194. * Sun May 27 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.38-1vl2
  1195. - used some rpmmacro
  1196. * Fri May 25 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.38-1vl1
  1197. - updated to MySQL-3.23.38
  1198. * Thu Dec 07 2000 Satoshi MACHINO <machino@vinelinux.org> 3.23.28-1vl2
  1199. - removed Bench pakages
  1200. * Tue Dec 05 2000 Satoshi MACHINO <machino@vinelinux.org> 3.23.28-1vl1
  1201. - removed pt_BR locale
  1202. - build on Vine Linux
  1203. - partially used rpmmacros
  1204. - added %clean tag
  1205. * Fri Aug 18 2000 Tim Smith <tim@mysql.com>
  1206. - Added separate libmysql_r directory; now both a threaded
  1207. and non-threaded library is shipped.
  1208. * Tue Sep 28 1999 David Axmark <davida@mysql.com>
  1209. - Added the support-files/my-example.cnf to the docs directory.
  1210. - Removed devel dependency on base since it is about client
  1211. development.
  1212. * Wed Sep 8 1999 David Axmark <davida@mysql.com>
  1213. - Cleaned up some for 3.23.
  1214. * Thu Jul 1 1999 David Axmark <davida@mysql.com>
  1215. - Added support for shared libraries in a separate sub
  1216. package. Original fix by David Fox (dsfox@cogsci.ucsd.edu)
  1217. - The --enable-assembler switch is now automatically disables on
  1218. platforms there assembler code is unavailable. This should allow
  1219. building this RPM on non i386 systems.
  1220. * Mon Feb 22 1999 David Axmark <david@detron.se>
  1221. - Removed unportable cc switches from the spec file. The defaults can
  1222. now be overridden with environment variables. This feature is used
  1223. to compile the official RPM with optimal (but compiler version
  1224. specific) switches.
  1225. - Removed the repetitive description parts for the sub rpms. Maybe add
  1226. again if RPM gets a multiline macro capability.
  1227. - Added support for a pt_BR translation. Translation contributed by
  1228. Jorge Godoy <jorge@bestway.com.br>.
  1229. * Wed Nov 4 1998 David Axmark <david@detron.se>
  1230. - A lot of changes in all the rpm and install scripts. This may even
  1231. be a working RPM :-)
  1232. * Sun Aug 16 1998 David Axmark <david@detron.se>
  1233. - A developers changelog for MySQL is available in the source RPM. And
  1234. there is a history of major user visible changed in the Reference
  1235. Manual. Only RPM specific changes will be documented here.