]> git.pld-linux.org Git - packages/mysql.git/blame - mysql.spec
sample about setting default storage engine
[packages/mysql.git] / mysql.spec
CommitLineData
50200f22 1# TODO:
3878a7a4 2# - unpackaged files:
3878a7a4 3# /usr/bin/mysqlaccess.conf
ce5017a4 4# /usr/lib/mysql/plugin/daemon_example.ini
eb36adcd 5# - make response_time_distribution.patch compatible with i386 alpha sparc ppc arches
1a9285c0 6# - mysqldump ... (invalid usage) prints to stdout not stderr (idiotic if you want to create dump and get usage in .sql)
c0326166 7# - http://bugs.mysql.com/bug.php?id=16470
9cc19375
AM
8# - innodb are dynamic (= as plugins) ?
9# - missing have_archive, have_merge
10# - is plugin_dir lib64 safe?
11# - Using NDB Cluster... could not find sci transporter in /{include, lib}
13e51307 12# - !!! Makefiles for libmysqld.so !!!
643c5039
AG
13# - segfaults on select from non-mysql user (caused by builder environment):
14# https://bugs.launchpad.net/pld-linux/+bug/381904
20272b1d 15# (profiling disabled temporaily to workaround this)
6c94aa6c 16#
17# Conditional build:
aa8262f8 18%bcond_with autodeps # BR packages needed only for resolving deps
54e670e7 19%bcond_without innodb # InnoDB storage engine support
84fe95c7 20%bcond_without big_tables # Support tables with more than 4G rows even on 32 bit platforms
dc311758 21%bcond_without federated # Federated storage engine support
54e670e7
PG
22%bcond_without raid # RAID support
23%bcond_without ssl # OpenSSL support
24%bcond_without tcpd # libwrap (tcp_wrappers) support
26802bc2 25%bcond_without sphinx # Sphinx storage engine support
7fbcff7e 26%bcond_with tests # FIXME: don't run correctly
08472466 27%bcond_with ndb # NDB is now a separate product, this here is broken, so disable it
92992b51 28
c2c4112b 29%include /usr/lib/rpm/macros.perl
ceb5ca86 30Summary: MySQL: a very fast and reliable SQL database engine
fe56cb4d
ER
31Summary(de.UTF-8): MySQL: ist eine SQL-Datenbank
32Summary(fr.UTF-8): MySQL: un serveur SQL rapide et fiable
33Summary(pl.UTF-8): MySQL: bardzo szybka i niezawodna baza danych (SQL)
34Summary(pt_BR.UTF-8): MySQL: Um servidor SQL rápido e confiável
35Summary(ru.UTF-8): MySQL - быстрый SQL-сервер
36Summary(uk.UTF-8): MySQL - швидкий SQL-сервер
37Summary(zh_CN.UTF-8): MySQL数据库服务器
75eb20a9 38Name: mysql
35e71fa3
AM
39%define percona_rel 28.1
40Version: 5.5.27
63a6ce7c 41Release: 1
5a944cb3 42License: GPL + MySQL FLOSS Exception
7803433d 43Group: Applications/Databases
92992b51 44# Source0Download: http://dev.mysql.com/downloads/mysql/5.5.html#downloads
a4f004ee 45# Source0: http://vesta.informatik.rwth-aachen.de/mysql/Downloads/MySQL-5.5/%{name}-%{version}.tar.gz
35e71fa3
AM
46Source0: http://www.percona.com/redir/downloads/Percona-Server-5.5/Percona-Server-5.5.27-28.1/source/Percona-Server-5.5.27-rel28.1.tar.gz
47# Source0-md5: 92fecef62446b5388ec2369d997506ed
29ffd636
AM
48Source100: http://sphinxsearch.com/files/sphinx-2.0.3-release.tar.gz
49# Source100-md5: a1293aecd5034aa797811610beb7ba89
2a30c7ca 50Source1: %{name}.init
51Source2: %{name}.sysconfig
52Source3: %{name}.logrotate
53Source4: %{name}d.conf
50200f22 54Source5: %{name}-clusters.conf
d72472ee
AM
55Source7: %{name}-ndb.init
56Source8: %{name}-ndb.sysconfig
57Source9: %{name}-ndb-mgm.init
58Source10: %{name}-ndb-mgm.sysconfig
59Source11: %{name}-ndb-cpc.init
60Source12: %{name}-ndb-cpc.sysconfig
7df2d935 61Source13: %{name}-client.conf
978cdac2 62Source14: my.cnf
fc032bd9
AM
63# from fedora
64Source15: lib%{name}.version
63a6ce7c 65
52c09715 66Patch4: bug-62472.patch
fc032bd9
AM
67# from fedora
68Patch5: %{name}-versioning.patch
94fa71d5 69Patch6: %{name}-system-users.patch
63a6ce7c 70
7df2d935 71Patch8: %{name}-client-config.patch
1b41566d 72Patch9: %{name}-build.patch
9cc19375 73Patch11: %{name}-upgrade.patch
a2e8058d 74Patch12: %{name}-config.patch
3d4dbd2e 75Patch14: %{name}-bug-43594.patch
fa51fc20 76Patch18: %{name}-sphinx.patch
fc032bd9 77Patch19: %{name}-chain-certs.patch
90e4ba9d
ER
78# from fedora
79Patch20: %{name}-dubious-exports.patch
92992b51 80URL: http://www.mysql.com/products/community/
9dca226d 81BuildRequires: bison
cd6a3f78 82BuildRequires: cmake >= 2.6
e85f7aef 83BuildRequires: groff
dc8a8fa0
ER
84%if "%{pld_release}" == "ac"
85BuildRequires: libstdc++4-devel >= 5:4.0
86%else
6a4d2f37 87BuildRequires: libstdc++-devel >= 5:4.0
dc8a8fa0 88%endif
374c3070 89BuildRequires: libtool
2e5f696d 90%{?with_tcpd:BuildRequires: libwrap-devel}
7b36dde8 91BuildRequires: ncurses-devel >= 4.2
2e5f696d 92%{?with_ssl:BuildRequires: openssl-devel >= 0.9.7d}
3f8fcf96 93%{?with_autodeps:BuildRequires: perl-DBI}
d15a6540 94BuildRequires: perl-devel >= 1:5.6.1
7b36dde8 95BuildRequires: readline-devel >= 4.2
d15a6540 96BuildRequires: rpm-perlprov >= 4.1-13
6a4d2f37 97BuildRequires: rpmbuild(macros) >= 1.597
84fe95c7 98BuildRequires: sed >= 4.0
5a225b4d 99BuildRequires: zlib-devel
7803433d
ER
100Requires(post,preun): /sbin/chkconfig
101Requires(postun): /usr/sbin/groupdel
102Requires(postun): /usr/sbin/userdel
33f9bccb 103Requires(pre): /bin/id
7803433d 104Requires(pre): /usr/bin/getgid
33f9bccb 105Requires(pre): /usr/sbin/groupadd
106Requires(pre): /usr/sbin/useradd
6e6b75c9 107Requires(triggerpostun): sed >= 4.0
ad0a7267 108Requires: %{name}-charsets = %{version}-%{release}
5a0031b8 109Requires: %{name}-libs = %{version}-%{release}
2539bd3a 110Requires: /usr/bin/setsid
7803433d 111Requires: rc-scripts >= 0.2.0
99e96521
ER
112Suggests: mysql-client
113%{?with_tcpd:Suggests: tcp_wrappers}
a76adf0b 114Suggests: vim-syntax-mycnf
717073d7 115Provides: MySQL-server
c354982f 116Provides: group(mysql)
717073d7 117Provides: msqlormysql
c354982f 118Provides: user(mysql)
5a225b4d 119Obsoletes: MySQL
120Obsoletes: mysql-server
2070f281 121Conflicts: logrotate < 3.8.0
c354982f 122BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
ceb5ca86 123
8de1b4ed 124%define _libexecdir %{_sbindir}
e2417b45 125%define _localstatedir /var/lib/mysql
ea2c1c6a 126%define _mysqlhome /home/services/mysql
e73cea44 127
6eab349a 128%define _noautoreqdep 'perl(DBD::mysql)'
9cc19375 129
ceb5ca86 130%description
75eb20a9 131MySQL is a true multi-user, multi-threaded SQL (Structured Query
132Language) database server. SQL is the most popular database language
133in the world. MySQL is a client/server implementation that consists of
134a server daemon mysqld and many different client programs/libraries.
135
136The main goals of MySQL are speed, robustness and easy to use. MySQL
137was originally developed because we at Tcx needed a SQL server that
138could handle very big databases with magnitude higher speed than what
139any database vendor could offer to us. We have now been using MySQL
140since 1996 in a environment with more than 40 databases, 10,000
141tables, of which more than 500 have more than 7 million rows. This is
142about 50G of mission critical data.
143
144The base upon which MySQL is built is a set of routines that have been
145used in a highly demanding production environment for many years.
146While MySQL is still in development, it already offers a rich and
147highly useful function set.
ceb5ca86 148
a82d818e 149%description -l fr.UTF-8
3fe2f194 150MySQL est un serveur de bases de donnees SQL vraiment multi-usagers et
75eb20a9 151multi-taches. Le langage SQL est le langage de bases de donnees le
152plus populaire au monde. MySQL est une implementation client/serveur
153qui consiste en un serveur (mysqld) et differents
154programmes/bibliotheques clientes.
155
156Les objectifs principaux de MySQL sont: vitesse, robustesse et
157facilite d'utilisation. MySQL fut originalement developpe parce que
158nous, chez Tcx, avions besoin d'un serveur SQL qui pouvait gerer de
159tres grandes bases de donnees avec une vitesse d'un ordre de magnitude
160superieur a ce que n'importe quel vendeur pouvait nous offrir. Nous
161utilisons MySQL depuis 1996 dans un environnement avec plus de 40
162bases de donnees, 10000 tables, desquelles plus de 500 ont plus de 7
163millions de lignes. Ceci represente environ 50G de donnees critiques.
164
165A la base de la conception de MySQL, on retrouve une serie de routines
166qui ont ete utilisees dans un environnement de production pendant
167plusieurs annees. Meme si MySQL est encore en developpement, il offre
168deja une riche et utile serie de fonctions.
3fe2f194 169
a82d818e
JR
170%description -l pl.UTF-8
171MySQL to prawdziwie wieloużytkownikowy, wielowątkowy serwer baz danych
172SQL. SQL jest najpopularniejszym na świecie językiem używanym do baz
173danych. MySQL to implementacja klient/serwer składająca się z demona
174mysqld i wielu różnych programów i bibliotek klienckich.
175
176Głównymi celami MySQL-a są szybkość, potęga i łatwość użytkowania.
177MySQL oryginalnie był tworzony, ponieważ autorzy w Tcx potrzebowali
178serwera SQL do obsługi bardzo dużych baz danych z szybkością o wiele
179większą, niż mogli zaoferować inni producenci baz danych. Używają go
180od 1996 roku w środowisku z ponad 40 bazami danych, 10 000 tabel, z
181których ponad 500 zawiera ponad 7 milionów rekordów - w sumie około
d451850c
JB
18250GB krytycznych danych.
183
a82d818e
JR
184Baza, na której oparty jest MySQL, składa się ze zbioru procedur,
185które były używane w bardzo wymagającym środowisku produkcyjnym przez
186wiele lat. Pomimo, że MySQL jest ciągle rozwijany, już oferuje bogaty
187i użyteczny zbiór funkcji.
ceb5ca86 188
a82d818e 189%description -l de.UTF-8
1c06b825 190MySQL ist eine SQL-Datenbank. Allerdings ist sie im Gegensatz zu
191Oracle, DB2 oder PostgreSQL keine relationale Datenbank. Die Daten
a82d818e
JR
192werden zwar in zweidimensionalen Tabellen gespeichert und können mit
193einem Primärschlüssel versehen werden. Es ist aber keine Definition
194eines Fremdschlüssels möglich. Der Benutzer ist somit bei einer
195MySQL-Datenbank völlig allein für die (referenzielle) Integrität der
1c06b825 196Daten verantwortlich. Allein durch die Nutzung externer
a82d818e
JR
197Tabellenformate, wie InnoDB bzw Berkeley DB wird eine Relationalität
198ermöglicht. Diese Projekte sind aber getrennt von MySQL zu betrachten.
1c06b825 199
a82d818e
JR
200%description -l pt_BR.UTF-8
201O MySQL é um servidor de banco de dados SQL realmente multiusuário e
202multi-tarefa. A linguagem SQL é a mais popular linguagem para banco de
203dados no mundo. O MySQL é uma implementação cliente/servidor que
75eb20a9 204consiste de um servidor chamado mysqld e diversos
a82d818e 205programas/bibliotecas clientes. Os principais objetivos do MySQL são:
75eb20a9 206velocidade, robustez e facilidade de uso. O MySQL foi originalmente
a82d818e 207desenvolvido porque nós na Tcx precisávamos de um servidor SQL que
75eb20a9 208pudesse lidar com grandes bases de dados e com uma velocidade muito
209maior do que a que qualquer vendedor podia nos oferecer. Estamos
210usando o MySQL desde 1996 em um ambiente com mais de 40 bases de dados
a82d818e
JR
211com 10.000 tabelas, das quais mais de 500 têm mais de 7 milhões de
212linhas. Isto é o equivalente a aproximadamente 50G de dados críticos.
213A base da construção do MySQL é uma série de rotinas que foram usadas
214em um ambiente de produção com alta demanda por muitos anos. Mesmo o
215MySQL estando ainda em desenvolvimento, ele já oferece um conjunto de
216funções muito ricas e úteis. Veja a documentação para maiores
217informações.
218
219%description -l ru.UTF-8
220MySQL - это SQL (Structured Query Language) сервер базы данных. MySQL
221была написана Michael'ом (monty) Widenius'ом. См. файл CREDITS в
222дистрибутиве на предмет других участников проекта и прочей информации
223о MySQL.
224
225%description -l uk.UTF-8
226MySQL - це SQL (Structured Query Language) сервер бази даних. MySQL
227було написано Michael'ом (monty) Widenius'ом. Див. файл CREDITS в
228дистрибутиві для інформації про інших учасників проекту та іншої
229інформації.
bf60a170 230
2539bd3a
JB
231%package charsets
232Summary: MySQL - character sets definitions
fe56cb4d 233Summary(pl.UTF-8): MySQL - definicje kodowań znaków
2539bd3a
JB
234Group: Applications/Databases
235
236%description charsets
237This package contains character sets definitions needed by both client
238and server.
239
a82d818e
JR
240%description charsets -l pl.UTF-8
241Ten pakiet zawiera definicje kodowań znaków potrzebne dla serwera i
2539bd3a
JB
242klienta.
243
17299970
ER
244%package -n mysqlhotcopy
245Summary: mysqlhotcopy - A MySQL database backup program
5fc524a3 246Summary(pl.UTF-8): mysqlhotcopy - program do tworzenia kopii zapasowych baz MySQL
17299970 247Group: Applications/Databases
17299970
ER
248Requires: perl-DBD-mysql
249
250%description -n mysqlhotcopy
251mysqlhotcopy uses LOCK TABLES, FLUSH TABLES, and cp or scp to make a
252database backup quickly. It is the fastest way to make a backup of the
253database or single tables, but it can be run only on the same machine
254where the database directories are located. mysqlhotcopy works only
255for backing up MyISAM and ARCHIVE tables.
256
257See innobackup package to backup InnoDB tables.
258
5fc524a3
JB
259%description -n mysqlhotcopy -l pl.UTF-8
260mysqlhotcopy wykorzystuje LOCK TABLES, FLUSH TABLES oraz cp i scp do
261szybkiego tworzenia kopii zapasowych baz danych. Jest to najszybszy
262sposób wykonania kopii zapasowej bazy danych lub pojedynczych tabel,
263ale może działać tylko na maszynie, na której znajdują się katalogi z
264bazą danych. mysqlhotcopy działa tylko dla tabel typu MyISAM i
265ARCHIVE.
266
267Narzędzie do tworzenia kopii tabel InnoDB znajduje się w pakiecie
268innobackup.
269
8de1b4ed 270%package extras
84bd803c 271Summary: MySQL additional utilities
fe56cb4d 272Summary(pl.UTF-8): Dodatkowe narzędzia do MySQL
8de1b4ed 273Group: Applications/Databases
da1eef6c 274Requires: %{name}-client = %{version}-%{release}
3103a6d7 275Requires: %{name}-libs = %{version}-%{release}
8de1b4ed 276
277%description extras
8afdedd4 278MySQL additional utilities except Perl scripts (they may be found in
73d155ac 279%{name}-extras-perl package).
8afdedd4 280
a82d818e
JR
281%description extras -l pl.UTF-8
282Dodatkowe narzędzia do MySQL - z wyjątkiem skryptów Perla (które są w
3c7e6ab8 283pakiecie %{name}-extras-perl).
84bd803c 284
8afdedd4 285%package extras-perl
286Summary: MySQL additional utilities written in Perl
fe56cb4d 287Summary(pl.UTF-8): Dodatkowe narzędzia do MySQL napisane w Perlu
8afdedd4 288Group: Applications/Databases
3103a6d7 289Requires: %{name}-extras = %{version}-%{release}
716c371c
ER
290# this is just for the sake of smooth upgrade, not to break systems
291Requires: mysqlhotcopy = %{version}-%{release}
b8f6b666 292Requires: perl(DBD::mysql)
293
8afdedd4 294%description extras-perl
295MySQL additional utilities written in Perl.
8de1b4ed 296
a82d818e
JR
297%description extras-perl -l pl.UTF-8
298Dodatkowe narzędzia do MySQL napisane w Perlu.
84bd803c 299
ceb5ca86 300%package client
ceb5ca86 301Summary: MySQL - Client
fe56cb4d
ER
302Summary(pl.UTF-8): MySQL - Klient
303Summary(pt.UTF-8): MySQL - Cliente
304Summary(ru.UTF-8): MySQL клиент
305Summary(uk.UTF-8): MySQL клієнт
ceb5ca86 306Group: Applications/Databases
ad0a7267 307Requires: %{name}-charsets = %{version}-%{release}
1101e5b7 308Requires: %{name}-libs = %{version}-%{release}
c486a119 309Obsoletes: MySQL-client
ceb5ca86
AM
310
311%description client
75eb20a9 312This package contains the standard MySQL clients.
ceb5ca86 313
a82d818e 314%description client -l fr.UTF-8
3fe2f194 315Ce package contient les clients MySQL standards.
316
a82d818e 317%description client -l pl.UTF-8
ceb5ca86
AM
318Standardowe programy klienckie MySQL.
319
a82d818e
JR
320%description client -l pt_BR.UTF-8
321Este pacote contém os clientes padrão para o MySQL.
ceb5ca86 322
a82d818e
JR
323%description client -l ru.UTF-8
324Этот пакет содержит только клиент MySQL.
bf60a170 325
a82d818e
JR
326%description client -l uk.UTF-8
327Цей пакет містить тільки клієнта MySQL.
bf60a170 328
3fe2f194 329%package libs
330Summary: Shared libraries for MySQL
21dbb6ad 331Summary(pl.UTF-8): Biblioteki współdzielone MySQL
031565bb 332Group: Libraries
5c69de9f 333Obsoletes: libmysql10
be07ff22 334Obsoletes: mysql-doc < 4.1.12
ceb5ca86 335
3fe2f194 336%description libs
c2c4112b 337Shared libraries for MySQL.
ceb5ca86 338
a82d818e 339%description libs -l pl.UTF-8
21dbb6ad 340Biblioteki współdzielone MySQL.
84bd803c 341
ceb5ca86 342%package devel
21dbb6ad
JB
343Summary: MySQL - development header files and other files
344Summary(pl.UTF-8): MySQL - Pliki nagłówkowe i inne dla programistów
fe56cb4d
ER
345Summary(pt.UTF-8): MySQL - Medições de desempenho
346Summary(ru.UTF-8): MySQL - хедеры и библиотеки разработчика
347Summary(uk.UTF-8): MySQL - хедери та бібліотеки програміста
047122f1 348Group: Development/Libraries
3103a6d7 349Requires: %{name}-libs = %{version}-%{release}
2e5f696d 350%{?with_ssl:Requires: openssl-devel}
bbc0ff50 351Requires: zlib-devel
c486a119 352Obsoletes: MySQL-devel
5c69de9f 353Obsoletes: libmysql10-devel
ceb5ca86
AM
354
355%description devel
21dbb6ad 356This package contains the development header files and other files
ceb5ca86
AM
357necessary to develop MySQL client applications.
358
a82d818e 359%description devel -l fr.UTF-8
bf60a170 360Ce package contient les fichiers entetes et les librairies de
361developpement necessaires pour developper des applications clientes
362MySQL.
363
a82d818e 364%description devel -l pl.UTF-8
21dbb6ad 365Pliki nagłówkowe i inne pliki konieczne do kompilacji aplikacji
ceb5ca86 366klienckich MySQL.
b24ee098 367
a82d818e
JR
368%description devel -l pt_BR.UTF-8
369Este pacote contém os arquivos de cabeçalho (header files) e
370bibliotecas necessárias para desenvolver aplicações clientes do MySQL.
b24ee098 371
a82d818e
JR
372%description devel -l ru.UTF-8
373Этот пакет содержит хедеры и библиотеки разработчика, необходимые для
374разработки клиентских приложений.
bf60a170 375
a82d818e
JR
376%description devel -l uk.UTF-8
377Цей пакет містить хедери та бібліотеки програміста, необхідні для
378розробки програм-клієнтів.
3fe2f194 379
380%package static
01875e6d 381Summary: MySQL static libraries
fe56cb4d
ER
382Summary(pl.UTF-8): Biblioteki statyczne MySQL
383Summary(ru.UTF-8): MySQL - статические библиотеки
384Summary(uk.UTF-8): MySQL - статичні бібліотеки
3fe2f194 385Group: Development/Libraries
3103a6d7 386Requires: %{name}-devel = %{version}-%{release}
c44d1e10 387Obsoletes: MySQL-static
3fe2f194 388
389%description static
73d155ac 390MySQL static libraries.
3fe2f194 391
a82d818e 392%description static -l pl.UTF-8
3fe2f194 393Biblioteki statyczne MySQL.
394
a82d818e
JR
395%description static -l ru.UTF-8
396Этот пакет содержит статические библиотеки разработчика, необходимые
397для разработки клиентских приложений.
bf60a170 398
a82d818e
JR
399%description static -l uk.UTF-8
400Цей пакет містить статичні бібліотеки програміста, необхідні для
401розробки програм-клієнтів.
bf60a170 402
d1e91a2d
AM
403%package bench
404Summary: MySQL - Benchmarks
fe56cb4d
ER
405Summary(pl.UTF-8): MySQL - Programy testujące szybkość działania bazy
406Summary(pt.UTF-8): MySQL - Medições de desempenho
407Summary(ru.UTF-8): MySQL - бенчмарки
408Summary(uk.UTF-8): MySQL - бенчмарки
d1e91a2d
AM
409Group: Applications/Databases
410Requires: %{name} = %{version}-%{release}
411Requires: %{name}-client
412Requires: perl(DBD::mysql)
413Obsoletes: MySQL-bench
414
415%description bench
416This package contains MySQL benchmark scripts and data.
417
a82d818e
JR
418%description bench -l pl.UTF-8
419Programy testujące szybkość serwera MySQL.
d1e91a2d 420
a82d818e
JR
421%description bench -l pt_BR.UTF-8
422Este pacote contém medições de desempenho de scripts e dados do MySQL.
d1e91a2d 423
a82d818e
JR
424%description bench -l ru.UTF-8
425Этот пакет содержит скрипты и данные для оценки производительности
d1e91a2d
AM
426MySQL.
427
a82d818e
JR
428%description bench -l uk.UTF-8
429Цей пакет містить скрипти та дані для оцінки продуктивності MySQL.
d1e91a2d
AM
430
431%package doc
432Summary: MySQL manual
fe56cb4d 433Summary(pl.UTF-8): Podręcznik użytkownika MySQL
d1e91a2d
AM
434Group: Applications/Databases
435
436%description doc
437This package contains manual in HTML format.
438
a82d818e
JR
439%description doc -l pl.UTF-8
440Podręcznik MySQL-a w formacie HTML.
d1e91a2d 441
d72472ee
AM
442%package ndb
443Summary: MySQL - NDB Storage Engine Daemon
fe56cb4d 444Summary(pl.UTF-8): MySQL - demon silnika przechowywania danych NDB
d72472ee
AM
445Group: Applications/Databases
446Requires: %{name}-libs = %{version}-%{release}
447
448%description ndb
449This package contains the standard MySQL NDB Storage Engine Daemon.
450
a82d818e 451%description ndb -l pl.UTF-8
8cdaa5ca
ER
452Ten pakiet zawiera standardowego demona silnika przechowywania danych
453NDB.
a4fd19f2 454
d72472ee
AM
455%package ndb-client
456Summary: MySQL - NDB Clients
fe56cb4d 457Summary(pl.UTF-8): MySQL - programy klienckie NDB
d72472ee
AM
458Group: Applications/Databases
459Requires: %{name}-libs = %{version}-%{release}
460
461%description ndb-client
462This package contains the standard MySQL NDB Clients.
463
a82d818e 464%description ndb-client -l pl.UTF-8
a4fd19f2
JB
465Ten pakiet zawiera standardowe programy klienckie MySQL NDB.
466
d72472ee
AM
467%package ndb-mgm
468Summary: MySQL - NDB Management Daemon
fe56cb4d 469Summary(pl.UTF-8): MySQL - demon zarządzający NDB
d72472ee
AM
470Group: Applications/Databases
471Requires: %{name}-libs = %{version}-%{release}
472
473%description ndb-mgm
474This package contains the standard MySQL NDB Management Daemon.
475
a82d818e
JR
476%description ndb-mgm -l pl.UTF-8
477Ten pakiet zawiera standardowego demona zarządzającego MySQL NDB.
a4fd19f2 478
d72472ee
AM
479%package ndb-cpc
480Summary: MySQL - NDB CPC Daemon
fe56cb4d 481Summary(pl.UTF-8): MySQL - demon NDB CPC
d72472ee
AM
482Group: Applications/Databases
483Requires: %{name}-libs = %{version}-%{release}
484
485%description ndb-cpc
486This package contains the standard MySQL NDB CPC Daemon.
487
a82d818e 488%description ndb-cpc -l pl.UTF-8
a4fd19f2
JB
489Ten pakiet zawiera standardowego demona MySQL NDB CPC.
490
a09e0285 491%prep
a4f004ee 492%setup -q -n Percona-Server-%{version}-rel%{percona_rel} %{?with_sphinx:-a100}
e6696823 493%if %{with sphinx}
fa51fc20 494# http://www.sphinxsearch.com/docs/manual-0.9.9.html#sphinxse-mysql51
e6696823 495mv sphinx-*/mysqlse storage/sphinx
fa51fc20 496%patch18 -p1
e6696823 497%endif
63a6ce7c 498
52c09715 499%patch4 -p1
fc032bd9 500%patch5 -p1
14996ad7 501%patch6 -p1
63a6ce7c 502
7df2d935 503%patch8 -p1
1b41566d 504%patch9 -p1
bbae9ea7 505%patch11 -p1
a2e8058d 506%patch12 -p1
3d4dbd2e 507%patch14 -p0
fc032bd9 508%patch19 -p1
90e4ba9d 509%patch20 -p1
fc032bd9 510
b4e1fa2c 511# to get these files rebuild
a4f004ee
AM
512[ -f sql/sql_yacc.cc ] && rm sql/sql_yacc.cc
513[ -f sql/sql_yacc.h ] && rm sql/sql_yacc.h
b24ee098 514
a09e0285 515%build
8ad2cc9f
AM
516install -d build
517cd build
92992b51
ER
518# NOTE that /var/lib/mysql/mysql.sock is symlink to real sock file
519# (it defaults to first cluster but user may change it to whatever
520# cluster it wants)
234eba13
ER
521
522%if "%{pld_release}" == "ac"
4b2e4b47 523# add suffix, but allow ccache, etc in ~/.rpmmacros
234eba13
ER
524%{expand:%%define __cc %(echo '%__cc' | sed -e 's,-gcc,-gcc4,')}
525%{expand:%%define __cxx %(echo '%__cxx' | sed -e 's,-g++,-g++4,')}
526%{expand:%%define __cpp %(echo '%__cpp' | sed -e 's,-gcc,-gcc4,')}
527%endif
528
fc032bd9
AM
529# upstream has fallen down badly on symbol versioning, do it ourselves
530install -d libmysql
531cp -a %{SOURCE15} libmysql/libmysql.version
532
92992b51 533%cmake \
96962fb9 534 -DCMAKE_BUILD_TYPE=%{!?debug:RelWithDebInfo}%{?debug:Debug} \
259cadd8 535 -DFEATURE_SET="community" \
dbbad511
ER
536 -DCMAKE_C_FLAGS_RELEASE="%{rpmcflags} -DNDEBUG -fno-omit-frame-pointer -fno-strict-aliasing" \
537 -DCMAKE_CXX_FLAGS_RELEASE="%{rpmcxxflags} -DNDEBUG -fno-omit-frame-pointer -fno-strict-aliasing" \
575c6276 538 -DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 \
43adcf34 539 -DWITH_PERFSCHEMA_STORAGE_ENGINE=1 \
8ad2cc9f
AM
540 %{?debug:-DWITH_DEBUG=ON} \
541 -DWITH_FAST_MUTEXES=ON \
dbbad511 542 -DWITH_PIC=ON \
8ad2cc9f 543 -DWITH_LIBEDIT=OFF \
fc032bd9 544 -DWITH_READLINE=OFF \
e6dcb604
ER
545%if "%{pld_release}" == "ac"
546 -DWITH_SSL=%{?with_ssl:bundled}%{!?with_ssl:no} \
547%else
5d4c4d6c 548 -DWITH_SSL=%{?with_ssl:system}%{!?with_ssl:no} \
e6dcb604 549%endif
8ad2cc9f 550 -DWITH_ZLIB=system \
259cadd8 551 -DCOMPILATION_COMMENT="PLD/Linux Distribution MySQL RPM" \
5d4c4d6c 552 -DWITH_LIBWRAP=%{?with_tcpd:ON}%{!?with_tcpd:OFF} \
dbbad511 553 -DWITH_UNIT_TESTS=%{?with_tests:ON}%{!?with_tests:OFF} \
234eba13 554 -DCURSES_INCLUDE_PATH=/usr/include/ncurses \
92992b51 555 -DMYSQL_UNIX_ADDR=/var/lib/%{name}/%{name}.sock \
5dc334e6
ER
556 -DINSTALL_LAYOUT=RPM \
557 -DINSTALL_MYSQLTESTDIR_RPM="" \
c9b1588e 558 -DINSTALL_SQLBENCHDIR=%{_datadir} \
92992b51 559 -DINSTALL_SUPPORTFILESDIR=%{_datadir}/%{name}-support \
8ad2cc9f
AM
560 ..
561
562%{__make}
b24ee098 563
7fbcff7e
AM
564%{?with_tests:%{__make} test}
565
ceb5ca86 566%install
3fe2f194 567rm -rf $RPM_BUILD_ROOT
978cdac2 568install -d $RPM_BUILD_ROOT/etc/{logrotate.d,rc.d/init.d,sysconfig,mysql,skel} \
92c38d0d 569 $RPM_BUILD_ROOT/var/{log/{archive,}/mysql,lib/mysql} \
a4f004ee
AM
570 $RPM_BUILD_ROOT{%{_infodir},%{_mysqlhome}} \
571 $RPM_BUILD_ROOT%{_libdir}
b24ee098 572
8ad2cc9f
AM
573%{__make} -C build install \
574 DESTDIR=$RPM_BUILD_ROOT
d451850c 575
92992b51 576cp -a Docs/mysql.info $RPM_BUILD_ROOT%{_infodir}
b24ee098 577
92992b51
ER
578install -p %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/mysql
579cp -a %{SOURCE2} $RPM_BUILD_ROOT/etc/sysconfig/mysql
580cp -a %{SOURCE3} $RPM_BUILD_ROOT/etc/logrotate.d/mysql
dbf4eb6a 581# This is template for configuration file which is created after 'service mysql init'
92992b51
ER
582cp -a %{SOURCE4} mysqld.conf
583cp -a %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/clusters.conf
584touch $RPM_BUILD_ROOT/var/log/%{name}/{mysqld,query,slow}.log
b24ee098 585
2e5f696d 586# remove innodb directives from mysqld.conf if mysqld is configured without
9cc19375 587%if %{without innodb}
2e5f696d
ER
588 cp mysqld.conf mysqld.tmp
589 awk 'BEGIN { RS="\n\n" } !/innodb/ { printf("%s\n\n", $0) }' < mysqld.tmp > mysqld.conf
590%endif
591
592# remove berkeley-db directives from mysqld.conf if mysqld is configured without
9cc19375
AM
593cp mysqld.conf mysqld.tmp
594awk 'BEGIN { RS="\n\n" } !/bdb/ { printf("%s\n\n", $0) }' < mysqld.tmp > mysqld.conf
2e5f696d 595
92992b51
ER
596cp -a mysqld.conf $RPM_BUILD_ROOT%{_datadir}/%{name}/mysqld.conf
597cp -a %{SOURCE13} $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/mysql-client.conf
978cdac2 598cp -a %{SOURCE14} $RPM_BUILD_ROOT/etc/skel/.my.cnf
2e5f696d 599
d72472ee 600# NDB
f7fb94f7 601%if %{with ndb}
92992b51
ER
602install -p %{SOURCE7} $RPM_BUILD_ROOT/etc/rc.d/init.d/mysql-ndb
603cp -a %{SOURCE8} $RPM_BUILD_ROOT/etc/sysconfig/mysql-ndb
604install -p %{SOURCE9} $RPM_BUILD_ROOT/etc/rc.d/init.d/mysql-ndb-mgm
605cp -a %{SOURCE10} $RPM_BUILD_ROOT/etc/sysconfig/mysql-ndb-mgm
606install -p %{SOURCE11} $RPM_BUILD_ROOT/etc/rc.d/init.d/mysql-ndb-cpc
607cp -a %{SOURCE12} $RPM_BUILD_ROOT/etc/sysconfig/mysql-ndb-cpc
f7fb94f7 608%endif
17dc26d2 609
14996ad7 610# symlinks point to the .so file, fix it
df1b5770
AM
611ln -sf libmysqlclient.so.18 $RPM_BUILD_ROOT%{_libdir}/libmysqlclient_r.so.18
612ln -sf libmysqlclient.so.18.0.0 $RPM_BUILD_ROOT%{_libdir}/libmysqlclient_r.so.18.0.0
14996ad7
AM
613
614sed -i -e 's,/usr//usr,%{_prefix},g' $RPM_BUILD_ROOT%{_bindir}/mysql_config
04497307 615sed -i -e '/libs/s/$ldflags//' $RPM_BUILD_ROOT%{_bindir}/mysql_config
b24ee098 616
17dc26d2 617# remove known unpackaged files
21dbb6ad 618%{__rm} -r $RPM_BUILD_ROOT%{_datadir}/mysql-support
9cc19375 619
8b2cbaf3 620# rename not to be so generic name
8b2cbaf3 621mv $RPM_BUILD_ROOT%{_bindir}/{,mysql_}resolve_stack_dump
68e8a131 622mv $RPM_BUILD_ROOT%{_mandir}/man1/{,mysql_}resolve_stack_dump.1
17dc26d2 623
c0326166 624# not useful without -debug build
21dbb6ad
JB
625%{!?debug:%{__rm} $RPM_BUILD_ROOT%{_bindir}/mysql_resolve_stack_dump}
626%{!?debug:%{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/mysql_resolve_stack_dump.1}
c0326166 627# generate symbols file, so one can generate backtrace using it
92992b51 628# mysql_resolve_stack_dump -s %{_datadir}/%{name}/mysqld.sym -n mysqld.stack.
c0326166 629# http://dev.mysql.com/doc/refman/5.0/en/using-stack-trace.html
92992b51 630%{?debug:nm -n $RPM_BUILD_ROOT%{_sbindir}/mysqld > $RPM_BUILD_ROOT%{_datadir}/%{name}/mysqld.sym}
c0326166 631
dabd8964 632# do not clobber users $PATH
734d6226 633mv $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}/mysql_plugin
dabd8964
ER
634mv $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}/mysql_upgrade
635mv $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}/innochecksum
636mv $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}/myisamchk
637mv $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}/myisamlog
638mv $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}/myisampack
c9b1588e 639#mv $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}/mysql_fix_privilege_tables
dabd8964 640mv $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}/my_print_defaults
3b961fb0 641sed -i -e 's#/usr/bin/my_print_defaults#%{_sbindir}/my_print_defaults#g' $RPM_BUILD_ROOT%{_bindir}/mysql_install_db
dabd8964
ER
642mv $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}/mysqlcheck
643
3b961fb0 644# delete - functionality in initscript / rpm
21dbb6ad
JB
645# note: mysql_install_db (and thus resolveip) are needed by digikam
646%{__rm} $RPM_BUILD_ROOT%{_bindir}/mysqld_safe
647%{__rm} $RPM_BUILD_ROOT%{_bindir}/mysqld_multi
648%{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/mysqld_{multi,safe}*
c9b1588e
AM
649#rm $RPM_BUILD_ROOT%{_datadir}/%{name}/mysql-log-rotate
650#rm $RPM_BUILD_ROOT%{_datadir}/%{name}/mysql.server
651#rm $RPM_BUILD_ROOT%{_datadir}/%{name}/binary-configure
21dbb6ad
JB
652%{__rm} $RPM_BUILD_ROOT%{_datadir}/%{name}/errmsg-utf8.txt
653%{__rm} $RPM_BUILD_ROOT%{_bindir}/mysql_waitpid
654%{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/mysql_waitpid.1*
655%{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/mysql.server*
656%{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/mysqlman.1*
657%{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/comp_err.1*
9cc19375
AM
658
659# we don't package those (we have no -test or -testsuite pkg) and some of them just segfault
21dbb6ad
JB
660%{__rm} $RPM_BUILD_ROOT%{_bindir}/mysql_client_test
661%{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/mysql_client_test.1*
662%{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/mysql_client_test_embedded.1*
663%{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/mysql-stress-test.pl.1*
664%{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/mysql-test-run.pl.1*
665%{__rm} -r $RPM_BUILD_ROOT%{_datadir}/mysql-test
17dc26d2 666
be74eb6e 667# not needed
21dbb6ad 668%{__rm} $RPM_BUILD_ROOT%{_libdir}/%{name}/plugin/libdaemon_example.*
9cc19375 669
f624a76e 670%clean
1d171524 671rm -rf $RPM_BUILD_ROOT
f624a76e 672
fd32e090 673%pre
ff5f125f
ER
674%groupadd -g 89 mysql
675%useradd -u 89 -d %{_mysqlhome} -s /bin/sh -g mysql -c "MySQL Server" mysql
fd32e090 676
ceb5ca86 677%post
054c91be 678[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
0f4ca10a 679/sbin/ldconfig
054c91be 680/sbin/chkconfig --add mysql
4ebde491 681%service mysql restart
dd6934b4 682
d5e8c713 683%preun
054c91be 684if [ "$1" = "0" ]; then
579146e7 685 %service -q mysql stop
054c91be 686 /sbin/chkconfig --del mysql
687fi
c44d1e10 688
ec56ce82
AM
689%postun
690[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
0f4ca10a 691/sbin/ldconfig
9cc19375 692
fd32e090 693if [ "$1" = "0" ]; then
c354982f 694 %userremove mysql
695 %groupremove mysql
fd32e090 696fi
b24ee098 697
d72472ee
AM
698%post ndb
699/sbin/chkconfig --add mysql-ndb
1101e5b7 700%service mysql-ndb restart "mysql NDB engine"
d72472ee
AM
701
702%preun ndb
703if [ "$1" = "0" ]; then
1101e5b7
ER
704 %service mysql-ndb stop
705 /sbin/chkconfig --del mysql-ndb
d72472ee
AM
706fi
707
708%post ndb-mgm
709/sbin/chkconfig --add mysql-ndb-mgm
1101e5b7 710%service mysql-ndb-mgm restart "mysql NDB management node"
d72472ee
AM
711
712%preun ndb-mgm
713if [ "$1" = "0" ]; then
1101e5b7
ER
714 %service mysql-ndb-mgm stop
715 /sbin/chkconfig --del mysql-ndb-mgm
d72472ee
AM
716fi
717
718%post ndb-cpc
719/sbin/chkconfig --add mysql-ndb-cpc
1101e5b7 720%service mysql-ndb-cpc restart "mysql NDB CPC"
d72472ee
AM
721
722%preun ndb-cpc
723if [ "$1" = "0" ]; then
1101e5b7
ER
724 %service mysql-ndb-cpc stop
725 /sbin/chkconfig --del mysql-ndb-cpc
d72472ee
AM
726fi
727
3fe2f194 728%post libs -p /sbin/ldconfig
729%postun libs -p /sbin/ldconfig
b24ee098 730
80cc634b 731%triggerpostun -- mysql < 4.0.20-2.4
92992b51 732# For clusters in /etc/%{name}/clusters.conf
be74eb6e 733if [ -f /etc/sysconfig/mysql ]; then
99e0d1a2 734 . /etc/sysconfig/mysql
4c7c0ef7 735 if [ -n "$MYSQL_DB_CLUSTERS" ]; then
99e0d1a2 736 for i in "$MYSQL_DB_CLUSTERS"; do
92992b51 737 echo "$i/mysqld.conf=$i" >> /etc/%{name}/clusters.conf
99e0d1a2 738 done
b545a308 739 echo "# Do not use **obsolete** option MYSQL_DB_CLUSTERS" >> /etc/sysconfig/mysql
92992b51
ER
740 echo "# USE /etc/%{name}/clusters.conf instead" >> /etc/sysconfig/mysql
741 echo "Converted clusters from MYSQL_DB_CLUSTERS to /etc/%{name}/clusters.conf."
742 echo "You NEED to fix your /etc/sysconfig/mysql and verify /etc/%{name}/clusters.conf."
99e0d1a2
PG
743 fi
744fi
745
80cc634b 746%triggerpostun -- mysql < 4.1.1
7f18dfce 747# For better compatibility with prevoius versions:
92992b51 748for config in $(awk -F= '!/^#/ && /=/{print $1}' /etc/%{name}/clusters.conf); do
7f18dfce
PG
749 if echo "$config" | grep -q '^/'; then
750 config_file="$config"
92992b51
ER
751 elif [ -f "/etc/%{name}/$config" ]; then
752 config_file=/etc/%{name}/$config
7f18dfce 753 else
92992b51 754 clusterdir=$(awk -F= "/^$config/{print \$2}" /etc/%{name}/clusters.conf)
dd25dce8
ER
755 if [ -z "$clusterdir" ]; then
756 echo >&2 "Can't find cluster dir for $config!"
92992b51 757 echo >&2 "Please remove extra (leading) spaces from /etc/%{name}/clusters.conf"
dd25dce8
ER
758 exit 1
759 fi
7f18dfce
PG
760 config_file="$clusterdir/mysqld.conf"
761 fi
0e6ae684
ER
762
763 if [ ! -f "$config_file" ]; then
764 echo >&2 "Lost myself! Please report this (with above errors, if any) to http://bugs.pld-linux.org/"
765 exit 1
766 fi
7f18dfce
PG
767 echo "Adding option old-passwords to config: $config_file"
768 echo "If you want to use new, better passwords - remove it"
6e6b75c9
ER
769
770 # sed magic to add 'old-passwords' to [mysqld] section
771 sed -i -e '/./{H;$!d;};x;/\[mysqld\]/{
772 a
773 a; Compatibility options:
774 aold-passwords
775 }
776 ' $config_file
7f18dfce
PG
777done
778
a2d3f15b 779%banner -e %{name}-4.1.x <<-EOF
f1180631
ER
780 If you want to use new help tables in MySQL 4.1.x then You'll need to import the help data:
781 mysql -u mysql mysql < %{_datadir}/%{name}/fill_help_tables.sql
a2d3f15b
ER
782EOF
783#'
784
dc311758 785%triggerpostun -- mysql < 5.1.0
9cc19375 786configs=""
92992b51 787for config in $(awk -F= '!/^#/ && /=/{print $1}' /etc/%{name}/clusters.conf); do
9cc19375
AM
788 if echo "$config" | grep -q '^/'; then
789 config_file="$config"
92992b51
ER
790 elif [ -f "/etc/%{name}/$config" ]; then
791 config_file=/etc/%{name}/$config
9cc19375 792 else
92992b51 793 clusterdir=$(awk -F= "/^$config/{print \$2}" /etc/%{name}/clusters.conf)
9cc19375
AM
794 if [ -z "$clusterdir" ]; then
795 echo >&2 "Can't find cluster dir for $config!"
92992b51 796 echo >&2 "Please remove extra (leading) spaces from /etc/%{name}/clusters.conf"
9cc19375
AM
797 exit 1
798 fi
799 config_file="$clusterdir/mysqld.conf"
800 fi
801
802 if [ ! -f "$config_file" ]; then
803 echo >&2 "ERROR: Can't find real config file for $config! Please report this (with above errors, if any) to http://bugs.pld-linux.org/"
804 continue
805 fi
806 configs="$configs $config_file"
807done
808
1564ef07 809(
3a4d8c21 810echo 'You should run MySQL upgrade script *after* restarting MySQL server for all MySQL clusters.'
9cc19375
AM
811echo 'Thus, you should invoke:'
812for config in $configs; do
b432ea00 813 sed -i -e '
8348d337 814 s/set-variable\s*=\s* //
1564ef07
ER
815 # use # as comment in config
816 s/^;/#/
b432ea00
ER
817 ' $config
818
be74eb6e 819 datadir=$(awk -F= '!/^#/ && $1 ~ /datadir/{print $2}' $config | xargs)
9cc19375
AM
820 echo "# mysql_upgrade --datadir=$datadir"
821done
1564ef07 822) | %banner -e %{name}-5.1
9cc19375 823
b5a439fb
AM
824%triggerpostun -- mysql < 5.5.0
825configs=""
826for config in $(awk -F= '!/^#/ && /=/{print $1}' /etc/%{name}/clusters.conf); do
827 if echo "$config" | grep -q '^/'; then
828 config_file="$config"
829 elif [ -f "/etc/%{name}/$config" ]; then
830 config_file=/etc/%{name}/$config
831 else
832 clusterdir=$(awk -F= "/^$config/{print \$2}" /etc/%{name}/clusters.conf)
833 if [ -z "$clusterdir" ]; then
834 echo >&2 "Can't find cluster dir for $config!"
835 echo >&2 "Please remove extra (leading) spaces from /etc/%{name}/clusters.conf"
836 exit 1
837 fi
838 config_file="$clusterdir/mysqld.conf"
839 fi
840
841 if [ ! -f "$config_file" ]; then
842 echo >&2 "ERROR: Can't find real config file for $config! Please report this (with above errors, if any) to http://bugs.pld-linux.org/"
843 continue
844 fi
845 configs="$configs $config_file"
846done
847
1564ef07
ER
848(
849echo 'You should run MySQL upgrade script *after* restarting MySQL server for all MySQL clusters.'
850echo 'Thus, you should invoke:'
b5a439fb 851for config in $configs; do
b432ea00 852 sed -i -e '
8348d337
ER
853 s/^language *= *polish/lc-messages = pl_PL/i
854 s/set-variable\s*=\s* //
76d420b8 855 s/^skip-locking/skip-external-locking/
a54e0fde 856 # this is not valid for server. it is client option
589be940 857 s/^default-character-set/# client-config: &/
1564ef07
ER
858 # use # as comment in config
859 s/^;/#/
b432ea00 860 ' $config
1564ef07 861
589be940
ER
862 socket=$(awk -F= '!/^#/ && $1 ~ /socket/{print $2}' $config | xargs)
863 echo "# mysql_upgrade ${socket:+--socket=$socket}"
b5a439fb 864done
1564ef07 865) | %banner -e %{name}-5.5
b5a439fb 866
ceb5ca86 867%files
a09e0285 868%defattr(644,root,root,755)
c9b1588e 869%doc build/support-files/*.cnf build/support-files/*.ini
92992b51
ER
870%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/%{name}
871%attr(754,root,root) /etc/rc.d/init.d/%{name}
872%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/%{name}
873%attr(640,root,mysql) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}/clusters.conf
dabd8964 874%attr(755,root,root) %{_sbindir}/innochecksum
2b48022a 875%attr(755,root,root) %{_sbindir}/my_print_defaults
dabd8964
ER
876%attr(755,root,root) %{_sbindir}/myisamchk
877%attr(755,root,root) %{_sbindir}/myisamlog
878%attr(755,root,root) %{_sbindir}/myisampack
c9b1588e 879#%attr(755,root,root) %{_sbindir}/mysql_fix_privilege_tables
734d6226 880%attr(755,root,root) %{_sbindir}/mysql_plugin
dabd8964 881%attr(755,root,root) %{_sbindir}/mysql_upgrade
2b48022a
ER
882%attr(755,root,root) %{_sbindir}/mysqlcheck
883%attr(755,root,root) %{_sbindir}/mysqld
92992b51
ER
884%dir %{_libdir}/%{name}
885%dir %{_libdir}/%{name}/plugin
886%attr(755,root,root) %{_libdir}/%{name}/plugin/adt_null.so
887%attr(755,root,root) %{_libdir}/%{name}/plugin/auth.so
ce5017a4
JB
888%attr(755,root,root) %{_libdir}/%{name}/plugin/auth_pam.so
889%attr(755,root,root) %{_libdir}/%{name}/plugin/auth_pam_compat.so
92992b51
ER
890%attr(755,root,root) %{_libdir}/%{name}/plugin/auth_socket.so
891%attr(755,root,root) %{_libdir}/%{name}/plugin/auth_test_plugin.so
ce5017a4 892%attr(755,root,root) %{_libdir}/%{name}/plugin/dialog.so
92992b51
ER
893%attr(755,root,root) %{_libdir}/%{name}/plugin/ha_archive.so
894%attr(755,root,root) %{_libdir}/%{name}/plugin/ha_blackhole.so
895%attr(755,root,root) %{_libdir}/%{name}/plugin/ha_federated.so
896%attr(755,root,root) %{_libdir}/%{name}/plugin/mypluglib.so
897%attr(755,root,root) %{_libdir}/%{name}/plugin/qa_auth_client.so
898%attr(755,root,root) %{_libdir}/%{name}/plugin/qa_auth_interface.so
899%attr(755,root,root) %{_libdir}/%{name}/plugin/qa_auth_server.so
900%attr(755,root,root) %{_libdir}/%{name}/plugin/semisync_master.so
901%attr(755,root,root) %{_libdir}/%{name}/plugin/semisync_slave.so
fa51fc20 902%if %{with sphinx}
bfb02390 903%attr(755,root,root) %{_libdir}/%{name}/plugin/ha_sphinx.so
fa51fc20 904%endif
0f4ca10a 905# for plugins
16b39b90 906%attr(755,root,root) %{_libdir}/libmysqlservices.so
68e8a131 907%{_mandir}/man1/innochecksum.1*
2b48022a 908%{_mandir}/man1/my_print_defaults.1*
84628b90
AM
909%{_mandir}/man1/myisamchk.1*
910%{_mandir}/man1/myisamlog.1*
911%{_mandir}/man1/myisampack.1*
c9b1588e 912#%{_mandir}/man1/mysql_fix_privilege_tables.1*
734d6226 913%{_mandir}/man1/mysql_plugin.1*
d0fe1bc5 914%{_mandir}/man1/mysql_upgrade.1*
2b48022a 915%{_mandir}/man1/mysqlcheck.1*
c3389a2d 916%{_mandir}/man8/mysqld.8*
c486a119 917
c27588d8
ER
918%if %{?debug:1}0
919%attr(755,root,root) %{_bindir}/*resolve_stack_dump
92992b51 920%{_datadir}/%{name}/mysqld.sym
c27588d8
ER
921%{_mandir}/man1/*resolve_stack_dump.1*
922%endif
923
ea2c1c6a 924%attr(700,mysql,mysql) %{_mysqlhome}
68e8a131 925# root:root is proper here for mysql.rpm while mysql:mysql is potential security hole
179f04ff 926%attr(751,root,root) /var/lib/mysql
8594196c 927%attr(750,mysql,mysql) %dir /var/log/mysql
ced65266 928%attr(750,mysql,mysql) %dir /var/log/archive/mysql
13924afb 929%attr(640,mysql,mysql) %ghost /var/log/mysql/*
431c9391 930
8de1b4ed 931%{_infodir}/mysql.info*
dbf4eb6a 932# This is template for configuration file which is created after 'service mysql init'
92992b51
ER
933%{_datadir}/%{name}/mysqld.conf
934%{_datadir}/%{name}/mysql_system_tables.sql
935%{_datadir}/%{name}/mysql_system_tables_data.sql
936%{_datadir}/%{name}/mysql_test_data_timezone.sql
937
938%{_datadir}/%{name}/english
939%{_datadir}/%{name}/fill_help_tables.sql
940#%{_datadir}/%{name}/mysql_fix_privilege_tables.sql
941%lang(cs) %{_datadir}/%{name}/czech
942%lang(da) %{_datadir}/%{name}/danish
943%lang(de) %{_datadir}/%{name}/german
944%lang(el) %{_datadir}/%{name}/greek
945%lang(es) %{_datadir}/%{name}/spanish
946%lang(et) %{_datadir}/%{name}/estonian
947%lang(fr) %{_datadir}/%{name}/french
948%lang(hu) %{_datadir}/%{name}/hungarian
949%lang(it) %{_datadir}/%{name}/italian
950%lang(ja) %{_datadir}/%{name}/japanese
951%lang(ko) %{_datadir}/%{name}/korean
952%lang(nl) %{_datadir}/%{name}/dutch
953%lang(nb) %{_datadir}/%{name}/norwegian
954%lang(nn) %{_datadir}/%{name}/norwegian-ny
955%lang(pl) %{_datadir}/%{name}/polish
956%lang(pt) %{_datadir}/%{name}/portuguese
957%lang(ro) %{_datadir}/%{name}/romanian
958%lang(ru) %{_datadir}/%{name}/russian
959%lang(sr) %{_datadir}/%{name}/serbian
960%lang(sk) %{_datadir}/%{name}/slovak
961%lang(sv) %{_datadir}/%{name}/swedish
962%lang(uk) %{_datadir}/%{name}/ukrainian
b24ee098 963
ad0a7267
JR
964%files charsets
965%defattr(644,root,root,755)
2539bd3a 966%dir %{_datadir}/mysql
92992b51 967%{_datadir}/%{name}/charsets
ad0a7267 968
8de1b4ed 969%files extras
970%defattr(644,root,root,755)
f261d032 971%attr(755,root,root) %{_bindir}/msql2mysql
8b2cbaf3 972%attr(755,root,root) %{_bindir}/myisam_ftdump
90db0fd4 973%attr(755,root,root) %{_bindir}/mysql_install_db
8b2cbaf3
ER
974%attr(755,root,root) %{_bindir}/mysql_secure_installation
975%attr(755,root,root) %{_bindir}/mysql_tzinfo_to_sql
b94ecc67
JB
976%attr(755,root,root) %{_bindir}/perror
977%attr(755,root,root) %{_bindir}/replace
90db0fd4 978%attr(755,root,root) %{_bindir}/resolveip
b94ecc67 979%{_mandir}/man1/msql2mysql.1*
9787b388 980%{_mandir}/man1/myisam_ftdump.1*
90db0fd4 981%{_mandir}/man1/mysql_install_db.1*
68e8a131 982%{_mandir}/man1/mysql_secure_installation.1*
77cbc8ff 983%{_mandir}/man1/mysql_tzinfo_to_sql.1*
e474e322 984%{_mandir}/man1/perror.1*
985%{_mandir}/man1/replace.1*
90db0fd4 986%{_mandir}/man1/resolveip.1*
8de1b4ed 987
17299970
ER
988%files -n mysqlhotcopy
989%defattr(644,root,root,755)
990%attr(755,root,root) %{_bindir}/mysqlhotcopy
991%{_mandir}/man1/mysqlhotcopy.1*
992
8afdedd4 993%files extras-perl
994%defattr(644,root,root,755)
8594196c 995%attr(755,root,root) %{_bindir}/mysql_convert_table_format
8afdedd4 996%attr(755,root,root) %{_bindir}/mysql_find_rows
8b2cbaf3 997%attr(755,root,root) %{_bindir}/mysql_fix_extensions
b894e3d4 998%attr(755,root,root) %{_bindir}/mysql_setpermission
b894e3d4 999%attr(755,root,root) %{_bindir}/mysql_zap
2b48022a
ER
1000%attr(755,root,root) %{_bindir}/mysqlaccess
1001%attr(755,root,root) %{_bindir}/mysqldumpslow
68e8a131 1002%{_mandir}/man1/mysql_convert_table_format.1*
ffda6e55 1003%{_mandir}/man1/mysql_find_rows.1*
68e8a131 1004%{_mandir}/man1/mysql_fix_extensions.1*
68e8a131
ER
1005%{_mandir}/man1/mysql_setpermission.1*
1006%{_mandir}/man1/mysql_zap.1*
2b48022a 1007%{_mandir}/man1/mysqlaccess.1*
08472466 1008%{_mandir}/man1/mysqldumpslow.1*
8afdedd4 1009
ceb5ca86 1010%files client
75eb20a9 1011%defattr(644,root,root,755)
978cdac2 1012%attr(600,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/skel/.my.cnf
01dea3d5 1013%attr(755,root,root) %{_bindir}/mysql
9cc19375
AM
1014%attr(755,root,root) %{_bindir}/mysqladmin
1015%attr(755,root,root) %{_bindir}/mysqlbinlog
065b78b5 1016%attr(755,root,root) %{_bindir}/mysqlbug
01dea3d5 1017%attr(755,root,root) %{_bindir}/mysqldump
1018%attr(755,root,root) %{_bindir}/mysqlimport
1019%attr(755,root,root) %{_bindir}/mysqlshow
75eb20a9 1020%{_mandir}/man1/mysql.1*
e474e322 1021%{_mandir}/man1/mysqladmin.1*
84628b90 1022%{_mandir}/man1/mysqlbinlog.1*
512d8da1 1023%{_mandir}/man1/mysqlbug.1*
9cc19375 1024%{_mandir}/man1/mysqldump.1*
84628b90 1025%{_mandir}/man1/mysqlimport.1*
9cc19375 1026%{_mandir}/man1/mysqlshow.1*
b24ee098 1027
3fe2f194 1028%files libs
75eb20a9 1029%defattr(644,root,root,755)
2b48022a 1030%attr(751,root,root) %dir %{_sysconfdir}/mysql
92992b51 1031%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}/mysql-client.conf
3b9f87c2 1032%attr(755,root,root) %{_libdir}/libmysqlclient.so.*.*.*
df1b5770 1033%attr(755,root,root) %ghost %{_libdir}/libmysqlclient.so.18
3b9f87c2 1034%attr(755,root,root) %{_libdir}/libmysqlclient_r.so.*.*.*
df1b5770 1035%attr(755,root,root) %ghost %{_libdir}/libmysqlclient_r.so.18
08472466 1036%if %{with ndb}
3b9f87c2 1037%attr(755,root,root) %{_libdir}/libndbclient.so.*.*.*
bd1c7139 1038%attr(755,root,root) %ghost %{_libdir}/libndbclient.so.3
08472466 1039%endif
b24ee098 1040
ceb5ca86 1041%files devel
3fe2f194 1042%defattr(644,root,root,755)
bbc0ff50 1043%attr(755,root,root) %{_bindir}/mysql_config
3b9f87c2
JB
1044%attr(755,root,root) %{_libdir}/libmysqlclient.so
1045%attr(755,root,root) %{_libdir}/libmysqlclient_r.so
08472466 1046%if %{with ndb}
3b9f87c2 1047%attr(755,root,root) %{_libdir}/libndbclient.so
08472466 1048%endif
3fe2f194 1049%{_includedir}/mysql
68e8a131 1050%{_aclocaldir}/mysql.m4
84628b90 1051%{_mandir}/man1/mysql_config.1*
3fe2f194 1052
1053%files static
75eb20a9 1054%defattr(644,root,root,755)
3b9f87c2
JB
1055%{_libdir}/libmysqlclient.a
1056%{_libdir}/libmysqlclient_r.a
08472466 1057%if %{with ndb}
3b9f87c2 1058%{_libdir}/libndbclient.a
08472466 1059%endif
ceb5ca86 1060
d1e91a2d
AM
1061%files bench
1062%defattr(644,root,root,755)
8ce69d92 1063%attr(755,root,root) %{_bindir}/mysqlslap
d1e91a2d
AM
1064%attr(755,root,root) %{_bindir}/mysqltest
1065%dir %{_datadir}/sql-bench
1066%{_datadir}/sql-bench/[CDRl]*
1067%attr(755,root,root) %{_datadir}/sql-bench/[bcgirst]*
8ce69d92 1068%{_mandir}/man1/mysqlslap.1*
ffda6e55
ER
1069%{_mandir}/man1/mysqltest.1*
1070%{_mandir}/man1/mysqltest_embedded.1*
d1e91a2d 1071
be07ff22
AM
1072#%files doc
1073#%defattr(644,root,root,755)
1074#%doc Docs/manual.html Docs/manual_toc.html
d1e91a2d 1075
08472466 1076%if %{with ndb}
d72472ee
AM
1077%files ndb
1078%defattr(644,root,root,755)
1079%attr(755,root,root) %{_sbindir}/ndbd
1080%attr(754,root,root) /etc/rc.d/init.d/mysql-ndb
8cdaa5ca 1081%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/mysql-ndb
ffda6e55 1082%{_mandir}/man1/ndbd_redo_log_reader.1*
210f47d4 1083%{_mandir}/man8/ndbd.8*
d72472ee
AM
1084
1085%files ndb-client
1086%defattr(644,root,root,755)
e56168f2
ER
1087%attr(755,root,root) %{_bindir}/ndb_config
1088%attr(755,root,root) %{_bindir}/ndb_delete_all
1089%attr(755,root,root) %{_bindir}/ndb_desc
1090%attr(755,root,root) %{_bindir}/ndb_drop_index
1091%attr(755,root,root) %{_bindir}/ndb_drop_table
1092%attr(755,root,root) %{_bindir}/ndb_error_reporter
1093%attr(755,root,root) %{_bindir}/ndb_mgm
1094%attr(755,root,root) %{_bindir}/ndb_print_backup_file
1095%attr(755,root,root) %{_bindir}/ndb_print_schema_file
1096%attr(755,root,root) %{_bindir}/ndb_print_sys_file
1097%attr(755,root,root) %{_bindir}/ndb_restore
1098%attr(755,root,root) %{_bindir}/ndb_select_all
1099%attr(755,root,root) %{_bindir}/ndb_select_count
1100%attr(755,root,root) %{_bindir}/ndb_show_tables
1101%attr(755,root,root) %{_bindir}/ndb_size.pl
1102%attr(755,root,root) %{_bindir}/ndb_test_platform
1103%attr(755,root,root) %{_bindir}/ndb_waiter
e56168f2
ER
1104%{_mandir}/man1/ndb_config.1*
1105%{_mandir}/man1/ndb_delete_all.1*
1106%{_mandir}/man1/ndb_desc.1*
68e8a131
ER
1107%{_mandir}/man1/ndb_drop_index.1*
1108%{_mandir}/man1/ndb_drop_table.1*
1109%{_mandir}/man1/ndb_error_reporter.1*
1110%{_mandir}/man1/ndb_mgm.1*
1111%{_mandir}/man1/ndb_print_backup_file.1*
1112%{_mandir}/man1/ndb_print_schema_file.1*
1113%{_mandir}/man1/ndb_print_sys_file.1*
1114%{_mandir}/man1/ndb_restore.1*
1115%{_mandir}/man1/ndb_select_all.1*
1116%{_mandir}/man1/ndb_select_count.1*
1117%{_mandir}/man1/ndb_show_tables.1*
e56168f2 1118%{_mandir}/man1/ndb_size.pl.1*
68e8a131 1119%{_mandir}/man1/ndb_waiter.1*
d72472ee
AM
1120
1121%files ndb-mgm
1122%defattr(644,root,root,755)
1123%attr(755,root,root) %{_sbindir}/ndb_mgmd
1124%attr(754,root,root) /etc/rc.d/init.d/mysql-ndb-mgm
8cdaa5ca 1125%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/mysql-ndb-mgm
210f47d4 1126%{_mandir}/man8/ndb_mgmd.8*
d72472ee 1127
d72472ee
AM
1128%files ndb-cpc
1129%defattr(644,root,root,755)
1130%attr(755,root,root) %{_sbindir}/ndb_cpcd
1131%attr(754,root,root) /etc/rc.d/init.d/mysql-ndb-cpc
8cdaa5ca 1132%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/mysql-ndb-cpc
68e8a131 1133%{_mandir}/man1/ndb_cpcd.1*
08472466 1134%endif
This page took 1.47926 seconds and 4 git commands to generate.