mariadb-vl.spec 36 KB

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