forked from trdtnguyen/mysql-plnvm
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmysql.spec.in
1237 lines (880 loc) · 45.4 KB
/
mysql.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING. If not, write to the
# Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston
# MA 02110-1301 USA.
%global mysql_vendor Oracle and/or its affiliates
%global mysqldatadir /var/lib/mysql
# Pass path to mecab lib
%{?with_mecab: %global mecab_option -DWITH_MECAB=%{with_mecab}}
%{?with_mecab: %global mecab 1}
# Regression tests may take a long time, override the default to skip them
%{!?runselftest:%global runselftest 0}
%{!?product_suffix: %global product_suffix community}
%{!?feature_set: %global feature_set community}
%{!?compilation_comment_release: %global compilation_comment_release MySQL Community Server - (GPL)}
%{!?compilation_comment_debug: %global compilation_comment_debug MySQL Community Server - Debug (GPL)}
%{!?src_base: %global src_base mysql}
%global src_dir %{src_base}-%{version}
%if 0%{?commercial}
%global license_files_server %{src_dir}/LICENSE.mysql %{src_dir}/README
%global license_type Commercial
%else
%global license_files_server %{src_dir}/COPYING %{src_dir}/README
%global license_type GPLv2
%endif
Name: mysql-%{product_suffix}-minimal
Summary: A very fast and reliable SQL database server
Group: Applications/Databases
Version: @MYSQL_NO_DASH_VERSION@
Release: 1%{?commercial:.1}%{?dist}
License: Copyright (c) 2000, @MYSQL_COPYRIGHT_YEAR@, %{mysql_vendor}. All rights reserved. Under %{?license_type} license as shown in the Description field.
URL: http://www.mysql.com/
Packager: MySQL Release Engineering <[email protected]>
Vendor: %{mysql_vendor}
Source0: https://cdn.mysql.com/Downloads/MySQL-@MYSQL_BASE_VERSION@/%{src_dir}.tar.gz
Source1: http://downloads.sourceforge.net/boost/@[email protected]
BuildRequires: cmake >= 2.8.2
BuildRequires: perl
BuildRequires: perl(Time::HiRes)
BuildRequires: perl(Env)
BuildRequires: time
BuildRequires: cyrus-sasl-devel
BuildRequires: libaio-devel
BuildRequires: ncurses-devel
BuildRequires: numactl-devel
BuildRequires: openssl-devel
BuildRequires: zlib-devel
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
# For rpm => 4.9 only: https://fedoraproject.org/wiki/Packaging:AutoProvidesAndRequiresFiltering
%global __requires_exclude ^perl\\((GD|hostnames|lib::mtr|lib::v1|mtr_|My::)
%global __provides_exclude_from ^(/usr/share/(mysql|mysql-test)/.*|%{_libdir}/mysql/plugin/.*\\.so)$
%description
The MySQL(TM) software delivers a very fast, multi-threaded, multi-user,
and robust SQL (Structured Query Language) database server. MySQL Server
is intended for mission-critical, heavy-load production systems as well
as for embedding into mass-deployed software. MySQL is a trademark of
%{mysql_vendor}
The MySQL software has Dual Licensing, which means you can use the MySQL
software free of charge under the GNU General Public License
(http://www.gnu.org/licenses/). You can also purchase commercial MySQL
licenses from %{mysql_vendor} if you do not wish to be bound by the terms of
the GPL. See the chapter "Licensing and Support" in the manual for
further info.
The MySQL web site (http://www.mysql.com/) provides the latest
news and information about the MySQL software. Also please see the
documentation and the manual for more information.
%package -n mysql-%{product_suffix}-server-minimal
Summary: A very fast and reliable SQL database server
Group: Applications/Databases
Requires: shadow-utils
Provides: mysql-server = %{version}-%{release}
Provides: mysql-server%{?_isa} = %{version}-%{release}
Provides: mysql-compat-server = %{version}-%{release}
Provides: mysql-compat-server%{?_isa} = %{version}-%{release}
%description -n mysql-%{product_suffix}-server-minimal
The MySQL(TM) software delivers a very fast, multi-threaded, multi-user,
and robust SQL (Structured Query Language) database server. MySQL Server
is intended for mission-critical, heavy-load production systems as well
as for embedding into mass-deployed software. MySQL is a trademark of
%{mysql_vendor}
The MySQL software has Dual Licensing, which means you can use the MySQL
software free of charge under the GNU General Public License
(http://www.gnu.org/licenses/). You can also purchase commercial MySQL
licenses from %{mysql_vendor} if you do not wish to be bound by the terms of
the GPL. See the chapter "Licensing and Support" in the manual for
further info.
The MySQL web site (http://www.mysql.com/) provides the latest news and
information about the MySQL software. Also please see the documentation
and the manual for more information.
This package includes the MySQL server binary as well as related utilities
to run and administer a MySQL server.
%prep
%setup -q -T -a 0 -a 1 -c -n %{src_dir}
%build
# Fail quickly and obviously if user tries to build as root
%if 0%{?runselftest}
if [ "x$(id -u)" = "x0" ] ; then
echo "The MySQL regression tests may fail if run as root."
echo "If you really need to build the RPM as root, use"
echo "--define='runselftest 0' to skip the regression tests."
exit 1
fi
%endif
# Build full release
mkdir release
(
cd release
cmake ../%{src_dir} \
-DBUILD_CONFIG=mysql_release \
-DINSTALL_LAYOUT=RPM \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DWITH_BOOST=.. \
-DCMAKE_C_FLAGS="%{optflags}" \
-DCMAKE_CXX_FLAGS="%{optflags}" \
-DWITH_INNODB_MEMCACHED=1 \
-DINSTALL_LIBDIR="%{_lib}/mysql" \
-DINSTALL_PLUGINDIR="%{_lib}/mysql/plugin" \
-DINSTALL_MYSQLTESTDIR="" \
-DMYSQL_UNIX_ADDR="%{mysqldatadir}/mysql.sock" \
-DMYSQLX_UNIX_ADDR="/var/run/mysqld/mysqlx.sock" \
-DFEATURE_SET="%{feature_set}" \
-DWITH_EMBEDDED_SERVER=0 \
-DWITH_EMBEDDED_SHARED_LIBRARY=0 \
-DWITH_NUMA=ON \
%{?mecab_option} \
-DWITH_SSL=system \
-DCOMPILATION_COMMENT="%{compilation_comment_release}" \
-DMYSQL_SERVER_SUFFIX="%{?server_suffix}"
echo BEGIN_NORMAL_CONFIG ; egrep '^#define' include/config.h ; echo END_NORMAL_CONFIG
make %{?_smp_mflags} VERBOSE=1
)
%install
MBD=$RPM_BUILD_DIR/%{src_dir}
# Ensure that needed directories exists
install -d -m 0750 %{buildroot}/var/lib/mysql
install -d -m 0755 %{buildroot}/var/run/mysqld
install -d -m 0750 %{buildroot}/var/lib/mysql-files
install -d -m 0750 %{buildroot}/var/lib/mysql-keyring
# Install all binaries
cd $MBD/release
make DESTDIR=%{buildroot} install
# TODO: move to rpm-docker
install -D -m 0644 $MBD/release/packaging/rpm-docker/my.cnf %{buildroot}%{_sysconfdir}/my.cnf
install -d %{buildroot}%{_sysconfdir}/my.cnf.d
# Remove man, include, and libs
for f in %{_mandir} %{_includedir} %{_datadir}/aclocal/mysql.m4 ; do
rm -rf %{buildroot}$f
done
rm -rf %{buildroot}%{_libdir}/mysql/libmysql*
# Removing some tools
for f in innochecksum myisamchk myisam_ftdump myisamlog myisampack \
mysqlbinlog mysqlcheck mysql_client_test mysql_config_editor \
mysqld_multi mysqld_safe mysqldumpslow mysql_embedded mysqlimport \
mysql_plugin mysql_secure_installation mysqlshow mysqlslap mysqltest \
mysqlxtest perror replace resolveip resolve_stack_dump \
lz4_decompress zlib_decompress; do
rm -f %{buildroot}%{_bindir}/$f
done
# Remove test plugins
for p in auth.so auth_test_plugin.so authentication_ldap_sasl.so \
authentication_ldap_simple.so daemon_example.ini libdaemon_example.so \
qa_auth_client.so qa_auth_interface.so qa_auth_server.so \
replication_observers_example_plugin.so ha_example.so \
test_udf_services.so test_security_context.so ; do
rm -f %{buildroot}%{_libdir}/mysql/plugin/$p
done
rm -f %{buildroot}%{_libdir}/mysql/plugin/libtest_*.so
rm -f %{buildroot}%{_libdir}/pkgconfig/mysqlclient.pc
# No need for these scripts
rm -f %{buildroot}%{_datadir}/mysql/{mysql.server,mysqld_multi.server,mysql-log-rotate}
# Remove files pages we explicitly do not want to package
rm -rf %{buildroot}%{_infodir}/mysql.info*
rm -f %{buildroot}%{_datadir}/mysql/win_install_firewall.sql
rm -f %{buildroot}%{_datadir}/mysql/audit_log_filter_win_install.sql
%check
%if 0%{?runselftest} || 0%{?with_unittests}
pushd release
export CTEST_OUTPUT_ON_FAILURE=1
make test || true
%endif
%if 0%{?runselftest}
export MTR_BUILD_THREAD=auto
pushd mysql-test
./mtr \
--mem --parallel=auto --force --retry=0 \
--mysqld=--binlog-format=mixed \
--suite-timeout=720 --testcase-timeout=30 \
--clean-vardir
rm -r $(readlink var) var
%endif
%pre -n mysql-%{product_suffix}-server-minimal
/usr/sbin/groupadd -g 27 -o -r mysql >/dev/null 2>&1 || :
/usr/sbin/useradd -M -N -g mysql -o -r -d /var/lib/mysql -s /bin/false \
-c "MySQL Server" -u 27 mysql >/dev/null 2>&1 || :
%post -n mysql-%{product_suffix}-server-minimal
/bin/touch /var/log/mysqld.log >/dev/null 2>&1 || :
/bin/chmod 0640 /var/log/mysqld.log >/dev/null 2>&1 || :
/bin/chown mysql:mysql /var/log/mysqld.log >/dev/null 2>&1 || :
%files -n mysql-%{product_suffix}-server-minimal
%defattr(-, root, root, -)
%doc %{?license_files_server} %{src_dir}/Docs/ChangeLog
%doc %{src_dir}/Docs/INFO_SRC*
%doc release/Docs/INFO_BIN*
%config(noreplace) %{_sysconfdir}/my.cnf
%dir %{_sysconfdir}/my.cnf.d
%attr(755, root, root) %{_sbindir}/mysqld
%attr(755, root, root) %{_bindir}/mysql
%attr(755, root, root) %{_bindir}/mysqladmin
%attr(755, root, root) %{_bindir}/mysqldump
%attr(755, root, root) %{_bindir}/mysqlpump
%attr(755, root, root) %{_bindir}/mysql_config
%attr(755, root, root) %{_bindir}/mysql_install_db
%attr(755, root, root) %{_bindir}/mysql_ssl_rsa_setup
%attr(755, root, root) %{_bindir}/mysql_tzinfo_to_sql
%attr(755, root, root) %{_bindir}/mysql_upgrade
%attr(755, root, root) %{_bindir}/my_print_defaults
%dir %{_libdir}/mysql/plugin
%attr(755, root, root) %{_libdir}/mysql/plugin/adt_null.so
%attr(755, root, root) %{_libdir}/mysql/plugin/auth_socket.so
%attr(755, root, root) %{_libdir}/mysql/plugin/authentication_ldap_sasl_client.so
%attr(755, root, root) %{_libdir}/mysql/plugin/group_replication.so
%attr(755, root, root) %{_libdir}/mysql/plugin/connection_control.so
%attr(755, root, root) %{_libdir}/mysql/plugin/innodb_engine.so
%attr(755, root, root) %{_libdir}/mysql/plugin/keyring_file.so
%attr(755, root, root) %{_libdir}/mysql/plugin/keyring_udf.so
%attr(755, root, root) %{_libdir}/mysql/plugin/libmemcached.so
%if 0%{?mecab}
%{_libdir}/mysql/mecab
%attr(755, root, root) %{_libdir}/mysql/plugin/libpluginmecab.so
%endif
%attr(755, root, root) %{_libdir}/mysql/plugin/locking_service.so
%attr(755, root, root) %{_libdir}/mysql/plugin/mypluglib.so
%attr(755, root, root) %{_libdir}/mysql/plugin/mysql_no_login.so
%attr(755, root, root) %{_libdir}/mysql/plugin/mysqlx.so
%attr(755, root, root) %{_libdir}/mysql/plugin/rewrite_example.so
%attr(755, root, root) %{_libdir}/mysql/plugin/rewriter.so
%attr(755, root, root) %{_libdir}/mysql/plugin/semisync_master.so
%attr(755, root, root) %{_libdir}/mysql/plugin/semisync_slave.so
%attr(755, root, root) %{_libdir}/mysql/plugin/validate_password.so
%attr(755, root, root) %{_libdir}/mysql/plugin/version_token.so
%dir %{_datadir}/mysql/
%{_datadir}/mysql/charsets/
%{_datadir}/mysql/bulgarian/
%{_datadir}/mysql/czech/
%{_datadir}/mysql/danish/
%{_datadir}/mysql/dutch/
%{_datadir}/mysql/english/
%{_datadir}/mysql/estonian/
%{_datadir}/mysql/french/
%{_datadir}/mysql/german/
%{_datadir}/mysql/greek/
%{_datadir}/mysql/hungarian/
%{_datadir}/mysql/italian/
%{_datadir}/mysql/japanese/
%{_datadir}/mysql/korean/
%{_datadir}/mysql/norwegian-ny/
%{_datadir}/mysql/norwegian/
%{_datadir}/mysql/polish/
%{_datadir}/mysql/portuguese/
%{_datadir}/mysql/romanian/
%{_datadir}/mysql/russian/
%{_datadir}/mysql/serbian/
%{_datadir}/mysql/slovak/
%{_datadir}/mysql/spanish/
%{_datadir}/mysql/swedish/
%{_datadir}/mysql/ukrainian/
%attr(644, root, root) %{_datadir}/mysql/errmsg-utf8.txt
%attr(644, root, root) %{_datadir}/mysql/fill_help_tables.sql
%attr(644, root, root) %{_datadir}/mysql/mysql_system_tables.sql
%attr(644, root, root) %{_datadir}/mysql/mysql_system_tables_data.sql
%attr(644, root, root) %{_datadir}/mysql/mysql_sys_schema.sql
%attr(644, root, root) %{_datadir}/mysql/mysql_test_data_timezone.sql
%attr(644, root, root) %{_datadir}/mysql/mysql_security_commands.sql
%attr(644, root, root) %{_datadir}/mysql/dictionary.txt
%attr(644, root, root) %{_datadir}/mysql/innodb_memcached_config.sql
%attr(644, root, root) %{_datadir}/mysql/install_rewriter.sql
%attr(644, root, root) %{_datadir}/mysql/uninstall_rewriter.sql
%attr(644, root, root) %{_datadir}/mysql/magic
%if 0%{?commercial}
%attr(755, root, root) %{_libdir}/mysql/plugin/audit_log.so
%attr(644, root, root) %{_datadir}/mysql/audit_log_filter_linux_install.sql
%attr(755, root, root) %{_libdir}/mysql/plugin/authentication_pam.so
%attr(755, root, root) %{_libdir}/mysql/plugin/keyring_okv.so
%attr(755, root, root) %{_libdir}/mysql/plugin/thread_pool.so
%attr(755, root, root) %{_libdir}/mysql/plugin/openssl_udf.so
%attr(755, root, root) %{_libdir}/mysql/plugin/firewall.so
%attr(644, root, root) %{_datadir}/mysql/linux_install_firewall.sql
%endif
%dir %attr(750, mysql, mysql) /var/lib/mysql
%dir %attr(755, mysql, mysql) /var/run/mysqld
%dir %attr(750, mysql, mysql) /var/lib/mysql-files
%dir %attr(750, mysql, mysql) /var/lib/mysql-keyring
%changelog
* Tue Sep 13 2016 Balasubramanian Kandasamy <[email protected]> - 5.7.16-1
- Add connection_control.so to server subpackage
* Mon Apr 04 2016 Georgi Kodinov <[email protected]> - 5.7.13-1
- Add test_udf_services.so plugin
- Add keyring_udf.so plugin to server subpackage
* Mon Jan 4 2016 Balasubramanian Kandasamy <[email protected]> - 5.7.11-1
- Include mysql-keyring directory
- Provide keyring_file.so plugin
* Mon Oct 19 2015 Bharathy Satish <[email protected]> - 5.7.10-1
Added new decompression utilities lz4_decompress and zlib_decompress binaries to
client subpackage.
* Mon Jul 6 2015 Balasubramanian Kandasamy <[email protected]> - 5.7.9-1
- Updated for 5.7.9
* Wed Jul 1 2015 Balasubramanian Kandasamy <[email protected]> - 5.7.8-0.3.rc
- Update package names
- Handle plugin changes
* Mon Feb 16 2015 Terje Rosten <[email protected]> - 5.7.6-0.3.m16
- Introduce minimal server for docker
* Tue Feb 3 2015 Balasubramanian Kandasamy <[email protected]> - 5.7.6-0.2.m16
- Include boost sources
- Fix cmake buildrequires
- Fix build on el5 with gcc44
- Add license info in each subpackage
- Soname bump, more compat packages
- Updated default shell for mysql user
- Added mysql_ssl_rsa_setup
- Include mysql-files directory
* Thu Sep 18 2014 Balasubramanian Kandasamy <[email protected]> - 5.7.6-0.2.m16
- Provide replication_observers_example_plugin.so plugin
* Tue Sep 2 2014 Bjorn Munch <[email protected]> - 5.7.6-0.1.m16
- Updated for 5.7.6
* Fri Aug 08 2014 Erlend Dahl <[email protected]> - 5.7.5-0.6.m15
- Provide mysql_no_login.so plugin
* Wed Aug 06 2014 Balasubramanian Kandasamy <[email protected]> - 5.7.5-0.5.m15
- Provide mysql-compat-server dependencies
* Wed Jul 09 2014 Balasubramanian Kandasamy <[email protected]> - 5.7.5-0.4.m15
- Remove perl(GD) and dtrace dependencies
* Thu Jun 26 2014 Balasubramanian Kandasamy <[email protected]> - 5.7.5-0.3.m15
- Resolve embedded-devel conflict issue
* Wed Jun 25 2014 Balasubramanian Kandasamy <[email protected]> - 5.7.5-0.2.m15
- Add bench package
- Enable dtrace
* Thu Apr 24 2014 Balasubramanian Kandasamy <[email protected]> - 5.7.5-0.1.m15
- Updated for 5.7.5
* Mon Apr 07 2014 Balasubramanian Kandasamy <[email protected]> - 5.7.4-0.5.m14
- Fix Cflags for el7
* Mon Mar 31 2014 Balasubramanian Kandasamy <[email protected]> - 5.7.4-0.4.m14
- Support for enterprise packages
- Upgrade from MySQL-* packages
* Wed Mar 12 2014 Balasubramanian Kandasamy <[email protected]> - 5.7.4-0.3.m14
- Resolve conflict with mysql-libs-compat
* Thu Mar 06 2014 Balasubramanian Kandasamy <[email protected]> - 5.7.4-0.2.m14
- Resolve conflict issues during upgrade
- Add ha_example.so plugin which is now included
* Fri Feb 07 2014 Balasubramanian Kandasamy <[email protected]> - 5.7.4-0.1.m14
- 5.7.4
- Enable shared libmysqld by cmake option
- Move mysqltest and test plugins to test subpackage
* Mon Nov 18 2013 Balasubramanian Kandasamy <[email protected]> - 5.7.3-0.3.m13
- Fixed isa_bits error
* Fri Oct 25 2013 Balasubramanian Kandasamy <[email protected]> - 5.7.3-0.1.m13
- Initial 5.7 port
* Fri Oct 25 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.15-1
- Fixed uln advanced rpm libyassl.a error
- Updated to 5.6.15
* Wed Oct 16 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.14-3
- Fixed mysql_install_db usage
- Improved handling of plugin directory
* Fri Sep 27 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.14-2
- Refresh mysql-install patch and service renaming
* Mon Sep 16 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.14-1
- Updated to 5.6.14
* Wed Sep 04 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.13-5
- Support upgrade from 5.5 ULN packages to 5.6
* Tue Aug 27 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.13-4
- Enhanced perl filtering
- Added openssl-devel to buildreq
* Wed Aug 21 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.13-3
- Removed mysql_embedded binary to resolve multilib conflict issue
* Fri Aug 16 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.13-2
- Fixed Provides and Obsoletes issues in server, test packages
* Wed Aug 14 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.13-1
- Updated to 5.6.13
* Mon Aug 05 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.12-9
- Added files list to embedded packages
* Thu Aug 01 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.12-8
- Updated libmysqld.a with libmysqld.so in embedded package
* Mon Jul 29 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.12-7
- Updated test package dependency from client to server
* Wed Jul 24 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.12-6
- Added libs-compat dependency under libs package to resolve server
installation conflicts issue.
* Wed Jul 17 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.12-5
- Removed libmysqlclient.so.16 from libs package
* Fri Jul 05 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.12-4
- Adjusted to work on OEL6
* Wed Jun 26 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.12-3
- Move libs to mysql/
- Basic multi arch support
- Fix changelog dates
* Thu Jun 20 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.12-2
- Major cleanup
* Tue Jun 04 2013 Balasubramanian Kandasamy <[email protected]> - 5.6.12-1
- Updated to 5.6.12
* Mon Nov 05 2012 Joerg Bruehe <[email protected]>
- Allow to override the default to use the bundled yaSSL by an option like
--define="with_ssl /path/to/ssl"
* Wed Oct 10 2012 Bjorn Munch <[email protected]>
- Replace old my-*.cnf config file examples with template my-default.cnf
* Fri Oct 05 2012 Joerg Bruehe <[email protected]>
- Let the installation use the new option "--random-passwords" of "mysql_install_db".
(Bug# 12794345 Ensure root password)
- Fix an inconsistency: "new install" vs "upgrade" are told from the (non)existence
of "$mysql_datadir/mysql" (holding table "mysql.user" and other system stuff).
* Tue Jul 24 2012 Joerg Bruehe <[email protected]>
- Add a macro "runselftest":
if set to 1 (default), the test suite will be run during the RPM build;
this can be oveeridden via the command line by adding
--define "runselftest 0"
Failures of the test suite will NOT make the RPM build fail!
* Mon Jul 16 2012 Joerg Bruehe <[email protected]>
- Add the man page for the "mysql_config_editor".
* Mon Jun 11 2012 Joerg Bruehe <[email protected]>
- Make sure newly added "SPECIFIC-ULN/" directory does not disturb packaging.
* Wed Feb 29 2012 Brajmohan Saxena <[email protected]>
- Removal all traces of the readline library from mysql (BUG 13738013)
* Wed Sep 28 2011 Joerg Bruehe <[email protected]>
- Fix duplicate mentioning of "mysql_plugin" and its manual page,
it is better to keep alphabetic order in the files list (merging!).
* Wed Sep 14 2011 Joerg Bruehe <[email protected]>
- Let the RPM capabilities ("obsoletes" etc) ensure that an upgrade may replace
the RPMs of any configuration (of the current or the preceding release series)
by the new ones. This is done by not using the implicitly generated capabilities
(which include the configuration name) and relying on more generic ones which
just list the function ("server", "client", ...).
The implicit generation cannot be prevented, so all these capabilities must be
explicitly listed in "Obsoletes:"
* Tue Sep 13 2011 Jonathan Perkin <[email protected]>
- Add support for Oracle Linux 6 and Red Hat Enterprise Linux 6. Due to
changes in RPM behaviour ($RPM_BUILD_ROOT is removed prior to install)
this necessitated a move of the libmygcc.a installation to the install
phase, which is probably where it belonged in the first place.
* Tue Sep 13 2011 Joerg Bruehe <[email protected]>
- "make_win_bin_dist" and its manual are dropped, cmake does it different.
* Thu Sep 08 2011 Daniel Fischer <[email protected]>
- Add mysql_plugin man page.
* Tue Aug 30 2011 Tor Didriksen <[email protected]>
- Set CXX=g++ by default to add a dependency on libgcc/libstdc++.
Also, remove the use of the -fno-exceptions and -fno-rtti flags.
TODO: update distro_buildreq/distro_requires
* Tue Aug 30 2011 Joerg Bruehe <[email protected]>
- Add the manual page for "mysql_plugin" to the server package.
* Fri Aug 19 2011 Joerg Bruehe <[email protected]>
- Null-upmerge the fix of bug#37165: This spec file is not affected.
- Replace "/var/lib/mysql" by the spec file variable "%%{mysqldatadir}".
* Fri Aug 12 2011 Daniel Fischer <[email protected]>
- Source plugin library files list from cmake-generated file.
* Mon Jul 25 2011 Chuck Bell <[email protected]>
- Added the mysql_plugin client - enables or disables plugins.
* Thu Jul 21 2011 Sunanda Menon <[email protected]>
- Fix bug#12561297: Added the MySQL embedded binary
* Thu Jul 07 2011 Joerg Bruehe <[email protected]>
- Fix bug#45415: "rpm upgrade recreates test database"
Let the creation of the "test" database happen only during a new installation,
not in an RPM upgrade.
This affects both the "mkdir" and the call of "mysql_install_db".
* Wed Feb 09 2011 Joerg Bruehe <[email protected]>
- Fix bug#56581: If an installation deviates from the default file locations
("datadir" and "pid-file"), the mechanism to detect a running server (on upgrade)
should still work, and use these locations.
The problem was that the fix for bug#27072 did not check for local settings.
* Mon Jan 31 2011 Joerg Bruehe <[email protected]>
- Install the new "manifest" files: "INFO_SRC" and "INFO_BIN".
* Tue Nov 23 2010 Jonathan Perkin <[email protected]>
- EXCEPTIONS-CLIENT has been deleted, remove it from here too
- Support MYSQL_BUILD_MAKE_JFLAG environment variable for passing
a '-j' argument to make.
* Mon Nov 1 2010 Georgi Kodinov <[email protected]>
- Added test authentication (WL#1054) plugin binaries
* Wed Oct 6 2010 Georgi Kodinov <[email protected]>
- Added example external authentication (WL#1054) plugin binaries
* Wed Aug 11 2010 Joerg Bruehe <[email protected]>
- With a recent spec file cleanup, names have changed: A "-community" part was dropped.
Reflect that in the "Obsoletes" specifications.
- Add a "triggerpostun" to handle the uninstall of the "-community" server RPM.
- This fixes bug#55015 "MySQL server is not restarted properly after RPM upgrade".
* Tue Jun 15 2010 Joerg Bruehe <[email protected]>
- Change the behaviour on installation and upgrade:
On installation, do not autostart the server.
*Iff* the server was stopped before the upgrade is started, this is taken as a
sign the administrator is handling that manually, and so the new server will
not be started automatically at the end of the upgrade.
The start/stop scripts will still be installed, so the server will be started
on the next machine boot.
This is the 5.5 version of fixing bug#27072 (RPM autostarting the server).
* Tue Jun 1 2010 Jonathan Perkin <[email protected]>
- Implement SELinux checks from distribution-specific spec file.
* Wed May 12 2010 Jonathan Perkin <[email protected]>
- Large number of changes to build using CMake
- Introduce distribution-specific RPMs
- Drop debuginfo, build all binaries with debug/symbols
- Remove __os_install_post, use native macro
- Remove _unpackaged_files_terminate_build, make it an error to have
unpackaged files
- Remove cluster RPMs
* Wed Mar 24 2010 Joerg Bruehe <[email protected]>
- Add "--with-perfschema" to the configure options.
* Mon Mar 22 2010 Joerg Bruehe <[email protected]>
- User "usr/lib*" to allow for both "usr/lib" and "usr/lib64",
mask "rmdir" return code 1.
- Remove "ha_example.*" files from the list, they aren't built.
* Wed Mar 17 2010 Joerg Bruehe <[email protected]>
- Fix a wrong path name in handling the debug plugins.
* Wed Mar 10 2010 Joerg Bruehe <[email protected]>
- Take the result of the debug plugin build and put it into the optimized tree,
so that it becomes part of the final installation;
include the files in the packlist. Part of the fixes for bug#49022.
* Mon Mar 01 2010 Joerg Bruehe <[email protected]>
- Set "Oracle and/or its affiliates" as the vendor and copyright owner,
accept upgrading from packages showing MySQL or Sun as vendor.
* Fri Feb 12 2010 Joerg Bruehe <[email protected]>
- Formatting changes:
Have a consistent structure of separator lines and of indentation
(8 leading blanks => tab).
- Introduce the variable "src_dir".
- Give the environment variables "MYSQL_BUILD_CC(CXX)" precedence
over "CC" ("CXX").
- Drop the old "with_static" argument analysis, this is not supported
in 5.1 since ages.
- Introduce variables to control the handlers individually, as well
as other options.
- Use the new "--with-plugin" notation for the table handlers.
- Drop handling "/etc/rc.d/init.d/mysql", the switch to "/etc/init.d/mysql"
was done back in 2002 already.
- Make "--with-zlib-dir=bundled" the default, add an option to disable it.
- Add missing manual pages to the file list.
- Improve the runtime check for "libgcc.a", protect it against being tried
with the Intel compiler "icc".
* Mon Jan 11 2010 Joerg Bruehe <[email protected]>
- Change RPM file naming:
- Suffix like "-m2", "-rc" becomes part of version as "_m2", "_rc".
- Release counts from 1, not 0.
* Wed Dec 23 2009 Joerg Bruehe <[email protected]>
- The "semisync" plugin file name has lost its introductory "lib",
adapt the file lists for the subpackages.
This is a part missing from the fix for bug#48351.
- Remove the "fix_privilege_tables" manual, it does not exist in 5.5
(and likely, the whole script will go, too).
* Mon Nov 16 2009 Joerg Bruehe <[email protected]>
- Fix some problems with the directives around "tcmalloc" (experimental),
remove erroneous traces of the InnoDB plugin (that is 5.1 only).
* Tue Oct 06 2009 Magnus Blaudd <[email protected]>
- Removed mysql_fix_privilege_tables
* Fri Oct 02 2009 Alexander Nozdrin <[email protected]>
- "mysqlmanager" got removed from version 5.4, all references deleted.
* Fri Aug 28 2009 Joerg Bruehe <[email protected]>
- Merge up from 5.1 to 5.4: Remove handling for the InnoDB plugin.
* Thu Aug 27 2009 Joerg Bruehe <[email protected]>
- This version does not contain the "Instance manager", "mysqlmanager":
Remove it from the spec file so that packaging succeeds.
* Mon Aug 24 2009 Jonathan Perkin <[email protected]>
- Add conditionals for bundled zlib and innodb plugin
* Fri Aug 21 2009 Jonathan Perkin <[email protected]>
- Install plugin libraries in appropriate packages.
- Disable libdaemon_example and ftexample plugins.
* Thu Aug 20 2009 Jonathan Perkin <[email protected]>
- Update variable used for mysql-test suite location to match source.
* Fri Nov 07 2008 Joerg Bruehe <[email protected]>
- Correct yesterday's fix, so that it also works for the last flag,
and fix a wrong quoting: un-quoted quote marks must not be escaped.
* Thu Nov 06 2008 Kent Boortz <[email protected]>
- Removed "mysql_upgrade_shell"
- Removed some copy/paste between debug and normal build
* Thu Nov 06 2008 Joerg Bruehe <[email protected]>
- Modify CFLAGS and CXXFLAGS such that a debug build is not optimized.
This should cover both gcc and icc flags. Fixes bug#40546.
* Fri Aug 29 2008 Kent Boortz <[email protected]>
- Removed the "Federated" storage engine option, and enabled in all
* Tue Aug 26 2008 Joerg Bruehe <[email protected]>
- Get rid of the "warning: Installed (but unpackaged) file(s) found:"
Some generated files aren't needed in RPMs:
- the "sql-bench/" subdirectory
Some files were missing:
- /usr/share/aclocal/mysql.m4 ("devel" subpackage)
- Manual "mysqlbug" ("server" subpackage)
- Program "innochecksum" and its manual ("server" subpackage)
- Manual "mysql_find_rows" ("client" subpackage)
- Script "mysql_upgrade_shell" ("client" subpackage)
- Program "ndb_cpcd" and its manual ("ndb-extra" subpackage)
- Manuals "ndb_mgm" + "ndb_restore" ("ndb-tools" subpackage)
* Mon Mar 31 2008 Kent Boortz <[email protected]>
- Made the "Federated" storage engine an option
- Made the "Cluster" storage engine and sub packages an option
* Wed Mar 19 2008 Joerg Bruehe <[email protected]>
- Add the man pages for "ndbd" and "ndb_mgmd".
* Mon Feb 18 2008 Timothy Smith <[email protected]>
- Require a manual upgrade if the alread-installed mysql-server is
from another vendor, or is of a different major version.
* Wed May 02 2007 Joerg Bruehe <[email protected]>
- "ndb_size.tmpl" is not needed any more,
"man1/mysql_install_db.1" lacked the trailing '*'.
* Sat Apr 07 2007 Kent Boortz <[email protected]>
- Removed man page for "mysql_create_system_tables"
* Wed Mar 21 2007 Daniel Fischer <[email protected]>
- Add debug server.
* Mon Mar 19 2007 Daniel Fischer <[email protected]>
- Remove Max RPMs; the server RPMs contain a mysqld compiled with all
features that previously only were built into Max.
* Fri Mar 02 2007 Joerg Bruehe <[email protected]>
- Add several man pages for NDB which are now created.
* Fri Jan 05 2007 Kent Boortz <[email protected]>
- Put back "libmygcc.a", found no real reason it was removed.
- Add CFLAGS to gcc call with --print-libgcc-file, to make sure the
correct "libgcc.a" path is returned for the 32/64 bit architecture.
* Mon Dec 18 2006 Joerg Bruehe <[email protected]>
- Fix the move of "mysqlmanager" to section 8: Directory name was wrong.
* Thu Dec 14 2006 Joerg Bruehe <[email protected]>
- Include the new man pages for "my_print_defaults" and "mysql_tzinfo_to_sql"
in the server RPM.
- The "mysqlmanager" man page got moved from section 1 to 8.
* Thu Nov 30 2006 Joerg Bruehe <[email protected]>
- Call "make install" using "benchdir_root=%%{_datadir}",
because that is affecting the regression test suite as well.
* Thu Nov 16 2006 Joerg Bruehe <[email protected]>
- Explicitly note that the "MySQL-shared" RPMs (as built by MySQL AB)
replace "mysql-shared" (as distributed by SuSE) to allow easy upgrading
(bug#22081).
* Mon Nov 13 2006 Joerg Bruehe <[email protected]>
- Add "--with-partition" t 2006 Joerg Bruehe <[email protected]>
- Use the Perl script to run the tests, because it will automatically check
whether the server is configured with SSL.
* Tue Jun 27 2006 Joerg Bruehe <[email protected]>
- move "mysqldumpslow" from the client RPM to the server RPM (bug#20216)
- Revert all previous attempts to call "mysql_upgrade" during RPM upgrade,
there are some more aspects which need to be solved before this is possible.
For now, just ensure the binary "mysql_upgrade" is delivered and installysql.com>
- To run "mysql_upgrade", we need a running server;
start it in isolation and skip password checks.
* Sat May 20 2006 Kent Boortz <[email protected]>
- Always compile for PIC, position independent code.
* Wed May 10 2006 Kent Boortz <[email protected]>
- Use character set "all" when compiling with Cluster, to make Cluster
nodes independent on the character set directory, and the problem
that two RPM sub packages both wants to install this directory.
* Mon May 01 2006 Kent Boortz <[email protected]>
- Use "./libtool --mode=execute" instead of searching for the
executable in current directory and ".libs".
* Fri Apr 28 2006 Kent Boortz <[email protected]>
- Install and run "mysql_upgrade"
* Wed Apr 12 2006 Jim Winstead <[email protected]>
- Remove sql-bench, and MySQL-bench RPM (will be built as an independent
project from the mysql-bench repository)
* Tue Apr 11 2006 Jim Winstead <[email protected]>
- Remove old mysqltestmanager and related programs
* Sat Apr 01 2006 Kent Boortz <[email protected]>
- Set $LDFLAGS from $MYSQL_BUILD_LDFLAGS
* Tue Mar 07 2006 Kent Boortz <[email protected]>
- Changed product name from "Community Edition" to "Community Server"
* Mon Mar 06 2006 Kent Boortz <[email protected]>
- Fast mutexes is now disabled by default, but should be
used in Linux builds.
* Mon Feb 20 2006 Kent Boortz <[email protected]>
- Reintroduced a max build
- Limited testing of 'debug' and 'max' servers
- Berkeley DB only in 'max'
* Mon Feb 13 2006 Joerg Bruehe <[email protected]>
- Use "-i" on "make test-force";
this is essential for later evaluation of this log file.
* Thu Feb 09 2006 Kent Boortz <[email protected]>
- Pass '-static' to libtool, link static with our own libraries, dynamic
with system libraries. Link with the bundled zlib.
* Wed Feb 08 2006 Kristian Nielsen <[email protected]>
- Modified RPM spec to match new 5.1 debug+max combined community packaging.
* Sun Dec 18 2005 Kent Boortz <[email protected]>
- Added "client/mysqlslap"
* Mon Dec 12 2005 Rodrigo Novo <[email protected]>
- Added zlib to the list of (static) libraries installed
- Added check against libtool wierdness (WRT: sql/mysqld || sql/.libs/mysqld)
- Compile MySQL with bundled zlib
- Fixed %%packager name to "MySQL Production Engineering Team"
* Mon Dec 05 2005 Joerg Bruehe <[email protected]>
- Avoid using the "bundled" zlib on "shared" builds:
As it is not installed (on the build system), this gives dependency
problems with "libtool" causing the build to fail.
(Change was done on Nov 11, but left uncommented.)
* Tue Nov 22 2005 Joerg Bruehe <[email protected]>
- Extend the file existence check for "init.d/mysql" on un-install
to also guard the call to "insserv"/"chkconfig".
* Thu Oct 27 2005 Lenz Grimmer <[email protected]>
- added more man pages
* Wed Oct 19 2005 Kent Boortz <[email protected]>
- Made yaSSL support an option (off by default)
* Wed Oct 19 2005 Kent Boortz <[email protected]>
- Enabled yaSSL support
* Sat Oct 15 2005 Kent Boortz <[email protected]>
- Give mode arguments the same way in all places
- fixed the removing of the RPM_BUILD_ROOT in the %%clean section (the
$RBR variable did not get expanded, thus leaving old build roots behind)
* Thu Aug 04 2005 Lenz Grimmer <[email protected]>
- Fixed the creation of the mysql user group account in the postinstall
section (BUG 12348)
- Fixed enabling the Archive storage engine in the Max binary
* Tue Aug 02 2005 Lenz Grimmer <[email protected]>
- Fixed the Requires: tag for the server RPM (BUG 12233)
* Fri Jul 15 2005 Lenz Grimmer <[email protected]>
- create a "mysql" user group and assign the mysql user account to that group
in the server postinstall section. (BUG 10984)
* Tue Jun 14 2005 Lenz Grimmer <[email protected]>
- Do not build statically on i386 by default, only when adding either "--with
static" or "--define '_with_static 1'" to the RPM build options. Static
linking really only makes sense when linking against the specially patched
glibc 2.2.5.
* Mon Jun 06 2005 Lenz Grimmer <[email protected]>
- added mysql_client_test to the "bench" subpackage (BUG 10676)
- added the libndbclient static and shared libraries (BUG 10676)
* Wed Jun 01 2005 Lenz Grimmer <[email protected]>
- use "mysqldatadir" variable instead of hard-coding the path multiple times
- use the "mysqld_user" variable on all occasions a user name is referenced
- removed (incomplete) Brazilian translations
- removed redundant release tags from the subpackage descriptions
* Wed May 25 2005 Joerg Bruehe <[email protected]>
- Added a "make clean" between separate calls to "BuildMySQL".
* Thu May 12 2005 Guilhem Bichot <[email protected]>
- Removed the mysql_tableinfo script made obsolete by the information schema
* Wed Apr 20 2005 Lenz Grimmer <[email protected]>
- Enabled the "blackhole" storage engine for the Max RPM
* Wed Apr 13 2005 Lenz Grimmer <[email protected]>