mariadb-vl.spec 48 KB

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