mariadb-vl.spec 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035
  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.20
  11. %define mroonga_version 6.11
  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. # force linking statically.
  228. perl -pi -e 's,-lmysqlclient_r,%{_libdir}/libmysqlclient_r.a,' %{buildroot}%{_bindir}/mysql_config
  229. perl -pi -e 's,-lmysqlclient,%{_libdir}/libmysqlclient.a,' %{buildroot}%{_bindir}/mysql_config
  230. perl -pi -e 's,-lmysqlclient,%{_libdir}/libmysqlclient.a,' %{buildroot}%{_datadir}/pkgconfig/mariadb.pc
  231. ##############################################################################
  232. %pre server
  233. # Create a MySQL user and group. Do not report any problems if it already
  234. # exists.
  235. datadir=/var/lib/mysql
  236. groupadd -r mysql 2> /dev/null || true
  237. useradd -M -r -d $datadir -s /bin/bash -c "MySQL server" -g mysql mysql 2> /dev/null || true
  238. # The user may already exist, make sure it has the proper group nevertheless (BUG#12823)
  239. usermod -g mysql mysql 2> /dev/null || true
  240. %post server
  241. # Make MySQL start/shutdown automatically when the machine does it.
  242. if [ $1 = 1 ] ; then
  243. if [ -x /sbin/chkconfig ] ; then
  244. /sbin/chkconfig --add mysql
  245. fi
  246. basedir=`/usr/bin/my_print_defaults --mysqld|sed -ne 's/^--basedir=//p'|tail -1`
  247. if [ -z "$basedir" ] ; then
  248. basedir=/usr
  249. fi
  250. datadir=`/usr/bin/my_print_defaults --mysqld|sed -ne 's/^--datadir=//p'|tail -1`
  251. if [ -z "$datadir" ] ; then
  252. datadir=/var/lib/mysql
  253. else
  254. # datadir may be relative to a basedir!
  255. if ! expr $datadir : / > /dev/null; then
  256. datadir=$basedir/$datadir
  257. fi
  258. fi
  259. tmpdir=`/usr/bin/my_print_defaults --mysqld|sed -ne 's/^--datadir=//p'|tail -1`
  260. if [ -z "$datadir" ] ; then
  261. datadir=/var/lib/mysql
  262. else
  263. # datadir may be relative to a basedir!
  264. if ! expr $datadir : / > /dev/null; then
  265. datadir=$basedir/$datadir
  266. fi
  267. fi
  268. # Change permissions so that the user that will run the MySQL daemon
  269. # owns all database files.
  270. chown -R mysql:mysql $datadir
  271. if [ ! -e $datadir/mysql ]; then
  272. # Create data directory
  273. mkdir -p $datadir/{mysql,test}
  274. chown -R mysql:mysql $datadir
  275. # Initiate databases
  276. /usr/bin/mysql_install_db --rpm --user=mysql
  277. fi
  278. # Change permissions again to fix any new files.
  279. chown -R mysql:mysql $datadir
  280. # Fix permissions for the permission database so that only the user
  281. # can read them.
  282. chmod -R og-rw $datadir/mysql
  283. fi
  284. %preun server
  285. if [ $1 = 0 ] ; then
  286. # Stop MySQL before uninstalling it
  287. if [ -x /etc/init.d/mysql ] ; then
  288. /etc/init.d/mysql stop > /dev/null
  289. fi
  290. # Don't start it automatically anymore
  291. if [ -x /sbin/chkconfig ] ; then
  292. /sbin/chkconfig --del mysql
  293. fi
  294. fi
  295. %postun server
  296. if [ $1 -ge 1 ]; then
  297. if [ -x /etc/init.d/mysql ] ; then
  298. # only restart the server if it was alredy running
  299. /etc/init.d/mysql status > /dev/null 2>&1 && \
  300. /etc/init.d/mysql restart
  301. fi
  302. fi
  303. %pre mroonga
  304. if [ $1 -gt 1 ]; then
  305. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/uninstall.sql || cat <<EOF
  306. An error occured when to unregister plugin.
  307. Please run a command below:
  308. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/uninstall.sql
  309. EOF
  310. fi
  311. %post mroonga
  312. if [ $1 -eq 1 ] ; then
  313. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/install.sql || cat <<EOF
  314. An error occured when to register plugin.
  315. Please run a command below:
  316. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/install.sql
  317. EOF
  318. fi
  319. %postun mroonga
  320. if [ $1 -gt 0 ] ; then
  321. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/install.sql || cat <<EOF
  322. An error occured when to register plugin.
  323. Please run a command below:
  324. /usr/bin/mysql -u root < %{_datadir}/mysql/mroonga/install.sql
  325. EOF
  326. fi
  327. # Clean up the BuildRoot
  328. %clean
  329. [ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT;
  330. %files server
  331. %defattr(-,root,root)
  332. %{!?_licensedir:%global license %%doc}
  333. %license COPYING* EXCEPTIONS-CLIENT
  334. %doc CREDITS README doc/*
  335. %doc release/support-files/my-*.cnf
  336. %doc %{_infodir}/mysql.info*
  337. %doc %{_mandir}/man1/aria_*.1*
  338. %doc %{_mandir}/man1/innochecksum.1*
  339. %doc %{_mandir}/man1/my_print_defaults.1*
  340. %doc %{_mandir}/man1/myisam_ftdump.1*
  341. %doc %{_mandir}/man1/myisamchk.1*
  342. %doc %{_mandir}/man1/myisamlog.1*
  343. %doc %{_mandir}/man1/myisampack.1*
  344. %doc %{_mandir}/man1/mysql_convert_table_format.1*
  345. %doc %{_mandir}/man1/mysql_fix_extensions.1*
  346. %doc %{_mandir}/man8/mysqld.8*
  347. %doc %{_mandir}/man1/mysqld_multi.1*
  348. %doc %{_mandir}/man1/mysqld_safe.1*
  349. %doc %{_mandir}/man1/mysqldumpslow.1*
  350. %doc %{_mandir}/man1/mysql_install_db.1*
  351. %doc %{_mandir}/man1/mysql_plugin.1*
  352. %doc %{_mandir}/man1/mysql_secure_installation.1*
  353. %doc %{_mandir}/man1/mysql_setpermission.1*
  354. %doc %{_mandir}/man1/mysql_upgrade.1*
  355. %doc %{_mandir}/man1/mysqlhotcopy.1*
  356. %doc %{_mandir}/man1/mysql.server.1*
  357. %doc %{_mandir}/man1/mysqltest.1*
  358. %doc %{_mandir}/man1/mysql_tzinfo_to_sql.1*
  359. %doc %{_mandir}/man1/mysql_zap.1*
  360. %doc %{_mandir}/man1/mysqlbug.1*
  361. %doc %{_mandir}/man1/perror.1*
  362. %doc %{_mandir}/man1/replace.1*
  363. %doc %{_mandir}/man1/resolve_stack_dump.1*
  364. %doc %{_mandir}/man1/resolveip.1*
  365. %{_bindir}/aria_*
  366. %{_bindir}/innochecksum
  367. %{_bindir}/my_print_defaults
  368. %{_bindir}/myisam_ftdump
  369. %{_bindir}/myisamchk
  370. %{_bindir}/myisamlog
  371. %{_bindir}/myisampack
  372. %{_bindir}/mysql_convert_table_format
  373. %{_bindir}/mysql_fix_extensions
  374. %{_bindir}/mysql_install_db
  375. %{_bindir}/mysql_plugin
  376. %{_bindir}/mysql_secure_installation
  377. %{_bindir}/mysql_setpermission
  378. %{_bindir}/mysql_tzinfo_to_sql
  379. %{_bindir}/mysql_upgrade
  380. %{_bindir}/mysql_zap
  381. %{_bindir}/mysqlbug
  382. %{_bindir}/mysqld_multi
  383. %{_bindir}/mysqld_safe
  384. %{_bindir}/mysqldumpslow
  385. %{_bindir}/mysqlhotcopy
  386. %{_bindir}/mysqltest
  387. %{_bindir}/perror
  388. %{_bindir}/replace
  389. %{_bindir}/resolve_stack_dump
  390. %{_bindir}/resolveip
  391. %{_bindir}/wsrep*
  392. %{_sbindir}/mysqld
  393. %{_sbindir}/rcmysql
  394. %exclude %{_libdir}/mysql/plugin/ha_connect.so
  395. %exclude %{_libdir}/mysql/plugin/ha_mroonga.so
  396. %ifarch x86_64
  397. %exclude %{_libdir}/mysql/plugin/ha_tokudb.so
  398. %endif
  399. %exclude %{_datadir}/mysql/mroonga
  400. %{_libdir}/mysql
  401. %config(noreplace) %{_sysconfdir}/my.cnf.d/enable_encryption.preset
  402. %config(noreplace) %{_sysconfdir}/my.cnf.d/server.cnf
  403. %ifarch x86_64
  404. %config(noreplace) %{_sysconfdir}/my.cnf.d/tokudb.cnf
  405. %endif
  406. %config(noreplace,missingok) %{_sysconfdir}/logrotate.d/mysql
  407. %{_sysconfdir}/init.d/mysql
  408. %{_datadir}/mysql
  409. %attr(755, mysql, mysql) %dir %{mysqldatadir}
  410. %files mroonga
  411. %defattr(-, root, root)
  412. %{!?_licensedir:%global license %%doc}
  413. %license groonga groonga-normalizer-mysql
  414. %{_libdir}/mysql/plugin/ha_mroonga.so
  415. %{_datadir}/mysql/mroonga
  416. %files connect
  417. %defattr(-, root, root)
  418. %{_libdir}/mysql/plugin/ha_connect.so
  419. %ifarch x86_64
  420. %files tokudb
  421. %defattr(-, root, root)
  422. %{_libdir}/mysql/plugin/ha_tokudb.so
  423. %{_bindir}/tokuft*
  424. %endif
  425. %files client
  426. %defattr(-, root, root)
  427. %{!?_licensedir:%global license %%doc}
  428. %license COPYING* EXCEPTIONS-CLIENT
  429. %config(noreplace) %{_sysconfdir}/my.cnf.d/mysql-clients.cnf
  430. %{_bindir}/msql2mysql
  431. %{_bindir}/mysql
  432. %{_bindir}/mysql_find_rows
  433. %{_bindir}/mysql_waitpid
  434. %{_bindir}/mysqlaccess
  435. %{_bindir}/mysqladmin
  436. %{_bindir}/mysqlbinlog
  437. %{_bindir}/mysqlcheck
  438. %{_bindir}/mysqldump
  439. %{_bindir}/mysqlimport
  440. %{_bindir}/mysqlshow
  441. %{_bindir}/mysqlslap
  442. %{_bindir}/mytop
  443. %doc %{_mandir}/man1/msql2mysql.1*
  444. %doc %{_mandir}/man1/mysql.1*
  445. %doc %{_mandir}/man1/mysql_find_rows.1*
  446. %doc %{_mandir}/man1/mysql_waitpid.1*
  447. %doc %{_mandir}/man1/mysqlaccess.1*
  448. %doc %{_mandir}/man1/mysqladmin.1*
  449. %doc %{_mandir}/man1/mysqlbinlog.1*
  450. %doc %{_mandir}/man1/mysqlcheck.1*
  451. %doc %{_mandir}/man1/mysqldump.1*
  452. %doc %{_mandir}/man1/mysqlimport.1*
  453. %doc %{_mandir}/man1/mysqlshow.1*
  454. %doc %{_mandir}/man1/mysqlslap.1*
  455. %files devel -f optional-files-devel
  456. %defattr(-, root, root)
  457. %doc %{_mandir}/man1/mysql_config.1*
  458. %{_bindir}/mysql_config
  459. %{_includedir}/mysql
  460. %{_datadir}/aclocal/mysql.m4
  461. %{_datadir}/pkgconfig/mariadb.pc
  462. %{_libdir}/*.so
  463. %{_sysconfdir}/rpm/*
  464. %{_bindir}/mysql_embedded
  465. %files static
  466. %defattr(-,root,root)
  467. %{_libdir}/lib*.a
  468. %if %{with source}
  469. %files source
  470. %defattr(-, root, root)
  471. %{_datadir}/mariadb-source
  472. %endif
  473. %files test
  474. %defattr(-, root, root)
  475. %attr(-, root, root) %{_datadir}/mysql-test
  476. %{_bindir}/mysql_client_test
  477. %{_bindir}/mysql_client_test_embedded
  478. %{_bindir}/mysqltest_embedded
  479. %doc %{_mandir}/man1/mysql_client_test.1*
  480. %doc %{_mandir}/man1/mysql-stress-test.pl.1*
  481. %doc %{_mandir}/man1/mysql-test-run.pl.1*
  482. %doc %{_mandir}/man1/mysql_client_test_embedded.1*
  483. %doc %{_mandir}/man1/mysqltest_embedded.1*
  484. %files embedded
  485. %defattr(-,root,root)
  486. %{_libdir}/libmysqld.so.*
  487. %changelog
  488. * Wed Dec 21 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.20-1
  489. - new upstream release.
  490. - replaced patch1000 to update Mroonga to v6.11.
  491. * Tue Jul 19 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.16-1
  492. - new upstream release.
  493. - replaced patch1000 to update Mroonga to v6.06.
  494. * Wed May 11 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.14-1
  495. - new upstream release.
  496. - replaced patch1000 to update Mroonga to v6.02.
  497. * Fri Apr 1 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.13-1
  498. - new upstream release.
  499. - replaced patch1000 to update Mroonga to v6.01.
  500. * Tue Mar 15 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.12-1
  501. - new upstream release.
  502. - replaced patch1000 to update Mroonga to git HEAD.
  503. * Sat Jan 30 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.11-1
  504. - new upstream release.
  505. - replaced patch1000 to update Mroonga to v5.12.
  506. * Fri Jan 8 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.10-1
  507. - new upstream release.
  508. - replaced patch1000 to update Mroonga to v5.11.
  509. - moved CONNECT and TokuDB storage engines to subpackages.
  510. * Sun Nov 29 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.9-4
  511. - replaced patch1000 to update Mroonga to git HEAD.
  512. * Sat Nov 28 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.9-3
  513. - replaced patch1000 to update Mroonga to git HEAD.
  514. * Thu Nov 26 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.9-2
  515. - replaced patch1000 to update Mroonga to git HEAD.
  516. * Tue Nov 24 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.9-1
  517. - new upstream release.
  518. - replaced patch1000 to update Mroonga to git HEAD.
  519. * Fri Oct 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.8-3
  520. - added BR:jemalloc-devel.
  521. * Thu Oct 29 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.8-2
  522. - replaced patch1000 to update Mroonga to 5.09.
  523. * Wed Oct 21 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.1.8-1
  524. - new upstream release.
  525. - replaced patch1000 for MariaDB 10.1.8.
  526. * Fri Oct 9 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.21-3
  527. - replaced patch1000 to update Mroonga to 5.08.
  528. * Mon Aug 31 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.21-2
  529. - replaced patch1000 to update Mroonga to 5.06.
  530. * Mon Aug 10 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.21-1
  531. - new upstream release.
  532. - added patch1000 to update Mroonga from 5.02 to 5.05.
  533. * Tue Jun 30 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.20-2
  534. - fixed dependencies.
  535. * Fri Jun 19 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.20-1
  536. - new upstream release.
  537. * Sun May 10 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.19-1
  538. - new upstream release.
  539. * Fri May 8 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.18-1
  540. - new upstream release.
  541. * Tue Mar 3 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.17-1
  542. - new upstream release.
  543. * Wed Jan 28 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.16-1
  544. - new upstream release.
  545. * Wed Nov 26 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.15-1
  546. - new upstream release.
  547. - enabled bundled Mroonga.
  548. * Mon Sep 29 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.14-1
  549. - new upstream release.
  550. * Sat May 31 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.11-1
  551. - new upstream release.
  552. * Sun Apr 13 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.10-2
  553. - fixed Conflicts: and Obsoletes:.
  554. * Mon Mar 31 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.10-1
  555. - new upstream release.
  556. * Mon Mar 24 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.9-1
  557. - new upstream release.
  558. * Tue Feb 11 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.8-1
  559. - new upstream release.
  560. * Sat Dec 07 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.6-2
  561. - removed duplicated files.
  562. * Wed Dec 04 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.6-1
  563. - switched to MariaDB.
  564. * Wed Feb 20 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.30-1
  565. - new upstream release.
  566. * Fri Nov 16 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.28-1
  567. - new upstream release.
  568. * Sat Sep 15 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.27-1
  569. - new upstream release.
  570. - added a sub-package 'MySQL-source".
  571. - added some macros for rpm.
  572. * Thu Jun 21 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.25-1
  573. - new upstream release.
  574. * Thu May 10 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.24-1
  575. - new upstream release.
  576. * Tue May 01 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.23-1
  577. - new upstream release.
  578. - added "Vendor:" and "Distribution:" tag.
  579. * Tue Aug 23 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.5.15-1
  580. - new upstream release.
  581. - removed NDB cluster support.
  582. * Mon Apr 18 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.56-3
  583. - Added "BR: zlib-devel" to MySQL-devel.
  584. * Sun Apr 03 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.56-2
  585. - Added "BR: openssl-devel" to MySQL-devel.
  586. * Fri Mar 11 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.56-1
  587. - new upstream release.
  588. * Mon Jan 10 2011 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.54-1
  589. - new upstream release.
  590. - updated jp-patch.
  591. - added ssl support.
  592. * Sat Nov 06 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.52-1
  593. - new upstream release.
  594. - replaced '%%__find_requires' to '%%__perl_requires'.
  595. - updated jp-patch.
  596. * Fri Oct 29 2010 Shu KONNO <owa@bg.wakwak.com> 5.1.44-3
  597. - added mysql-5.1.44-lib64.patch (on x86_64)
  598. - added -fPIC (on x86_64)
  599. * Sun Oct 17 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.1.44-2
  600. - made embedded package again
  601. * Fri Mar 05 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.44-1
  602. - new upstream release.
  603. - updated jp-patch.
  604. * Thu Feb 04 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.43-2
  605. - VineSeed: rebuilt with new toolchain.
  606. * Wed Feb 03 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.43-1
  607. - new upstream release.
  608. - fixed CVE-2009-4484.
  609. * Fri Nov 20 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.41-1
  610. - new upstream release.
  611. * Thu Nov 19 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.40-2
  612. - added net-tools to 'Requires'.
  613. - added groff to 'BuildRequires'.
  614. - renamed subpackage 'MySQL-shared' to 'libmysqlclient16' (VineSeed only).
  615. * Tue Nov 10 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.40-1
  616. - new upstream release.
  617. * Sat Sep 26 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.39-1
  618. - new upstream release.
  619. * Sun Jul 5 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.36-1
  620. - new upstream release.
  621. - dropped %%Patch100 (fixed in upstream).
  622. * Sat Jun 6 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.35-1
  623. - new upstream release.
  624. - add %%Patch100 (no longer needed for MySQL-5.1.36 or later).
  625. * Thu May 21 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.34-1
  626. - new upstream release.
  627. - rename 'MySQL-bench' to 'MySQL-test'.
  628. - update Patch0.
  629. - change default charset to 'utf8'.
  630. * Sat Apr 12 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.51a-1
  631. - new upstream release.
  632. - update Patch0.
  633. - add "--with-client-charset=ujis".
  634. - sync %%files to official RPM.
  635. - remove MySQL-Max.
  636. * Thu Dec 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.0.27-0vl7
  637. - for VineSeed
  638. * Thu Dec 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.0.27-0vl6
  639. - move shared library from /usr/lib/ to /usr/lib/mysql/
  640. - add /etc/ld.so.conf.d/*.conf
  641. - fix broken libmysqlcient*.la files (or should we remove them permanently?)
  642. * Sat Jun 16 2007 IWAI, Masaharu <iwai@alib.jp> 5.0.27-0vl5
  643. - rebuild <BTS:VineLinux:534>
  644. * Mon Nov 13 2006 NAKAMURA Kenta <kenta@vinelinux.org> 5.0.27-0vl4
  645. - added -fPIC
  646. * Mon Oct 30 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.27-0vl3
  647. - fixed dependency. <BTS:338>
  648. * Mon Oct 30 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.27-0vl2
  649. - add %%Patch1. <BTS:320>
  650. * Sat Oct 28 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.27-0vl1
  651. - new upstream release.
  652. * Fri Oct 27 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.26-0vl1
  653. - new upstream release.
  654. * Sat Jun 3 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.22-0vl1
  655. - new upstream release.
  656. * Sat May 13 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.21-0vl1
  657. - release++.
  658. * Wed May 10 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 5.0.21-0vl0
  659. - new upstream release.
  660. - for VineSeed.
  661. * Wed Feb 8 2006 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 4.1.16-0vl0
  662. - new upstream release.
  663. - replace Patch0 for MySQL-4.1.16.
  664. * Thu Oct 6 2005 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 4.1.14-0vl0
  665. - new upstream release.
  666. - add Patch0.
  667. * Tue Sep 6 2005 Takeyuki FUJIOKA <fuji@ftserve.net> 4.0.25-0vl0
  668. - new upstream version
  669. -- mysql-4.0.25
  670. * Fri Jan 21 2005 Takeyuki FUJIOKA <fuji@ftserve.net> 4.0.23-0vl0
  671. - new upstream version
  672. -- mysql-4.0.23
  673. * Tue Sep 28 2004 Takeyuki FUJIOKA <fuji@ftserve.net> 4.0.22-0vl0
  674. - new upstream version
  675. -- mysql-4.0.22
  676. * Tue Sep 28 2004 Takeyuki FUJIOKA <fuji@ftserve.net> 4.0.21-0vl1
  677. - new upstream version
  678. -- mysql-4.0.21
  679. * Fri May 21 2004 Satoshi MACHINO <machino@vinelinux.org> 4.0.20-0vl1
  680. - new upstream version
  681. -- mysql-4.0.20
  682. * Tue May 04 2004 Tomoya TAKA <taka@vinelinux.org> 4.0.18-0vl2
  683. - modify CFLAGS, CXXFLAGS and configure options for alpha
  684. * Tue Mar 23 2004 Satoshi MACHINO <machino@vinelinux.org> 4.0.18-0vl1
  685. - Upgraded to MySQL-4
  686. - added "with-charset=ujis" and "without-readline" to configure (vineseed-plus-02150)
  687. - merged to MySQL Official packages
  688. -- renamed package "MySQL" to "MySQL-server"
  689. -- when using gcc, _always_ use CXX=gcc
  690. -- replaced Copyright with License field (Copyright is obsolete)
  691. -- added myisam_ftdump to the Server package
  692. -- marked /etc/logrotate.d/mysql as a config file (BUG 2156)
  693. -- fixed file permissions (BUG 1672)
  694. -- removed dependency on MySQL-client from the MySQL-devel subpackage
  695. -- as it is not really required. (BUG 1610)
  696. -- Fixed BUG 1162 (removed macro names from the changelog)
  697. -- Really fixed BUG 998 (disable the checking for installed but
  698. -- unpackaged files)
  699. -- Fixed BUG 959 (libmysqld not being compiled properly)
  700. -- Fixed BUG 998 (RPM build errors): added missing files to the
  701. -- distribution (mysql_fix_extensions, mysql_tableinfo, mysqldumpslow,
  702. -- mysql_fix_privilege_tables.1), removed "-n" from install section.
  703. -- removed the GIF Icon (file was not included in the sources anyway)
  704. -- removed unused variable shared_lib_version
  705. -- do not run automake before building the standard binary
  706. -- (should not be necessary)
  707. -- add server suffix '-standard' to standard binary (to be in line
  708. -- with the binary tarball distributions)
  709. -- allow overriding CC and CXX (required when building
  710. -- with other compilers)
  711. * Mon Apr 14 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 3.23.56-0vl5
  712. - added BuildRequires: automake16
  713. * Thu Apr 03 2003 Tomoya TAKA <taka@vinelinux.org> 3.23.56-0vl3
  714. - add '-fPIC -DPIC' to CFLAGS on alpha
  715. - little fix of spec file
  716. * Thu Mar 27 2003 Tomoya TAKA <taka@vinelinux.org> 3.23.56-0vl2
  717. - enable MySQL-shared subpackage for alpha
  718. - delete 'BuildPrereq: kernel24-headers' for alpha
  719. - fix shared %files (exclude sparc)
  720. * Tue Mar 18 2003 Satoshi MACHINO <machino@vinelinux.org> 3.23.56-0vl1
  721. - new upstream version
  722. * Sun Mar 9 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.23.55-0vl2
  723. - fixed devel %files (dropped *.la files)
  724. * Tue Jan 28 2003 Satoshi MACHINO <machino@vinelinux.org> 3.23.55-0vl1
  725. - new upstream version
  726. - fixed document permission
  727. * Sat Dec 21 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.54a-0vl1
  728. - new upstream version
  729. * Sat Oct 19 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.53-0vl2
  730. - dropped MySQL-Max sub-pakage for sparc/sparc64/alpha
  731. -- don't work
  732. * Wed Oct 16 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.53-0vl1
  733. - new upstream version
  734. - diseble-assembler in configure on sparc,sparc64,alpha
  735. * Wed Aug 21 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.52-0vl1
  736. - new upstream version
  737. - moved some man files to main package
  738. - added enable-local-infile in configure
  739. - changed --with-extra-charsets=all in configure
  740. * Fri Jun 14 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.51-0vl2
  741. - fixed changelog
  742. * Thu Jun 13 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.51-0vl1
  743. - updated to mysql-3.23.51
  744. * Fri Mar 15 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.49-0vl2
  745. - rebuild on zlib-1.1.4(security fix.)
  746. * Mon Feb 18 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.49-0vl1
  747. - updated to mysql-2.23.49
  748. * Tue Feb 12 2002 Tomoya TAKA <taka@vinelinux.org> 3.23.48-0vl2
  749. - add 'BuildPrereq: kernel24-headers' on alpha
  750. - remove shared library and max on alpha
  751. * Tue Feb 12 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.48-0vl1
  752. - updated to mysql-3.23.48
  753. * Thu Jan 03 2002 Satoshi MACHINO <machino@vinelinux.org> 3.23.47-0vl1
  754. - updated to mysql-3.23.47
  755. * Wed Dec 05 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.46-0vl1
  756. - updated to mysql-3.23.46
  757. * Thu Nov 29 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.45-0vl1
  758. - updated to mysql-3.23.45
  759. * Mon Nov 12 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.44-0vl1
  760. - updated to mysql-3.23.44
  761. * Sat Oct 13 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.43-0vl1
  762. - updated to mysql-3.23.43
  763. - removed shared library and max on sparc
  764. * Wed Sep 12 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.42-0vl1
  765. - updated to mysql-3.23.42
  766. - changed MYSQL_BUILD_CC: and MYSQL_BUILD_XCC: to -gcc
  767. * Thu Aug 30 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.41-0vl1
  768. - updated to mysql-3.23.41
  769. * Wed Aug 22 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.40-0vl1
  770. - updated to mysql-3.23.40
  771. * Tue Jul 10 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.39-0vl1
  772. - updated to mysql-3.23.39
  773. * Fri Jun 15 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.38-1vl2
  774. - added configure --with-charset=ujis
  775. * Sun May 27 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.38-1vl2
  776. - used some rpmmacro
  777. * Fri May 25 2001 Satoshi MACHINO <machino@vinelinux.org> 3.23.38-1vl1
  778. - updated to MySQL-3.23.38
  779. * Thu Dec 07 2000 Satoshi MACHINO <machino@vinelinux.org> 3.23.28-1vl2
  780. - removed Bench pakages
  781. * Tue Dec 05 2000 Satoshi MACHINO <machino@vinelinux.org> 3.23.28-1vl1
  782. - removed pt_BR locale
  783. - build on Vine Linux
  784. - partially used rpmmacros
  785. - added %clean tag
  786. * Fri Aug 18 2000 Tim Smith <tim@mysql.com>
  787. - Added separate libmysql_r directory; now both a threaded
  788. and non-threaded library is shipped.
  789. * Tue Sep 28 1999 David Axmark <davida@mysql.com>
  790. - Added the support-files/my-example.cnf to the docs directory.
  791. - Removed devel dependency on base since it is about client
  792. development.
  793. * Wed Sep 8 1999 David Axmark <davida@mysql.com>
  794. - Cleaned up some for 3.23.
  795. * Thu Jul 1 1999 David Axmark <davida@mysql.com>
  796. - Added support for shared libraries in a separate sub
  797. package. Original fix by David Fox (dsfox@cogsci.ucsd.edu)
  798. - The --enable-assembler switch is now automatically disables on
  799. platforms there assembler code is unavailable. This should allow
  800. building this RPM on non i386 systems.
  801. * Mon Feb 22 1999 David Axmark <david@detron.se>
  802. - Removed unportable cc switches from the spec file. The defaults can
  803. now be overridden with environment variables. This feature is used
  804. to compile the official RPM with optimal (but compiler version
  805. specific) switches.
  806. - Removed the repetitive description parts for the sub rpms. Maybe add
  807. again if RPM gets a multiline macro capability.
  808. - Added support for a pt_BR translation. Translation contributed by
  809. Jorge Godoy <jorge@bestway.com.br>.
  810. * Wed Nov 4 1998 David Axmark <david@detron.se>
  811. - A lot of changes in all the rpm and install scripts. This may even
  812. be a working RPM :-)
  813. * Sun Aug 16 1998 David Axmark <david@detron.se>
  814. - A developers changelog for MySQL is available in the source RPM. And
  815. there is a history of major user visible changed in the Reference
  816. Manual. Only RPM specific changes will be documented here.