mariadb-vl.spec 47 KB

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