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