mariadb-vl.spec 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078
  1. %bcond_with source
  2. %define mysqld_user mysql
  3. %define mysqld_group mysql
  4. %define mysqldatadir /var/lib/mysql
  5. # Working around perl dependency problem
  6. %global __perl_requires %{SOURCE998}
  7. %global __perllib_requires %{SOURCE998}
  8. %define _unpackaged_files_terminate_build 1
  9. %define mariadb_base_version 10.1
  10. %define mariadb_version 10.2.11
  11. %define mroonga_version 7.09
  12. %define client_version 18
  13. Vendor: Project Vine
  14. Distribution: Vine Linux
  15. Packager: tomop
  16. Name: mariadb
  17. Summary: MariaDB: a very fast and robust SQL database server
  18. Version: %{mariadb_version}
  19. Release: 1%{_dist_release}
  20. Group: Applications/Databases
  21. License: GPL2
  22. URL: http://www.mariadb.org/
  23. Source: mariadb-%{version}.tar.gz
  24. # Don't depend on lib::mtr*
  25. Source998: perl-requires.sh
  26. Source1000: macros.mariadb.in
  27. # replace mroonga to the newest version.
  28. #patch1000: mariadb-%{mariadb_version}-mroonga-master.patch
  29. Patch1000: mariadb-%{mariadb_version}-mroonga-v%{mroonga_version}.patch
  30. #Patch1001: mroonga_for_mariadb-10.2.patch
  31. #
  32. #Patch2000: mysql-srv_buf_size.patch
  33. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  34. BuildRequires: bison, cmake, gcc-c++, groff
  35. BuildRequires: libaio-devel, libboost-devel, libevent-devel, libxml2-devel
  36. BuildRequires: ncurses-devel, perl, openssl-devel, readline-devel
  37. BuildRequires: jemalloc-devel
  38. BuildRequires: unixODBC-devel
  39. BuildRequires: zlib-devel
  40. BuildRequires: mecab-devel
  41. Requires: fileutils sh-utils
  42. Provides: msqlormysql MySQL mysql
  43. Obsoletes: mysql MySQL5
  44. # From the manual
  45. %description
  46. MariaDB: a very fast and robust SQL database server
  47. It is GPL v2 licensed, which means you can use the it free of charge under the
  48. conditions of the GNU General Public License Version 2 (http://www.gnu.org/licenses/).
  49. MariaDB documentation can be found at http://kb.askmonty.org/
  50. MariaDB bug reports should be submitted through https://mariadb.atlassian.net/
  51. %package server
  52. Version: %{mariadb_version}
  53. Release: %{release}
  54. Summary: MariaDB: a very fast and robust SQL database server
  55. Group: Applications/Databases
  56. Requires: fileutils sh-utils net-tools mariadb-common
  57. Requires(post): mariadb-common
  58. Provides: mysql-server mysql MySQL MySQL-server mariadbserver-%{mariadb_base_version}
  59. Obsoletes: MySQL mysql mysql-server
  60. Obsoletes: MySQL-server < 5.6.0
  61. %description server
  62. MariaDB: a very fast and robust SQL database server
  63. It is GPL v2 licensed, which means you can use the it free of charge under the
  64. conditions of the GNU General Public License Version 2 (http://www.gnu.org/licenses/).
  65. MariaDB documentation can be found at http://kb.askmonty.org/
  66. MariaDB bug reports should be submitted through https://mariadb.atlassian.net/
  67. %package mroonga
  68. ##Version: %{mroonga_version}
  69. Version: %{mariadb_version}
  70. Summary: A fast fulltext searchable storage engine for MariaDB.
  71. Group: Applications/Databases
  72. Requires(pre): mariadb-server = %{mariadb_version}-%{release}
  73. Requires: mariadb-server = %{mariadb_version}-%{release}
  74. Obsoletes: MySQL-mroonga < 4.02
  75. Obsoletes: mariadb-mroonga < 4.07
  76. Obsoletes: mariadb-mroonga-doc < 4.07
  77. %description mroonga
  78. Mroonga is a fast fulltext searchable storage plugin for MariaDB.
  79. It is based on groonga that is a fast fulltext search engine and
  80. column store. Groonga is good at real-time update.
  81. %package connect
  82. Version: %{mariadb_version}
  83. Summary: CONNECT storage engine for MariaDB.
  84. Group: Applications/Databases
  85. Requires(pre): mariadb-server = %{mariadb_version}-%{release}
  86. Requires: mariadb-server = %{mariadb_version}-%{release}
  87. %description connect
  88. The CONNECT storage engine enables MariaDB to access external
  89. local or remote data (MED). This is done by defining tables
  90. based on different data types, in particular files in various
  91. formats, data extracted from other DBMS or products (such as Excel)
  92. via ODBC, or data retrieved from the environment (for example
  93. DIR, WMI, and MAC tables).
  94. This storage engine supports table partitioning, MariaDB virtual
  95. columns and also permits defining special columns such as ROWID,
  96. FILEID, and SERVID.
  97. %ifarch x86_64
  98. %package tokudb
  99. Version: %{mariadb_version}
  100. Summary: TokuDB storage engine for MariaDB.
  101. Group: Applications/Databases
  102. Requires(pre): mariadb-server = %{mariadb_version}-%{release}
  103. Requires: mariadb-server = %{mariadb_version}-%{release}
  104. %description tokudb
  105. The TokuDB storage engine is for use in high-performance and
  106. write-intensive environments, offering increased compression and
  107. better performance.
  108. %endif
  109. %package client
  110. Version: %{mariadb_version}
  111. Summary: MariaDB - Client
  112. Group: Applications/Databases
  113. Obsoletes: mysql-client MySQL-client < 5.6.0
  114. Provides: mysql-client MySQL-client mariadbclient-%{mariadb_base_version}
  115. %description client
  116. This package contains the standard MariaDB clients and administration tools.
  117. %package devel
  118. Version: %{mariadb_version}
  119. Summary: MariaDB - Development libraries and headers
  120. Group: Development/Libraries
  121. Requires: %{name}-static, openssl-devel, zlib-devel
  122. Conflicts: MySQL-devel < 5.6.0
  123. Conflicts: libmysqlclient-devel
  124. %description devel
  125. This package contains the development libraries and headers to develop
  126. MariaDB server components (e.g. plugins or embedded applications).
  127. %package static
  128. Version: %{mariadb_version}
  129. Summary: MariaDB - static libraries
  130. Group: Development/Libraries
  131. Requires: %{name}-devel
  132. %description static
  133. This package provides static libraries of MariaDB.
  134. %if %{with source}
  135. %package source
  136. Version: %{mariadb_version}
  137. Summary: MariaDB - Source
  138. Group: Development/Libraries
  139. Requires: mariadb-devel = %{version}-%{release}
  140. Obsoletes: MySQL-source < 5.6.0
  141. AutoReqProv: no
  142. %description source
  143. This package contains the sources files of MariaDB.
  144. %endif
  145. %package test
  146. Version: %{mariadb_version}
  147. Requires: %{name}-client = %{version}-%{release} perl-DBI perl
  148. Summary: MariaDB - Test suite
  149. Group: Applications/Databases
  150. Obsoletes: mysql-bench MySQL5-bench MySQL-bench MySQL-test < 5.6.0
  151. Provides: perl(mtr_misc.pl)
  152. %description test
  153. This package contains the MariaDB regression test suite.
  154. %package embedded
  155. Version: %{mariadb_version}
  156. Summary: MariaDB as an embeddable library
  157. Group: System Environment/Libraries
  158. Obsoletes: mysql-embedded MySQL-embedded
  159. Provides: mysql-embedded MySQL-embedded
  160. %description embedded
  161. This package contains a version of the MariaDB server that can be embedded
  162. into a client application instead of running as a separate process.
  163. %prep
  164. %setup -q
  165. %patch1000 -p1 -b .mroonga
  166. #%patch1001 -p1 -b .mariadb-10.2
  167. #%patch2000 -p1 -b .srv_buf_size
  168. %build
  169. # Be strict about variables, bail at earliest opportunity, etc.
  170. set -eu
  171. # Optional package files
  172. touch optional-files-devel
  173. export CFLAGS=${MYSQL_BUILD_CFLAGS:-${CFLAGS:-$RPM_OPT_FLAGS}}
  174. export CXXFLAGS=${MYSQL_BUILD_CXXFLAGS:-${CXXFLAGS:-$RPM_OPT_FLAGS -felide-constructors -fno-rtti}}
  175. # Build full release
  176. # workaround: force TOKUDB_OK=1
  177. # https://jira.mariadb.org/browse/MDEV-14524?workflowName=MariaDB+v3&stepId=1
  178. mkdir release
  179. (
  180. cd release
  181. cmake ../ \
  182. -DINSTALL_LAYOUT=RPM \
  183. -DBUILD_CONFIG=mysql_release \
  184. -DCMAKE_BUILD_TYPE=Release \
  185. -DINSTALL_UNIX_ADDRDIR="/var/lib/mysql/mysql.sock" \
  186. -DCOMPILATION_COMMENT="Vine Linux MariaDB RPM" \
  187. -DWITH_PIC="ON" \
  188. -DWITH_EMBEDDED_SERVER="ON" \
  189. -DWITH_ZLIB="system" \
  190. -DWITH_LOCALES="yes" \
  191. -DWITH_SSL="system" \
  192. -DWITH_UNIT_TESTS="no" \
  193. -DWITH_SEQUENCE_STORAGE_ENGINE="ON" \
  194. -DWITH_XTRADB_STORAGE_ENGINE="ON" \
  195. -DWITH_JEMALLOC="yes" \
  196. %ifarch x86_64
  197. -DTOKUDB_OK=1 \
  198. %endif
  199. -DGRN_WITH_MECAB="yes" \
  200. -DGRN_WITH_ONIGMO="no"
  201. # -DWITHOUT_TOKUDB="yes"
  202. # -DWITH_PCRE="system"
  203. echo BEGIN_NORMAL_CONFIG ; egrep '^#define' include/config.h ; echo END_NORMAL_CONFIG
  204. make %{?_smp_mflags} VERBOSE=1
  205. )
  206. %install
  207. rm -rf %{buildroot}
  208. install -d %{buildroot}%{mysqldatadir}/mysql
  209. install -d %{buildroot}%{_infodir}
  210. # Install all binaries
  211. (
  212. cd release
  213. make DESTDIR=%{buildroot} install
  214. )
  215. install -m 0644 Docs/mysql.info %{buildroot}%{_infodir}
  216. rm -rf ./doc
  217. mv -f %{buildroot}%{_docdir} ./
  218. mv -f %{buildroot}%{_datadir}/groonga ./
  219. mv -f %{buildroot}%{_datadir}/groonga-normalizer-mysql ./
  220. %if %{with source}
  221. mkdir -p %{buildroot}%{_datadir}/%{name}-source
  222. pushd %{buildroot}%{_datadir}/%{name}-source
  223. tar zxf %{SOURCE0}
  224. find %{buildroot}%{_datadir}/%{name}-source -type f -exec chmod ugo-x {} \;
  225. popd
  226. %endif
  227. install -d %{buildroot}%{_sysconfdir}/rpm
  228. sed -e 's/@BASEVERSION@/%{mariadb_base_version}/' -e 's/@VERSION@/%{version}/' -e 's/@RELEASE@/%{release}/' < %{SOURCE1000} > %{buildroot}%{_sysconfdir}/rpm/macros.mariadb
  229. rm -f %{buildroot}%{_mandir}/man1/mysql_fix_privilege_tables.1*
  230. rm -f %{buildroot}%{_mandir}/man8/mysqlmanager.8*
  231. rm -f %{buildroot}%{_sysconfdir}/my.cnf
  232. rm -f %{buildroot}%{_sysconfdir}/my.cnf.d/client.cnf
  233. rm -f %{buildroot}%{_libdir}/libmysqlclient*.so*
  234. rm -f %{buildroot}%{_libdir}/mysql/plugin/daemon_example.ini
  235. %ifarch x86_64
  236. install -m644 ./storage/tokudb/tokudb.cnf %{buildroot}%{_sysconfdir}/my.cnf.d/
  237. %else
  238. rm -f %{buildroot}%{_mandir}/man1/tokuft*
  239. %endif
  240. # force linking statically.
  241. perl -pi -e 's,-lmysqlclient_r,%{_libdir}/libmysqlclient_r.a,' %{buildroot}%{_bindir}/mysql_config
  242. perl -pi -e 's,-lmysqlclient,%{_libdir}/libmysqlclient.a,' %{buildroot}%{_bindir}/mysql_config
  243. perl -pi -e 's,-lmysqlclient,%{_libdir}/libmysqlclient.a,' %{buildroot}%{_datadir}/pkgconfig/mariadb.pc
  244. ##############################################################################
  245. %pre server
  246. # Create a MySQL user and group. Do not report any problems if it already
  247. # exists.
  248. datadir=/var/lib/mysql
  249. groupadd -r mysql 2> /dev/null || true
  250. useradd -M -r -d $datadir -s /bin/bash -c "MySQL server" -g mysql mysql 2> /dev/null || true
  251. # The user may already exist, make sure it has the proper group nevertheless (BUG#12823)
  252. usermod -g mysql mysql 2> /dev/null || true
  253. %post server
  254. # Make MySQL start/shutdown automatically when the machine does it.
  255. if [ $1 = 1 ] ; then
  256. if [ -x /sbin/chkconfig ] ; then
  257. /sbin/chkconfig --add mysql
  258. fi
  259. basedir=`/usr/bin/my_print_defaults --mysqld|sed -ne 's/^--basedir=//p'|tail -1`
  260. if [ -z "$basedir" ] ; then
  261. basedir=/usr
  262. fi
  263. datadir=`/usr/bin/my_print_defaults --mysqld|sed -ne 's/^--datadir=//p'|tail -1`
  264. if [ -z "$datadir" ] ; then
  265. datadir=/var/lib/mysql
  266. else
  267. # datadir may be relative to a basedir!
  268. if ! expr $datadir : / > /dev/null; then
  269. datadir=$basedir/$datadir
  270. fi
  271. fi
  272. tmpdir=`/usr/bin/my_print_defaults --mysqld|sed -ne 's/^--datadir=//p'|tail -1`
  273. if [ -z "$datadir" ] ; then
  274. datadir=/var/lib/mysql
  275. else
  276. # datadir may be relative to a basedir!
  277. if ! expr $datadir : / > /dev/null; then
  278. datadir=$basedir/$datadir
  279. fi
  280. fi
  281. # Change permissions so that the user that will run the MySQL daemon
  282. # owns all database files.
  283. chown -R mysql:mysql $datadir
  284. if [ ! -e $datadir/mysql ]; then
  285. # Create data directory
  286. mkdir -p $datadir/{mysql,test}
  287. chown -R mysql:mysql $datadir
  288. # Initiate databases
  289. /usr/bin/mysql_install_db --rpm --user=mysql
  290. fi
  291. # Change permissions again to fix any new files.
  292. chown -R mysql:mysql $datadir
  293. # Fix permissions for the permission database so that only the user
  294. # can read them.
  295. chmod -R og-rw $datadir/mysql
  296. fi
  297. %preun server
  298. if [ $1 = 0 ] ; then
  299. # Stop MySQL before uninstalling it
  300. if [ -x /etc/init.d/mysql ] ; then
  301. /etc/init.d/mysql stop > /dev/null
  302. fi
  303. # Don't start it automatically anymore
  304. if [ -x /sbin/chkconfig ] ; then
  305. /sbin/chkconfig --del mysql
  306. fi
  307. fi
  308. %postun server
  309. if [ $1 -ge 1 ]; then
  310. if [ -x /etc/init.d/mysql ] ; then
  311. # only restart the server if it was alredy running
  312. /etc/init.d/mysql status > /dev/null 2>&1 && \
  313. /etc/init.d/mysql restart
  314. fi
  315. fi
  316. %pre mroonga
  317. if [ $1 -gt 1 ]; then
  318. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/uninstall.sql || cat <<EOF
  319. An error occured when to unregister plugin.
  320. Please run a command below:
  321. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/uninstall.sql
  322. EOF
  323. fi
  324. %post mroonga
  325. if [ $1 -eq 1 ] ; then
  326. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/install.sql || cat <<EOF
  327. An error occured when to register plugin.
  328. Please run a command below:
  329. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/install.sql
  330. EOF
  331. fi
  332. %postun mroonga
  333. if [ $1 -gt 0 ] ; then
  334. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/install.sql || cat <<EOF
  335. An error occured when to register plugin.
  336. Please run a command below:
  337. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/install.sql
  338. EOF
  339. fi
  340. # Clean up the BuildRoot
  341. %clean
  342. [ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT;
  343. %files server
  344. %defattr(-,root,root)
  345. %{!?_licensedir:%global license %%doc}
  346. %license COPYING* EXCEPTIONS-CLIENT
  347. %doc CREDITS README.md doc/*
  348. %doc release/support-files/my-*.cnf
  349. %doc %{_infodir}/mysql.info*
  350. %doc %{_mandir}/man1/aria_*.1*
  351. %doc %{_mandir}/man1/galera_new_cluster.1*
  352. %doc %{_mandir}/man1/galera_recovery.1*
  353. %doc %{_mandir}/man1/innochecksum.1*
  354. %doc %{_mandir}/man1/mariadb-service-convert.1*
  355. %doc %{_mandir}/man1/my_print_defaults.1*
  356. %doc %{_mandir}/man1/my_safe_process.1*
  357. %doc %{_mandir}/man1/myisam_ftdump.1*
  358. %doc %{_mandir}/man1/myisamchk.1*
  359. %doc %{_mandir}/man1/myisamlog.1*
  360. %doc %{_mandir}/man1/myisampack.1*
  361. %doc %{_mandir}/man1/mysql_convert_table_format.1*
  362. %doc %{_mandir}/man1/mysql_fix_extensions.1*
  363. %doc %{_mandir}/man8/mysqld.8*
  364. %doc %{_mandir}/man1/mysqld_multi.1*
  365. %doc %{_mandir}/man1/mysqld_safe.1*
  366. %doc %{_mandir}/man1/mysqld_safe_helper.1*
  367. %doc %{_mandir}/man1/mysqldumpslow.1*
  368. %doc %{_mandir}/man1/mysql_install_db.1*
  369. %doc %{_mandir}/man1/mysql_plugin.1*
  370. %doc %{_mandir}/man1/mysql_secure_installation.1*
  371. %doc %{_mandir}/man1/mysql_setpermission.1*
  372. %doc %{_mandir}/man1/mysql_upgrade.1*
  373. %doc %{_mandir}/man1/mysqlhotcopy.1*
  374. %doc %{_mandir}/man1/mysql.server.1*
  375. %doc %{_mandir}/man1/mysqltest.1*
  376. %doc %{_mandir}/man1/mysql_tzinfo_to_sql.1*
  377. %doc %{_mandir}/man1/perror.1*
  378. %doc %{_mandir}/man1/replace.1*
  379. %doc %{_mandir}/man1/resolve_stack_dump.1*
  380. %doc %{_mandir}/man1/resolveip.1*
  381. %doc %{_mandir}/man1/wsrep_sst_*.1*
  382. %{_bindir}/aria_*
  383. %{_bindir}/mariabackup
  384. %{_bindir}/mbstream
  385. %{_bindir}/innochecksum
  386. %{_bindir}/my_print_defaults
  387. %{_bindir}/myisam_ftdump
  388. %{_bindir}/myisamchk
  389. %{_bindir}/myisamlog
  390. %{_bindir}/myisampack
  391. %{_bindir}/mysql_convert_table_format
  392. %{_bindir}/mysql_fix_extensions
  393. %{_bindir}/mysql_install_db
  394. %ifarch x86_64
  395. %{_bindir}/mysql_ldb
  396. %endif
  397. %{_bindir}/mysql_plugin
  398. %{_bindir}/mysql_secure_installation
  399. %{_bindir}/mysql_setpermission
  400. %{_bindir}/mysql_tzinfo_to_sql
  401. %{_bindir}/mysql_upgrade
  402. %{_bindir}/mysqld_multi
  403. %{_bindir}/mysqld_safe
  404. %{_bindir}/mysqld_safe_helper
  405. %{_bindir}/mysqldumpslow
  406. %{_bindir}/mysqlhotcopy
  407. %{_bindir}/mysqltest
  408. %{_bindir}/perror
  409. %{_bindir}/replace
  410. %{_bindir}/resolve_stack_dump
  411. %{_bindir}/resolveip
  412. %ifarch x86_64
  413. %{_bindir}/sst_dump
  414. %endif
  415. %{_bindir}/wsrep*
  416. %{_sbindir}/mysqld
  417. %{_sbindir}/rcmysql
  418. %exclude %{_libdir}/mysql/plugin/ha_connect.so
  419. %exclude %{_libdir}/mysql/plugin/ha_mroonga.so
  420. %ifarch x86_64
  421. %exclude %{_libdir}/mysql/plugin/ha_tokudb.so
  422. %endif
  423. %exclude %{_datadir}/mysql/mroonga
  424. %{_libdir}/mysql
  425. %config(noreplace) %{_sysconfdir}/my.cnf.d/enable_encryption.preset
  426. %config(noreplace) %{_sysconfdir}/my.cnf.d/server.cnf
  427. %config(noreplace,missingok) %{_sysconfdir}/logrotate.d/mysql
  428. %{_sysconfdir}/init.d/mysql
  429. %{_datadir}/mysql
  430. %attr(755, mysql, mysql) %dir %{mysqldatadir}
  431. %files mroonga
  432. %defattr(-, root, root)
  433. %{!?_licensedir:%global license %%doc}
  434. %license groonga groonga-normalizer-mysql
  435. %{_libdir}/mysql/plugin/ha_mroonga.so
  436. %{_datadir}/mysql/mroonga
  437. %files connect
  438. %defattr(-, root, root)
  439. %{_libdir}/mysql/plugin/ha_connect.so
  440. %ifarch x86_64
  441. %files tokudb
  442. %defattr(-, root, root)
  443. %config(noreplace) %{_sysconfdir}/my.cnf.d/tokudb.cnf
  444. %{_libdir}/mysql/plugin/ha_tokudb.so
  445. %{_bindir}/tokuft*
  446. %doc %{_mandir}/man1/tokuft*
  447. %endif
  448. %files client
  449. %defattr(-, root, root)
  450. %{!?_licensedir:%global license %%doc}
  451. %license COPYING* EXCEPTIONS-CLIENT
  452. %config(noreplace) %{_sysconfdir}/my.cnf.d/mysql-clients.cnf
  453. %{_bindir}/msql2mysql
  454. %{_bindir}/mysql
  455. %{_bindir}/mysql_find_rows
  456. %{_bindir}/mysql_waitpid
  457. %{_bindir}/mysqlaccess
  458. %{_bindir}/mysqladmin
  459. %{_bindir}/mysqlbinlog
  460. %{_bindir}/mysqlcheck
  461. %{_bindir}/mysqldump
  462. %{_bindir}/mysqlimport
  463. %{_bindir}/mysqlshow
  464. %{_bindir}/mysqlslap
  465. %{_bindir}/mytop
  466. %doc %{_mandir}/man1/msql2mysql.1*
  467. %doc %{_mandir}/man1/mysql.1*
  468. %doc %{_mandir}/man1/mysql_find_rows.1*
  469. %doc %{_mandir}/man1/mysql_waitpid.1*
  470. %doc %{_mandir}/man1/mysqlaccess.1*
  471. %doc %{_mandir}/man1/mysqladmin.1*
  472. %doc %{_mandir}/man1/mysqlbinlog.1*
  473. %doc %{_mandir}/man1/mysqlcheck.1*
  474. %doc %{_mandir}/man1/mysqldump.1*
  475. %doc %{_mandir}/man1/mysqlimport.1*
  476. %doc %{_mandir}/man1/mysqlshow.1*
  477. %doc %{_mandir}/man1/mysqlslap.1*
  478. %files devel
  479. %defattr(-, root, root)
  480. %doc %{_mandir}/man1/mysql_config.1*
  481. %{_bindir}/mariadb_config
  482. %{_bindir}/mysql_config
  483. %{_includedir}/mysql
  484. %{_datadir}/aclocal/mysql.m4
  485. %{_datadir}/pkgconfig/mariadb.pc
  486. %{_libdir}/*.so
  487. %{_sysconfdir}/rpm/*
  488. %{_bindir}/mysql_embedded
  489. %files static
  490. %defattr(-,root,root)
  491. %{_libdir}/lib*.a
  492. %if %{with source}
  493. %files source
  494. %defattr(-, root, root)
  495. %{_datadir}/mariadb-source
  496. %endif
  497. %files test
  498. %defattr(-, root, root)
  499. %attr(-, root, root) %{_datadir}/mysql-test
  500. %{_bindir}/mysql_client_test
  501. %{_bindir}/mysql_client_test_embedded
  502. %{_bindir}/mysqltest_embedded
  503. %doc %{_mandir}/man1/mysql_client_test.1*
  504. %doc %{_mandir}/man1/mysql-stress-test.pl.1*
  505. %doc %{_mandir}/man1/mysql-test-run.pl.1*
  506. %doc %{_mandir}/man1/mysql_client_test_embedded.1*
  507. %doc %{_mandir}/man1/mysqltest_embedded.1*
  508. %files embedded
  509. %defattr(-,root,root)
  510. %{_libdir}/libmysqld.so.*
  511. %{_libdir}/libmariadb.so.*
  512. %changelog
  513. * Sat Dec 02 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.2.11-1
  514. - new upstream release.
  515. - replaced patch1000 to update Mroonga to v7.09.
  516. * Sun Jul 16 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.2.7-1
  517. - new upstream release.
  518. - replaced patch1000 to update Mroonga to v7.04.
  519. * Thu May 4 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.23-1
  520. - new upstream release.
  521. - replaced patch1000 to update Mroonga to v7.02.
  522. * Thu Mar 16 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.22-1
  523. - new upstream release.
  524. - replaced patch1000 to update Mroonga to v7.00.
  525. * Wed Dec 21 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.20-1
  526. - new upstream release.
  527. - replaced patch1000 to update Mroonga to v6.11.
  528. * Tue Jul 19 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.16-1
  529. - new upstream release.
  530. - replaced patch1000 to update Mroonga to v6.06.
  531. * Wed May 11 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.14-1
  532. - new upstream release.
  533. - replaced patch1000 to update Mroonga to v6.02.
  534. * Fri Apr 1 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.13-1
  535. - new upstream release.
  536. - replaced patch1000 to update Mroonga to v6.01.
  537. * Tue Mar 15 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.12-1
  538. - new upstream release.
  539. - replaced patch1000 to update Mroonga to git HEAD.
  540. * Sat Jan 30 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.11-1
  541. - new upstream release.
  542. - replaced patch1000 to update Mroonga to v5.12.
  543. * Fri Jan 8 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.10-1
  544. - new upstream release.
  545. - replaced patch1000 to update Mroonga to v5.11.
  546. - moved CONNECT and TokuDB storage engines to subpackages.
  547. * Sun Nov 29 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.9-4
  548. - replaced patch1000 to update Mroonga to git HEAD.
  549. * Sat Nov 28 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.9-3
  550. - replaced patch1000 to update Mroonga to git HEAD.
  551. * Thu Nov 26 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.9-2
  552. - replaced patch1000 to update Mroonga to git HEAD.
  553. * Tue Nov 24 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.9-1
  554. - new upstream release.
  555. - replaced patch1000 to update Mroonga to git HEAD.
  556. * Fri Oct 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.8-3
  557. - added BR:jemalloc-devel.
  558. * Thu Oct 29 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.8-2
  559. - replaced patch1000 to update Mroonga to 5.09.
  560. * Wed Oct 21 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.8-1
  561. - new upstream release.
  562. - replaced patch1000 for MariaDB 10.1.8.
  563. * Fri Oct 9 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.21-3
  564. - replaced patch1000 to update Mroonga to 5.08.
  565. * Mon Aug 31 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.21-2
  566. - replaced patch1000 to update Mroonga to 5.06.
  567. * Mon Aug 10 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.21-1
  568. - new upstream release.
  569. - added patch1000 to update Mroonga from 5.02 to 5.05.
  570. * Tue Jun 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.20-2
  571. - fixed dependencies.
  572. * Fri Jun 19 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.20-1
  573. - new upstream release.
  574. * Sun May 10 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.19-1
  575. - new upstream release.
  576. * Fri May 8 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.18-1
  577. - new upstream release.
  578. * Tue Mar 3 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.17-1
  579. - new upstream release.
  580. * Wed Jan 28 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.16-1
  581. - new upstream release.
  582. * Wed Nov 26 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.15-1
  583. - new upstream release.
  584. - enabled bundled Mroonga.
  585. * Mon Sep 29 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.14-1
  586. - new upstream release.
  587. * Sat May 31 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.11-1
  588. - new upstream release.
  589. * Sun Apr 13 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.10-2
  590. - fixed Conflicts: and Obsoletes:.
  591. * Mon Mar 31 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.10-1
  592. - new upstream release.
  593. * Mon Mar 24 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.9-1
  594. - new upstream release.
  595. * Tue Feb 11 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.8-1
  596. - new upstream release.
  597. * Sat Dec 07 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.6-2
  598. - removed duplicated files.
  599. * Wed Dec 04 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.6-1
  600. - switched to MariaDB.
  601. * Wed Feb 20 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.30-1
  602. - new upstream release.
  603. * Fri Nov 16 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.28-1
  604. - new upstream release.
  605. * Sat Sep 15 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.27-1
  606. - new upstream release.
  607. - added a sub-package 'MySQL-source".
  608. - added some macros for rpm.
  609. * Thu Jun 21 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.25-1
  610. - new upstream release.
  611. * Thu May 10 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.24-1
  612. - new upstream release.
  613. * Tue May 01 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.23-1
  614. - new upstream release.
  615. - added "Vendor:" and "Distribution:" tag.
  616. * Tue Aug 23 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.15-1
  617. - new upstream release.
  618. - removed NDB cluster support.
  619. * Mon Apr 18 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.56-3
  620. - Added "BR: zlib-devel" to MySQL-devel.
  621. * Sun Apr 03 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.56-2
  622. - Added "BR: openssl-devel" to MySQL-devel.
  623. * Fri Mar 11 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.56-1
  624. - new upstream release.
  625. * Mon Jan 10 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.54-1
  626. - new upstream release.
  627. - updated jp-patch.
  628. - added ssl support.
  629. * Sat Nov 06 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.52-1
  630. - new upstream release.
  631. - replaced '%%__find_requires' to '%%__perl_requires'.
  632. - updated jp-patch.
  633. * Fri Oct 29 2010 Shu KONNO <owa@bg.wakwak.com> 5.1.44-3
  634. - added mysql-5.1.44-lib64.patch (on x86_64)
  635. - added -fPIC (on x86_64)
  636. * Sun Oct 17 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.1.44-2
  637. - made embedded package again
  638. * Fri Mar 05 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.44-1
  639. - new upstream release.
  640. - updated jp-patch.
  641. * Thu Feb 04 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.43-2
  642. - VineSeed: rebuilt with new toolchain.
  643. * Wed Feb 03 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.43-1
  644. - new upstream release.
  645. - fixed CVE-2009-4484.
  646. * Fri Nov 20 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.41-1
  647. - new upstream release.
  648. * Thu Nov 19 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.40-2
  649. - added net-tools to 'Requires'.
  650. - added groff to 'BuildRequires'.
  651. - renamed subpackage 'MySQL-shared' to 'libmysqlclient16' (VineSeed only).
  652. * Tue Nov 10 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.40-1
  653. - new upstream release.
  654. * Sat Sep 26 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.39-1
  655. - new upstream release.
  656. * Sun Jul 5 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.36-1
  657. - new upstream release.
  658. - dropped %%Patch100 (fixed in upstream).
  659. * Sat Jun 6 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.35-1
  660. - new upstream release.
  661. - add %%Patch100 (no longer needed for MySQL-5.1.36 or later).
  662. * Thu May 21 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.34-1
  663. - new upstream release.
  664. - rename 'MySQL-bench' to 'MySQL-test'.
  665. - update Patch0.
  666. - change default charset to 'utf8'.
  667. * Sat Apr 12 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.51a-1
  668. - new upstream release.
  669. - update Patch0.
  670. - add "--with-client-charset=ujis".
  671. - sync %%files to official RPM.
  672. - remove MySQL-Max.
  673. * Thu Dec 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.0.27-0vl7
  674. - for VineSeed
  675. * Thu Dec 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.0.27-0vl6
  676. - move shared library from /usr/lib/ to /usr/lib/mysql/
  677. - add /etc/ld.so.conf.d/*.conf
  678. - fix broken libmysqlcient*.la files (or should we remove them permanently?)
  679. * Sat Jun 16 2007 IWAI, Masaharu <iwai@alib.jp> 5.0.27-0vl5
  680. - rebuild <BTS:VineLinux:534>
  681. * Mon Nov 13 2006 NAKAMURA Kenta <kenta@vinelinux.org> 5.0.27-0vl4
  682. - added -fPIC
  683. * Mon Oct 30 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.27-0vl3
  684. - fixed dependency. <BTS:338>
  685. * Mon Oct 30 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.27-0vl2
  686. - add %%Patch1. <BTS:320>
  687. * Sat Oct 28 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.27-0vl1
  688. - new upstream release.
  689. * Fri Oct 27 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.26-0vl1
  690. - new upstream release.
  691. * Sat Jun 3 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.22-0vl1
  692. - new upstream release.
  693. * Sat May 13 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.21-0vl1
  694. - release++.
  695. * Wed May 10 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.21-0vl0
  696. - new upstream release.
  697. - for VineSeed.
  698. * Wed Feb 8 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 4.1.16-0vl0
  699. - new upstream release.
  700. - replace Patch0 for MySQL-4.1.16.
  701. * Thu Oct 6 2005 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 4.1.14-0vl0
  702. - new upstream release.
  703. - add Patch0.
  704. * Tue Sep 6 2005 Takeyuki FUJIOKA <fuji@ftserve.net> 4.0.25-0vl0
  705. - new upstream version
  706. -- mysql-4.0.25
  707. * Fri Jan 21 2005 Takeyuki FUJIOKA <fuji@ftserve.net> 4.0.23-0vl0
  708. - new upstream version
  709. -- mysql-4.0.23
  710. * Tue Sep 28 2004 Takeyuki FUJIOKA <fuji@ftserve.net> 4.0.22-0vl0
  711. - new upstream version
  712. -- mysql-4.0.22
  713. * Tue Sep 28 2004 Takeyuki FUJIOKA <fuji@ftserve.net> 4.0.21-0vl1
  714. - new upstream version
  715. -- mysql-4.0.21
  716. * Fri May 21 2004 Satoshi MACHINO <machino@vinelinux.org> 4.0.20-0vl1
  717. - new upstream version
  718. -- mysql-4.0.20
  719. * Tue May 04 2004 Tomoya TAKA <taka@vinelinux.org> 4.0.18-0vl2
  720. - modify CFLAGS, CXXFLAGS and configure options for alpha
  721. * Tue Mar 23 2004 Satoshi MACHINO <machino@vinelinux.org> 4.0.18-0vl1
  722. - Upgraded to MySQL-4
  723. - added "with-charset=ujis" and "without-readline" to configure (vineseed-plus-02150)
  724. - merged to MySQL Official packages
  725. -- renamed package "MySQL" to "MySQL-server"
  726. -- when using gcc, _always_ use CXX=gcc
  727. -- replaced Copyright with License field (Copyright is obsolete)
  728. -- added myisam_ftdump to the Server package
  729. -- marked /etc/logrotate.d/mysql as a config file (BUG 2156)
  730. -- fixed file permissions (BUG 1672)
  731. -- removed dependency on MySQL-client from the MySQL-devel subpackage
  732. -- as it is not really required. (BUG 1610)
  733. -- Fixed BUG 1162 (removed macro names from the changelog)
  734. -- Really fixed BUG 998 (disable the checking for installed but
  735. -- unpackaged files)
  736. -- Fixed BUG 959 (libmysqld not being compiled properly)
  737. -- Fixed BUG 998 (RPM build errors): added missing files to the
  738. -- distribution (mysql_fix_extensions, mysql_tableinfo, mysqldumpslow,
  739. -- mysql_fix_privilege_tables.1), removed "-n" from install section.
  740. -- removed the GIF Icon (file was not included in the sources anyway)
  741. -- removed unused variable shared_lib_version
  742. -- do not run automake before building the standard binary
  743. -- (should not be necessary)
  744. -- add server suffix '-standard' to standard binary (to be in line
  745. -- with the binary tarball distributions)
  746. -- allow overriding CC and CXX (required when building
  747. -- with other compilers)
  748. * Mon Apr 14 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 3.23.56-0vl5
  749. - added BuildRequires: automake16
  750. * Thu Apr 03 2003 Tomoya TAKA <taka@vinelinux.org> 3.23.56-0vl3
  751. - add '-fPIC -DPIC' to CFLAGS on alpha
  752. - little fix of spec file
  753. * Thu Mar 27 2003 Tomoya TAKA <taka@vinelinux.org> 3.23.56-0vl2
  754. - enable MySQL-shared subpackage for alpha
  755. - delete 'BuildPrereq: kernel24-headers' for alpha
  756. - fix shared %files (exclude sparc)
  757. * Tue Mar 18 2003 Satoshi MACHINO <machino@vinelinux.org> 3.23.56-0vl1
  758. - new upstream version
  759. * Sun Mar 9 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.23.55-0vl2
  760. - fixed devel %files (dropped *.la files)
  761. * Tue Jan 28 2003 Satoshi MACHINO <machino@vinelinux.org> 3.23.55-0vl1
  762. - new upstream version
  763. - fixed document permission
  764. * Sat Dec 21 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.54a-0vl1
  765. - new upstream version
  766. * Sat Oct 19 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.53-0vl2
  767. - dropped MySQL-Max sub-pakage for sparc/sparc64/alpha
  768. -- don't work
  769. * Wed Oct 16 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.53-0vl1
  770. - new upstream version
  771. - diseble-assembler in configure on sparc,sparc64,alpha
  772. * Wed Aug 21 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.52-0vl1
  773. - new upstream version
  774. - moved some man files to main package
  775. - added enable-local-infile in configure
  776. - changed --with-extra-charsets=all in configure
  777. * Fri Jun 14 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.51-0vl2
  778. - fixed changelog
  779. * Thu Jun 13 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.51-0vl1
  780. - updated to mysql-3.23.51
  781. * Fri Mar 15 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.49-0vl2
  782. - rebuild on zlib-1.1.4(security fix.)
  783. * Mon Feb 18 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.49-0vl1
  784. - updated to mysql-2.23.49
  785. * Tue Feb 12 2002 Tomoya TAKA <taka@vinelinux.org> 3.23.48-0vl2
  786. - add 'BuildPrereq: kernel24-headers' on alpha
  787. - remove shared library and max on alpha
  788. * Tue Feb 12 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.48-0vl1
  789. - updated to mysql-3.23.48
  790. * Thu Jan 03 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.47-0vl1
  791. - updated to mysql-3.23.47
  792. * Wed Dec 05 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.46-0vl1
  793. - updated to mysql-3.23.46
  794. * Thu Nov 29 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.45-0vl1
  795. - updated to mysql-3.23.45
  796. * Mon Nov 12 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.44-0vl1
  797. - updated to mysql-3.23.44
  798. * Sat Oct 13 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.43-0vl1
  799. - updated to mysql-3.23.43
  800. - removed shared library and max on sparc
  801. * Wed Sep 12 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.42-0vl1
  802. - updated to mysql-3.23.42
  803. - changed MYSQL_BUILD_CC: and MYSQL_BUILD_XCC: to -gcc
  804. * Thu Aug 30 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.41-0vl1
  805. - updated to mysql-3.23.41
  806. * Wed Aug 22 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.40-0vl1
  807. - updated to mysql-3.23.40
  808. * Tue Jul 10 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.39-0vl1
  809. - updated to mysql-3.23.39
  810. * Fri Jun 15 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.38-1vl2
  811. - added configure --with-charset=ujis
  812. * Sun May 27 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.38-1vl2
  813. - used some rpmmacro
  814. * Fri May 25 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.38-1vl1
  815. - updated to MySQL-3.23.38
  816. * Thu Dec 07 2000 Satoshi MACHINO <machino@vinelinux.org> 3.23.28-1vl2
  817. - removed Bench pakages
  818. * Tue Dec 05 2000 Satoshi MACHINO <machino@vinelinux.org> 3.23.28-1vl1
  819. - removed pt_BR locale
  820. - build on Vine Linux
  821. - partially used rpmmacros
  822. - added %clean tag
  823. * Fri Aug 18 2000 Tim Smith <tim@mysql.com>
  824. - Added separate libmysql_r directory; now both a threaded
  825. and non-threaded library is shipped.
  826. * Tue Sep 28 1999 David Axmark <davida@mysql.com>
  827. - Added the support-files/my-example.cnf to the docs directory.
  828. - Removed devel dependency on base since it is about client
  829. development.
  830. * Wed Sep 8 1999 David Axmark <davida@mysql.com>
  831. - Cleaned up some for 3.23.
  832. * Thu Jul 1 1999 David Axmark <davida@mysql.com>
  833. - Added support for shared libraries in a separate sub
  834. package. Original fix by David Fox (dsfox@cogsci.ucsd.edu)
  835. - The --enable-assembler switch is now automatically disables on
  836. platforms there assembler code is unavailable. This should allow
  837. building this RPM on non i386 systems.
  838. * Mon Feb 22 1999 David Axmark <david@detron.se>
  839. - Removed unportable cc switches from the spec file. The defaults can
  840. now be overridden with environment variables. This feature is used
  841. to compile the official RPM with optimal (but compiler version
  842. specific) switches.
  843. - Removed the repetitive description parts for the sub rpms. Maybe add
  844. again if RPM gets a multiline macro capability.
  845. - Added support for a pt_BR translation. Translation contributed by
  846. Jorge Godoy <jorge@bestway.com.br>.
  847. * Wed Nov 4 1998 David Axmark <david@detron.se>
  848. - A lot of changes in all the rpm and install scripts. This may even
  849. be a working RPM :-)
  850. * Sun Aug 16 1998 David Axmark <david@detron.se>
  851. - A developers changelog for MySQL is available in the source RPM. And
  852. there is a history of major user visible changed in the Reference
  853. Manual. Only RPM specific changes will be documented here.