mysql.spec.sh 18.9 KB
Newer Older
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1 2
%define mysql_version		@VERSION@
%define shared_lib_version	@SHARED_LIB_VERSION@
3
%define release			0
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4 5 6 7 8
%define mysqld_user		mysql

%define see_base For a description of MySQL see the base MySQL RPM or http://www.mysql.com

Name: MySQL
9
Summary:	MySQL: a very fast and reliable SQL database server
bk@work.mysql.com's avatar
bk@work.mysql.com committed
10 11 12 13 14 15 16 17 18
Group:		Applications/Databases
Summary(pt_BR): MySQL: Um servidor SQL rpido e confivel.
Group(pt_BR):	Aplicaes/Banco_de_Dados
Version:	@MYSQL_NO_DASH_VERSION@
Release:	%{release}
Copyright:	GPL / LGPL
Source:		http://www.mysql.com/Downloads/MySQL-@MYSQL_BASE_VERSION@/mysql-%{mysql_version}.tar.gz
Icon:		mysql.gif
URL:		http://www.mysql.com/
19
Packager:	Lenz Grimmer <lenz@mysql.com>
20
Vendor:		MySQL AB
21
Requires: fileutils sh-utils
22
Provides:	msqlormysql MySQL-server mysql
bk@work.mysql.com's avatar
bk@work.mysql.com committed
23 24 25 26
Obsoletes:	mysql

# Think about what you use here since the first step is to
# run a rm -rf
27
BuildRoot:    %{_tmppath}/%{name}-%{version}-build
bk@work.mysql.com's avatar
bk@work.mysql.com committed
28 29 30

# From the manual
%description
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
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 AB.

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 AB 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.
bk@work.mysql.com's avatar
bk@work.mysql.com committed
47

48 49 50 51 52 53 54
This package includes the MySQL server binary (statically linked,
compiled with InnoDB support) as well as related utilities to run
and administrate a MySQL server.

If you want to access and work with the database, you have to install
package "MySQL-client" as well!

bk@work.mysql.com's avatar
bk@work.mysql.com committed
55 56 57 58 59 60 61
%package client
Release: %{release}
Summary: MySQL - Client
Group: Applications/Databases
Summary(pt_BR): MySQL - Cliente
Group(pt_BR): Aplicaes/Banco_de_Dados
Obsoletes: mysql-client
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
62
Provides: mysql-client
bk@work.mysql.com's avatar
bk@work.mysql.com committed
63 64 65 66 67 68 69 70 71 72 73

%description client
This package contains the standard MySQL clients. 

%{see_base}

%description client -l pt_BR
Este pacote contm os clientes padro para o MySQL.

%package bench
Release: %{release}
74
Requires: %{name}-client perl-DBI perl
75
Summary: MySQL - Benchmarks and test system
bk@work.mysql.com's avatar
bk@work.mysql.com committed
76 77 78
Group: Applications/Databases
Summary(pt_BR): MySQL - Medies de desempenho
Group(pt_BR): Aplicaes/Banco_de_Dados
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
79
Provides: mysql-bench
bk@work.mysql.com's avatar
bk@work.mysql.com committed
80 81 82 83 84 85 86 87 88 89 90 91
Obsoletes: mysql-bench

%description bench
This package contains MySQL benchmark scripts and data.

%{see_base}

%description bench -l pt_BR
Este pacote contm medies de desempenho de scripts e dados do MySQL.

%package devel
Release: %{release}
92
Requires: %{name}-client
bk@work.mysql.com's avatar
bk@work.mysql.com committed
93 94 95 96
Summary: MySQL - Development header files and libraries
Group: Applications/Databases
Summary(pt_BR): MySQL - Medies de desempenho
Group(pt_BR): Aplicaes/Banco_de_Dados
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
97
Provides: mysql-devel
bk@work.mysql.com's avatar
bk@work.mysql.com committed
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
Obsoletes: mysql-devel

%description devel
This package contains the development header files and libraries
necessary to develop MySQL client applications.

%{see_base}

%description devel -l pt_BR
Este pacote contm os arquivos de cabealho (header files) e bibliotecas 
necessrias para desenvolver aplicaes clientes do MySQL. 

%package shared
Release: %{release}
Summary: MySQL - Shared libraries
Group: Applications/Databases

%description shared
This package contains the shared libraries (*.so*) which certain
languages and applications need to dynamically load and use MySQL.

119 120
%package Max
Release: %{release}
121
Summary: MySQL - server with Berkeley DB, RAID and UDF support
122
Group: Applications/Databases
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
123
Provides: mysql-Max
124
Obsoletes: mysql-Max
125
Requires: MySQL >= 4.0
126

127
%description Max 
128
Optional MySQL server binary that supports additional features like
129
Berkeley DB, RAID and User Defined Functions (UDF).
130 131 132 133
To activate this binary, just install this package in addition to
the standard MySQL package.

Please note that this is a dynamically linked binary!
134

135 136
%package embedded
Release: %{release}
137
Requires: %{name}-devel
138 139 140 141
Summary: MySQL - embedded library
Group: Applications/Databases
Summary(pt_BR): MySQL - Medies de desempenho
Group(pt_BR): Aplicaes/Banco_de_Dados
142
Obsoletes: mysql-embedded
143

144
%description embedded
145 146 147 148 149 150 151 152 153
This package contains the MySQL server as an embedded library.

The embedded MySQL server library makes it possible to run a
full-featured MySQL server inside the client application.
The main benefits are increased speed and more simple management
for embedded applications.

The API is identical for the embedded MySQL version and the
client/server version.
154 155 156

%{see_base}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
157 158 159 160 161
%prep
%setup -n mysql-%{mysql_version}

%build
# The all-static flag is to make the RPM work on different
162
# distributions. This version tries to put shared mysqlclient libraries
bk@work.mysql.com's avatar
bk@work.mysql.com committed
163 164 165 166 167 168
# in a separate package.

BuildMySQL() {
# The --enable-assembler simply does nothing on systems that does not
# support assembler speedups.
sh -c  "PATH=\"${MYSQL_BUILD_PATH:-/bin:/usr/bin}\" \
169
	CC=\"${MYSQL_BUILD_CC:-gcc}\" \
monty@donna.mysql.fi's avatar
monty@donna.mysql.fi committed
170
	CFLAGS=\"${MYSQL_BUILD_CFLAGS:- -O3}\" \
171
	CXX=\"${MYSQL_BUILD_CXX:-gcc}\" \
monty@donna.mysql.fi's avatar
monty@donna.mysql.fi committed
172
	CXXFLAGS=\"${MYSQL_BUILD_CXXFLAGS:- -O3 \
173
	          -felide-constructors -fno-exceptions -fno-rtti \
monty@donna.mysql.fi's avatar
monty@donna.mysql.fi committed
174
		  }\" \
bk@work.mysql.com's avatar
bk@work.mysql.com committed
175 176 177
	./configure \
 	    $* \
	    --enable-assembler \
178
	    --enable-local-infile \
bk@work.mysql.com's avatar
bk@work.mysql.com committed
179 180 181 182 183 184 185 186 187
            --with-mysqld-user=%{mysqld_user} \
            --with-unix-socket-path=/var/lib/mysql/mysql.sock \
            --prefix=/ \
	    --with-extra-charsets=complex \
            --exec-prefix=/usr \
            --libexecdir=/usr/sbin \
            --sysconfdir=/etc \
            --datadir=/usr/share \
            --localstatedir=/var/lib/mysql \
188
            --infodir=%{_infodir} \
bk@work.mysql.com's avatar
bk@work.mysql.com committed
189
            --includedir=/usr/include \
190
            --mandir=%{_mandir} \
191
	    --with-embedded-server \
192
	    --enable-thread-safe-client \
bk@work.mysql.com's avatar
bk@work.mysql.com committed
193 194 195
	    --with-comment=\"Official MySQL RPM\";
	    # Add this for more debugging support
	    # --with-debug
196 197
	    # Add this for MyISAM RAID support:
	    # --with-raid
bk@work.mysql.com's avatar
bk@work.mysql.com committed
198 199 200
	    "

 # benchdir does not fit in above model. Maybe a separate bench distribution
201
 make benchdir_root=$RPM_BUILD_ROOT/usr/share/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
202 203
}

204
# Use our own copy of glibc
bk@work.mysql.com's avatar
bk@work.mysql.com committed
205

206
OTHER_LIBC_DIR=/usr/local/mysql-glibc
207
USE_OTHER_LIBC_DIR=""
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
208
if test -d "$OTHER_LIBC_DIR"
209 210 211 212 213 214
then
  USE_OTHER_LIBC_DIR="--with-other-libc=$OTHER_LIBC_DIR"
fi

# Use the build root for temporary storage of the shared libraries.

bk@work.mysql.com's avatar
bk@work.mysql.com committed
215 216
RBR=$RPM_BUILD_ROOT
MBD=$RPM_BUILD_DIR/mysql-%{mysql_version}
217 218 219

# Clean up the BuildRoot first
[ "$RBR" != "/" ] && [ -d $RBR ] && rm -rf $RBR;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
220 221
mkdir -p $RBR

222 223 224 225 226 227
#
# Use MYSQL_BUILD_PATH so that we can use a dedicated version of gcc
#
PATH=${MYSQL_BUILD_PATH:-/bin:/usr/bin}
export PATH

228
# Build the 4.0 Max binary (includes BDB and UDFs and therefore
229
# cannot be linked statically against the patched glibc)
230

231 232 233
BuildMySQL "--enable-shared \
		--with-berkeley-db \
		--with-innodb \
234
		--with-raid \
235
		--with-server-suffix='-Max'"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
236

237 238
# Save everything for debug
# tar cf $RBR/all.tar .
bk@work.mysql.com's avatar
bk@work.mysql.com committed
239

240
# Save mysqld-max
241
mv sql/mysqld sql/mysqld-max
242
nm --numeric-sort sql/mysqld-max > sql/mysqld-max.sym
243

244
# Save libraries
bk@work.mysql.com's avatar
bk@work.mysql.com committed
245
(cd libmysql/.libs; tar cf $RBR/shared-libs.tar *.so*)
246
(cd libmysql_r/.libs; tar rf $RBR/shared-libs.tar *.so*)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
247 248 249 250 251 252

# Save manual to avoid rebuilding
mv Docs/manual.ps Docs/manual.ps.save
make distclean
mv Docs/manual.ps.save Docs/manual.ps

253 254 255
# RPM:s destroys Makefile.in files, so we generate them here
automake

256
# Now build the statically linked 4.0 binary (which includes InnoDB)
257
BuildMySQL "--disable-shared \
258 259 260 261 262 263 264
		--with-mysqld-ldflags='-all-static' \
		--with-client-ldflags='-all-static' \
		$USE_OTHER_LIBC_DIR \
		--without-berkeley-db \
		--with-innodb \
		--without-vio \
		--without-openssl"
265
nm --numeric-sort sql/mysqld > sql/mysqld.sym
bk@work.mysql.com's avatar
bk@work.mysql.com committed
266 267 268 269

%install -n mysql-%{mysql_version}
RBR=$RPM_BUILD_ROOT
MBD=$RPM_BUILD_DIR/mysql-%{mysql_version}
270

bk@work.mysql.com's avatar
bk@work.mysql.com committed
271
# Ensure that needed directories exists
272
install -d $RBR/etc/{logrotate.d,init.d}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
273
install -d $RBR/var/lib/mysql/mysql
274
install -d $RBR/usr/share/{sql-bench,mysql-test}
275
install -d $RBR%{_mandir}
276 277 278
install -d $RBR/usr/{sbin,lib,include}

# Install all binaries stripped 
279
make install-strip DESTDIR=$RBR benchdir_root=/usr/share/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
280 281 282 283

# Install shared libraries (Disable for architectures that don't support it)
(cd $RBR/usr/lib; tar xf $RBR/shared-libs.tar)

284
# install saved mysqld-max
285
install -s -m755 $MBD/sql/mysqld-max $RBR/usr/sbin/mysqld-max
286

287 288 289 290
# install symbol files ( for stack trace resolution)
install -m644 $MBD/sql/mysqld-max.sym $RBR/usr/lib/mysql/mysqld-max.sym
install -m644 $MBD/sql/mysqld.sym $RBR/usr/lib/mysql/mysqld.sym

bk@work.mysql.com's avatar
bk@work.mysql.com committed
291 292
# Install logrotate and autostart
install -m644 $MBD/support-files/mysql-log-rotate $RBR/etc/logrotate.d/mysql
293
install -m755 $MBD/support-files/mysql.server $RBR/etc/init.d/mysql
bk@work.mysql.com's avatar
bk@work.mysql.com committed
294

295 296 297 298
# Create symbolic compatibility link safe_mysqld -> mysqld_safe
# (safe_mysqld will be gone in MySQL 4.1)
ln -sf ./mysqld_safe $RBR/usr/bin/safe_mysqld

bk@work.mysql.com's avatar
bk@work.mysql.com committed
299
%pre
300 301 302 303 304 305 306
# Shut down a previously installed server first
if test -x /etc/init.d/mysql
then
  /etc/init.d/mysql stop > /dev/null 2>&1
  echo "Giving mysqld a couple of seconds to exit nicely"
  sleep 5
elif test -x /etc/rc.d/init.d/mysql
bk@work.mysql.com's avatar
bk@work.mysql.com committed
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
then
  /etc/rc.d/init.d/mysql stop > /dev/null 2>&1
  echo "Giving mysqld a couple of seconds to exit nicely"
  sleep 5
fi

%post
mysql_datadir=/var/lib/mysql

# Create data directory if needed
if test ! -d $mysql_datadir;		then mkdir $mysql_datadir; fi
if test ! -d $mysql_datadir/mysql;	then mkdir $mysql_datadir/mysql; fi
if test ! -d $mysql_datadir/test;	then mkdir $mysql_datadir/test; fi

# Make MySQL start/shutdown automatically when the machine does it.
322 323 324 325 326 327 328 329 330
# use insserv for older SuSE Linux versions
if test -x /sbin/insserv
then
	/sbin/insserv /etc/init.d/mysql
# use chkconfig on Red Hat and newer SuSE releases
elif test -x /sbin/chkconfig
then
	/sbin/chkconfig --add mysql
fi
bk@work.mysql.com's avatar
bk@work.mysql.com committed
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350

# Create a MySQL user. Do not report any problems if it already
# exists. This is redhat specific and should be handled more portable
useradd -M -r -d $mysql_datadir -s /bin/bash -c "MySQL server" mysql 2> /dev/null || true 

# Change permissions so that the user that will run the MySQL daemon
# owns all database files.
chown -R mysql $mysql_datadir

# Initiate databases
mysql_install_db -IN-RPM

# Change permissions again to fix any new files.
chown -R mysql $mysql_datadir

# Fix permissions for the permission database so that only the user
# can read them.
chmod -R og-rw $mysql_datadir/mysql

# Restart in the same way that mysqld will be started normally.
351
/etc/init.d/mysql start
bk@work.mysql.com's avatar
bk@work.mysql.com committed
352 353 354 355

# Allow safe_mysqld to start mysqld and print a message before we exit
sleep 2

356 357
%post Max
# Restart mysqld, to use the new binary.
358 359
echo "Restarting mysqld."
/etc/init.d/mysql restart > /dev/null 2>&1
360

bk@work.mysql.com's avatar
bk@work.mysql.com committed
361 362 363
%preun
if test $1 = 0
then
364 365
	# Stop MySQL before uninstalling it
  if test -x /etc/init.d/mysql
366
  then
367
    /etc/init.d/mysql stop > /dev/null
368 369 370
  fi

  # Remove autostart of mysql
371 372 373 374 375 376 377 378 379
	# for older SuSE Linux versions
	if test -x /sbin/insserv
	then
		/sbin/insserv -r /etc/init.d/mysql
	# use chkconfig on Red Hat and newer SuSE releases
	elif test -x /sbin/chkconfig
	then
		/sbin/chkconfig --del mysql
	fi
bk@work.mysql.com's avatar
bk@work.mysql.com committed
380
fi
381

bk@work.mysql.com's avatar
bk@work.mysql.com committed
382 383 384
# We do not remove the mysql user since it may still own a lot of
# database files.

385 386 387 388
# Clean up the BuildRoot
%clean
[ "$RBR" != "/" ] && [ -d $RBR ] && rm -rf $RBR;

bk@work.mysql.com's avatar
bk@work.mysql.com committed
389
%files
390 391
%defattr(755 root, root)

392 393 394 395 396 397 398 399 400 401 402 403 404 405
%doc %attr(644, root, root) COPYING COPYING.LIB README
%doc %attr(644, root, root) Docs/manual.{html,ps,texi,txt} Docs/manual_toc.html
%doc %attr(644, root, root) support-files/my-*.cnf

%doc %attr(644, root, root) %{_infodir}/mysql.info*

%doc %attr(644, root, man) %{_mandir}/man1/isamchk.1*
%doc %attr(644, root, man) %{_mandir}/man1/isamlog.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysql_zap.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqld.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqld_multi.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqld_safe.1*
%doc %attr(644, root, man) %{_mandir}/man1/perror.1*
%doc %attr(644, root, man) %{_mandir}/man1/replace.1*
bk@work.mysql.com's avatar
bk@work.mysql.com committed
406 407 408

%attr(755, root, root) /usr/bin/isamchk
%attr(755, root, root) /usr/bin/isamlog
409
%attr(755, root, root) /usr/bin/my_print_defaults
bk@work.mysql.com's avatar
bk@work.mysql.com committed
410 411 412 413
%attr(755, root, root) /usr/bin/myisamchk
%attr(755, root, root) /usr/bin/myisamlog
%attr(755, root, root) /usr/bin/myisampack
%attr(755, root, root) /usr/bin/mysql_convert_table_format
414 415
%attr(755, root, root) /usr/bin/mysql_explain_log
%attr(755, root, root) /usr/bin/mysql_fix_privilege_tables
bk@work.mysql.com's avatar
bk@work.mysql.com committed
416 417 418 419
%attr(755, root, root) /usr/bin/mysql_install_db
%attr(755, root, root) /usr/bin/mysql_setpermission
%attr(755, root, root) /usr/bin/mysql_zap
%attr(755, root, root) /usr/bin/mysqlbug
420 421
%attr(755, root, root) /usr/bin/mysqld_multi
%attr(755, root, root) /usr/bin/mysqld_safe
bk@work.mysql.com's avatar
bk@work.mysql.com committed
422
%attr(755, root, root) /usr/bin/mysqlhotcopy
423 424
%attr(755, root, root) /usr/bin/mysqltest
%attr(755, root, root) /usr/bin/pack_isam
bk@work.mysql.com's avatar
bk@work.mysql.com committed
425 426
%attr(755, root, root) /usr/bin/perror
%attr(755, root, root) /usr/bin/replace
427
%attr(755, root, root) /usr/bin/resolve_stack_dump
428
%attr(755, root, root) /usr/bin/resolveip
429
%attr(755, root, root) /usr/bin/safe_mysqld
bk@work.mysql.com's avatar
bk@work.mysql.com committed
430 431

%attr(755, root, root) /usr/sbin/mysqld
432
%attr(644, root, root) /usr/lib/mysql/mysqld.sym
bk@work.mysql.com's avatar
bk@work.mysql.com committed
433 434

%attr(644, root, root) /etc/logrotate.d/mysql
435
%attr(755, root, root) /etc/init.d/mysql
bk@work.mysql.com's avatar
bk@work.mysql.com committed
436 437 438 439 440 441

%attr(755, root, root) /usr/share/mysql/

%files client
%attr(755, root, root) /usr/bin/msql2mysql
%attr(755, root, root) /usr/bin/mysql
442
%attr(755, root, root) /usr/bin/mysql_find_rows
bk@work.mysql.com's avatar
bk@work.mysql.com committed
443 444
%attr(755, root, root) /usr/bin/mysqlaccess
%attr(755, root, root) /usr/bin/mysqladmin
445
%attr(755, root, root) /usr/bin/mysqlbinlog
446
%attr(755, root, root) /usr/bin/mysqlcheck
bk@work.mysql.com's avatar
bk@work.mysql.com committed
447 448 449 450
%attr(755, root, root) /usr/bin/mysqldump
%attr(755, root, root) /usr/bin/mysqlimport
%attr(755, root, root) /usr/bin/mysqlshow

451 452 453 454 455
%doc %attr(644, root, man) %{_mandir}/man1/mysql.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqlaccess.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqladmin.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqldump.1*
%doc %attr(644, root, man) %{_mandir}/man1/mysqlshow.1*
bk@work.mysql.com's avatar
bk@work.mysql.com committed
456 457 458 459 460 461 462 463

%post shared
/sbin/ldconfig

%postun shared
/sbin/ldconfig

%files devel
464
%defattr(644 root, root)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
465 466
%attr(755, root, root) /usr/bin/comp_err
%attr(755, root, root) /usr/bin/mysql_config
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
%dir %attr(755, root, root) /usr/include/mysql
%dir %attr(755, root, root) /usr/lib/mysql
/usr/include/mysql/*
/usr/lib/mysql/libdbug.a
/usr/lib/mysql/libheap.a
/usr/lib/mysql/libmerge.a
/usr/lib/mysql/libmyisam.a
/usr/lib/mysql/libmyisammrg.a
/usr/lib/mysql/libmysqlclient.a
/usr/lib/mysql/libmysqlclient.la
/usr/lib/mysql/libmysqlclient_r.a
/usr/lib/mysql/libmysqlclient_r.la
/usr/lib/mysql/libmystrings.a
/usr/lib/mysql/libmysys.a
/usr/lib/mysql/libnisam.a
/usr/lib/mysql/libvio.a
bk@work.mysql.com's avatar
bk@work.mysql.com committed
483 484

%files shared
485
%defattr(755 root, root)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
486
# Shared libraries (omit for architectures that don't support them)
487
/usr/lib/*.so*
bk@work.mysql.com's avatar
bk@work.mysql.com committed
488 489 490

%files bench
%attr(-, root, root) /usr/share/sql-bench
491
%attr(-, root, root) /usr/share/mysql-test
492
%attr(755, root, root) /usr/bin/mysqlmanager
493 494
%attr(755, root, root) /usr/bin/mysqlmanager-pwgen
%attr(755, root, root) /usr/bin/mysqlmanagerc
bk@work.mysql.com's avatar
bk@work.mysql.com committed
495

496 497
%files Max
%attr(755, root, root) /usr/sbin/mysqld-max
498
%attr(644, root, root) /usr/lib/mysql/mysqld-max.sym
499

500
%files embedded
501
%attr(644, root, root) /usr/lib/mysql/libmysqld.a
502

503
%changelog 
bk@work.mysql.com's avatar
bk@work.mysql.com committed
504

505 506 507 508 509 510 511 512 513 514 515
* Wed Nov 27 2002 Lenz Grimmer <lenz@mysql.com>

- moved init script from /etc/rc.d/init.d to /etc/init.d (the majority of 
  Linux distributions now support this scheme as proposed by the LSB either
  directly or via a compatibility symlink)
- Use new "restart" init script action instead of starting and stopping
  separately
- Be more flexible in activating the automatic bootup - use insserv (on
  older SuSE versions) or chkconfig (Red Hat, newer SuSE versions and
  others) to create the respective symlinks

516 517 518 519 520
* Wed Sep 25 2002 Lenz Grimmer <lenz@mysql.com>

- MySQL-Max now requires MySQL >= 4.0 to avoid version mismatches
  (mixing 3.23 and 4.0 packages)

521 522 523 524 525 526 527
* Fri Aug 09 2002 Lenz Grimmer <lenz@mysql.com>
 
- Turn off OpenSSL in MySQL-Max for now until it works properly again
- enable RAID for the Max binary instead
- added compatibility link: safe_mysqld -> mysqld_safe to ease the
  transition from 3.23

528 529 530 531 532 533 534 535 536 537
* Thu Jul 18 2002 Lenz Grimmer <lenz@mysql.com>

- Reworked the build steps a little bit: the Max binary is supposed
  to include OpenSSL, which cannot be linked statically, thus trying
	to statically link against a special glibc is futile anyway
- because of this, it is not required to make yet another build run
  just to compile the shared libs (saves a lot of time)
- updated package description of the Max subpackage
- clean up the BuildRoot directory afterwards

538 539 540 541 542 543 544
* Mon Jul 15 2002 Lenz Grimmer <lenz@mysql.com>

- Updated Packager information
- Fixed the build options: the regular package is supposed to
  include InnoDB and linked statically, while the Max package
	should include BDB and SSL support

545 546 547 548 549 550 551 552
* Fri May 03 2002 Lenz Grimmer <lenz@mysql.com>

- Use more RPM macros (e.g. infodir, mandir) to make the spec
  file more portable
- reorganized the installation of documentation files: let RPM
  take care of this
- reorganized the file list: actually install man pages along
  with the binaries of the respective subpackage
553
- do not include libmysqld.a in the devel subpackage as well, if we
554 555 556
  have a special "embedded" subpackage
- reworked the package descriptions

557 558 559 560
* Mon Oct  8 2001 Monty

- Added embedded server as a separate RPM

561 562 563 564
* Fri Apr 13 2001 Monty

- Added mysqld-max to the distribution

565 566 567 568
* Tue Jan 2  2001  Monty

- Added mysql-test to the bench package

569
* Fri Aug 18 2000 Tim Smith <tim@mysql.com>
570 571 572 573

- Added separate libmysql_r directory; now both a threaded
  and non-threaded library is shipped.

bk@work.mysql.com's avatar
bk@work.mysql.com committed
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
* Wed Sep 28 1999 David Axmark <davida@mysql.com>

- Added the support-files/my-example.cnf to the docs directory.

- Removed devel dependency on base since it is about client
  development.

* Wed Sep 8 1999 David Axmark <davida@mysql.com>

- Cleaned up some for 3.23.

* Thu Jul 1 1999 David Axmark <davida@mysql.com>

- Added support for shared libraries in a separate sub
  package. Original fix by David Fox (dsfox@cogsci.ucsd.edu)

- The --enable-assembler switch is now automatically disables on
  platforms there assembler code is unavailable. This should allow
  building this RPM on non i386 systems.

* Mon Feb 22 1999 David Axmark <david@detron.se>

- Removed unportable cc switches from the spec file. The defaults can
  now be overridden with environment variables. This feature is used
  to compile the official RPM with optimal (but compiler version
  specific) switches.

- Removed the repetitive description parts for the sub rpms. Maybe add
  again if RPM gets a multiline macro capability.

- Added support for a pt_BR translation. Translation contributed by
  Jorge Godoy <jorge@bestway.com.br>.

* Wed Nov 4 1998 David Axmark <david@detron.se>

- A lot of changes in all the rpm and install scripts. This may even
  be a working RPM :-)

* Sun Aug 16 1998 David Axmark <david@detron.se>

- A developers changelog for MySQL is available in the source RPM. And
  there is a history of major user visible changed in the Reference
  Manual.  Only RPM specific changes will be documented here.