mariadb-vl.spec 39 KB

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