mariadb-vl.spec 48 KB

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