mariadb-vl.spec 50 KB

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