Your message dated Sat, 18 Jul 2009 07:47:15 +0000
with message-id <e1ms4dx-0006ib...@ries.debian.org>
and subject line Bug#508406: fixed in mysql-dfsg-5.1 5.1.36-1
has caused the Debian Bug report #508406,
regarding inconsistent flags for libmysqld.a on different arches, no
README.Debian
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
508406: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508406
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libmysqlclient-dev
Version: 5.1.30-2
Tags: patch
Severity: serious
Justification: Violation of MUST in Debian Policy section 10.2
Hello,
This bug is related to #457915.
Currently Debian Policy section 10.2 states:
"As to the static libraries, the common case is not to have relocatable code,
since there is no benefit, unless in specific cases; therefore the static
version must not be compiled with the -fPIC flag. Any exception to this rule
should be discussed on the mailing list debian-de...@lists.debian.org, and the
reasons for compiling with the -fPIC flag must be recorded in the file
README.Debian"
libmysqld.a is a static library and it is built with -fPIC only on amd64, but
that is not described in README.Debian. Also please do not treat a single arch
specially since that makes absolutely no sense. You either build with -fPIC on
all arches or none or build both PIC and nonPIC versions on all arches (which
I'm suggesting).
Therefore this bug is also a request to provide both -fPIC and non-fPIC
versions of libmysqld.a. I have even written a patch for this (debdiff
attached). I need libmysqld to be linked into dynamic library [1][2], but I
can't use it until it is built without -fPIC on other arches.
The changes make mysql build twice without and with -fPIC respectively in
separate build directories (the 2nd time only libmysqld and its dependencies
are built). Then both libmysqld.a (nonPIC version) and libmysqld_pic.a (PIC
version) are installed to libmysqlclient-dev. As a side effect of using out-
of-source-tree builds, hack in clean target is no longer needed. Patch 02
fixes FTBFS of libmysqld examples due to undefined symbol.
The only remaining part for you is to create a README.Debian. Justification is
of -fPIC version is simple: libmysqld_pic.a is needed to be able to include it
into shared libraries, which is a perfectly valid use case for libmysqld.
Since you still provide nonPIC libmysqld.a, Debian Policy is not violated.
P.S. libmysqld_pic.a and libmysqld.a are around 16MB each and they increase
package size by 4MBs each. So it makes sense to split them both into their own
package (libmysqld).
#457915: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=457915
1. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=501495
2. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508399
--
Modestas Vainius <modes...@vainius.eu>
diff -u mysql-dfsg-5.1-5.1.30/debian/control mysql-dfsg-5.1-5.1.30/debian/control
--- mysql-dfsg-5.1-5.1.30/debian/control
+++ mysql-dfsg-5.1-5.1.30/debian/control
@@ -74,7 +74,7 @@
innotop and mysqlreport.
Package: mysql-server-5.1
-Architecture: any
+Architecture: any
Suggests: tinyca
Recommends: mailx, libhtml-template-perl
Pre-Depends: mysql-common (>= ${source:Version}), adduser (>= 3.40), debconf
diff -u mysql-dfsg-5.1-5.1.30/debian/changelog mysql-dfsg-5.1-5.1.30/debian/changelog
--- mysql-dfsg-5.1-5.1.30/debian/changelog
+++ mysql-dfsg-5.1-5.1.30/debian/changelog
@@ -1,3 +1,12 @@
+mysql-dfsg-5.1 (5.1.30-3~pre1) UNRELEASED; urgency=low
+
+ * Build both -fPIC (libmysql_pic.a) and non -fPIC (libmysqld.a). Switch to
+ out-of-source true build mode was a side effect of this change.
+ * Add 02_no_builtin_ndbcluster_plugin.dpatch patch to fix FTBFS in libmysqld
+ examples due to undefined symbol 'builtin_ndbcluster_plugin'.
+
+ -- Modestas Vainius <modes...@vainius.eu> Thu, 11 Dec 2008 00:36:09 +0200
+
mysql-dfsg-5.1 (5.1.30-2) experimental; urgency=low
* Drop MySQL Cluster support, it's deprecated since 5.1.24-RC.
diff -u mysql-dfsg-5.1-5.1.30/debian/rules mysql-dfsg-5.1-5.1.30/debian/rules
--- mysql-dfsg-5.1-5.1.30/debian/rules
+++ mysql-dfsg-5.1-5.1.30/debian/rules
@@ -42,10 +42,9 @@
TESTSUITE_FAIL_CMD=exit 1
endif
-ifeq ($(findstring $(ARCH), amd64),$(ARCH))
- FORCE_FPIC_CFLAGS=-fPIC
- FORCE_FPIC=--with-pic --with-lib-ccflags="-fPIC"
-endif
+BUILDDIR = builddir
+BUILDDIR_PIC = builddir-pic
+builddir = $(if $(findstring -pic,$@),$(BUILDDIR_PIC),$(BUILDDIR))
# This causes seg11 crashes if LDAP is used for groups in /etc/nsswitch.conf
# so it is disabled by default although, according to MySQL, it brings >10%
@@ -54,21 +53,27 @@
USE_STATIC_MYSQLD=--with-mysqld-ldflags=-all-static
endif
+
+configure-stamp-pic: FORCE_FPIC_CFLAGS=-fPIC
+configure-stamp-pic: FORCE_FPIC=--with-pic --with-lib-ccflags="-fPIC"
+
configure: patch configure-stamp
-configure-stamp:
- @echo "RULES.configure-stamp"
+configure-pic: patch configure-stamp-pic
+configure-stamp configure-stamp-pic:
+ @echo "RULES.$@"
dh_testdir
ifneq ($(ARCH_OS),hurd)
if [ ! -d /proc/self ]; then echo "/proc IS NEEDED" 1>&2; exit 1; fi
endif
+ ( test -d $(builddir) || mkdir $(builddir) ) && cd $(builddir) && \
sh -c 'PATH=$${MYSQL_BUILD_PATH:-"/bin:/usr/bin"} \
CC=$${MYSQL_BUILD_CC:-gcc} \
CFLAGS=$${MYSQL_BUILD_CFLAGS:-"-O3 -DBIG_JOINS=1 ${FORCE_FPIC_CFLAGS}"} \
CXX=$${MYSQL_BUILD_CXX:-g++} \
CXXFLAGS=$${MYSQL_BUILD_CXXFLAGS:-"-O3 -DBIG_JOINS=1 -felide-constructors -fno-exceptions -fno-rtti ${FORCE_FPIC_CFLAGS}"} \
- ./configure \
+ ../configure \
--build=${DEB_BUILD_GNU_TYPE} \
--host=${DEB_HOST_GNU_TYPE} \
\
@@ -111,25 +116,48 @@
#
# --with-debug
- touch configure-stamp
+ touch $@
-build: build-stamp
+build: build-stamp build-stamp-pic
+
build-stamp: configure
+ @echo "RULES.$@"
dh_testdir
- $(MAKE) $(MAKE_J)
+ cd $(builddir) && $(MAKE) $(MAKE_J)
ifeq ($(findstring $(DEB_BUILD_OPTIONS),nocheck),)
if [ ! -f testsuite-stamp ] ; then \
- $(MAKE) $(MAKE_TEST_TARGET) || $(TESTSUITE_FAIL_CMD) ; \
+ cd $(builddir) && $(MAKE) $(MAKE_TEST_TARGET) || $(TESTSUITE_FAIL_CMD) ; \
fi
endif
touch testsuite-stamp
touch build-stamp
+
+MAKE_PIC = cd $(builddir) && $(MAKE) $(MAKE_J)
+
+build-stamp-pic: configure-pic
+ @echo "RULES.$@"
+ # Build libmysqld dependencies
+ $(MAKE_PIC) -C include
+ $(MAKE_PIC) -C sql link_sources
+ $(MAKE_PIC) -C libmysql link_sources
+ $(MAKE_PIC) -C strings
+ $(MAKE_PIC) -C regex
+ $(MAKE_PIC) -C mysys
+ $(MAKE_PIC) -C dbug
+ $(MAKE_PIC) -C vio
+ $(MAKE_PIC) -C storage
+ $(MAKE_PIC) -C extra/yassl
+ $(MAKE_PIC) -C cmd-line-utils
+ $(MAKE_PIC) -C sql lex_hash.h
+ # Build libmysqld itself
+ $(MAKE_PIC) -C libmysqld
+ touch $@
clean: clean-patched unpatch
rm -rf debian/patched
@@ -137,41 +165,22 @@
@echo "RULES.clean-patched"
dh_testdir
dh_testroot
- rm -f configure-stamp
- rm -f build-stamp
+ rm -f configure-stamp*
+ rm -f build-stamp*
rm -f testsuite-stamp
[ ! -f Makefile ] || $(MAKE) clean
[ ! -d mysql-test/var ] || rm -rf mysql-test/var
-
- # We like to see how long this is neccessary
- @echo "CRUFT BEGIN"
- @find -type l -print0 | xargs --no-run-if-empty -0 rm -v
- @find -name .deps -type d -print0 | xargs --no-run-if-empty -0 rm -rfv
- @rm -vrf ndb/docs/.doxy* ndb/docs/*html ndb/docs/*pdf innobase/autom4te.cache
- @for i in \
- readline/Makefile \
- sql-bench/Makefile \
- scripts/make_win_binary_distribution \
- scripts/mysqlbug \
- sql/gen_lex_hash \
- sql/lex_hash.h \
- strings/ctype_autoconf.c \
- config.log \
- config.cache \
- ; \
- do \
- rm -vf $$i; \
- done
- @echo "CRUFT END"
+
+ rm -rf $(BUILDDIR) $(BUILDDIR_PIC)
debconf-updatepo
dh_clean -v
-
+
install:
-install: build
- @echo "RULES.install"
+install install-pic: build
+ @echo "RULES.$@"
dh_testdir
dh_testroot
dh_clean -k
@@ -186,7 +195,7 @@
ln -s mysqlmanager.1 $(TMP)/usr/share/man/man1/mysqlmanagerc.1
# make install (trailing slash needed for innobase)
- $(MAKE) install DESTDIR=$(TMP)/
+ cd $(builddir) && $(MAKE) install DESTDIR=$(TMP)/
# After installing, remove rpath to make lintian happy.
set +e; \
@@ -208,8 +217,10 @@
fi
# libmysqlclient-dev: forgotten header file since 3.23.25?
- cp include/my_config.h $(TMP)/usr/include/mysql/
+ cp $(BUILDDIR)/include/my_config.h $(TMP)/usr/include/mysql/
cp include/my_dir.h $(TMP)/usr/include/mysql/
+ # install libmysqld built with -FPIC
+ install -m 0644 -o root -g root $(BUILDDIR_PIC)/libmysqld/libmysqld.a $(TMP)/usr/lib/mysql/libmysqld_pic.a
# mysql-common: We now provide our own config file.
install -d $(TMP)/etc/mysql
@@ -222,14 +233,14 @@
install -m 0644 -D debian/additions/innotop/InnoDBParser.pm $(TMP)/usr/share/perl5/InnoDBParser.pm
# mysql-server
- install -m 0755 scripts/mysqld_safe $(TMP)/usr/bin/mysqld_safe
+ install -m 0755 $(BUILDDIR)/scripts/mysqld_safe $(TMP)/usr/bin/mysqld_safe
mkdir -p $(TMP)/usr/share/doc/mysql-server-5.1/examples
mv $(TMP)/usr/share/mysql/*cnf $(TMP)/usr/share/doc/mysql-server-5.1/examples/
rm -vf $(TMP)/usr/share/mysql/mi_test_all* \
$(TMP)/usr/share/mysql/mysql-log-rotate \
$(TMP)/usr/share/mysql/mysql.server \
$(TMP)/usr/share/mysql/binary-configure
- nm -n sql/mysqld |gzip -9 > $(TMP)/usr/share/doc/mysql-server-5.1/mysqld.sym.gz
+ nm -n $(BUILDDIR)/sql/mysqld |gzip -9 > $(TMP)/usr/share/doc/mysql-server-5.1/mysqld.sym.gz
install -m 0755 debian/additions/echo_stderr $(TMP)/usr/share/mysql/
install -m 0755 debian/additions/debian-start $(TMP)/etc/mysql/
install -m 0755 debian/additions/debian-start.inc.sh $(TMP)/usr/share/mysql/
diff -u mysql-dfsg-5.1-5.1.30/debian/patches/00list mysql-dfsg-5.1-5.1.30/debian/patches/00list
--- mysql-dfsg-5.1-5.1.30/debian/patches/00list
+++ mysql-dfsg-5.1-5.1.30/debian/patches/00list
@@ -1,5 +1,6 @@
01_MAKEFILES__Docs_Images_Makefile.in.dpatch
01_MAKEFILES__Docs_Makefile.in.dpatch
+02_no_builtin_ndbcluster_plugin.dpatch
33_scripts__mysql_create_system_tables__no_test.dpatch
38_scripts__mysqld_safe.sh__signals.dpatch
41_scripts__mysql_install_db.sh__no_test.dpatch
only in patch2:
unchanged:
--- mysql-dfsg-5.1-5.1.30.orig/debian/patches/02_no_builtin_ndbcluster_plugin.dpatch
+++ mysql-dfsg-5.1-5.1.30/debian/patches/02_no_builtin_ndbcluster_plugin.dpatch
@@ -0,0 +1,18 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 01_MAKEFILES__Docs_Makefile.in.dpatch by <c...@debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Creates Docs/Makefile.in
+
+...@dpatch@
+
+--- old/sql/sql_builtin.cc
++++ new/sql/sql_builtin.cc
+@@ -22,6 +22,6 @@
+
+ struct st_mysql_plugin *mysqld_builtins[]=
+ {
+- builtin_binlog_plugin, builtin_partition_plugin, builtin_csv_plugin, builtin_heap_plugin, builtin_myisam_plugin, builtin_myisammrg_plugin, builtin_ndbcluster_plugin,(struct st_mysql_plugin *)0
++ builtin_binlog_plugin, builtin_partition_plugin, builtin_csv_plugin, builtin_heap_plugin, builtin_myisam_plugin, builtin_myisammrg_plugin, (struct st_mysql_plugin *)0
+ };
+
signature.asc
Description: This is a digitally signed message part.
--- End Message ---
--- Begin Message ---
Source: mysql-dfsg-5.1
Source-Version: 5.1.36-1
We believe that the bug you reported is fixed in the latest version of
mysql-dfsg-5.1, which is due to be installed in the Debian FTP archive:
libmysqlclient-dev_5.1.36-1_amd64.deb
to pool/main/m/mysql-dfsg-5.1/libmysqlclient-dev_5.1.36-1_amd64.deb
libmysqlclient15-dev_5.1.36-1_all.deb
to pool/main/m/mysql-dfsg-5.1/libmysqlclient15-dev_5.1.36-1_all.deb
libmysqlclient16_5.1.36-1_amd64.deb
to pool/main/m/mysql-dfsg-5.1/libmysqlclient16_5.1.36-1_amd64.deb
mysql-client-5.1_5.1.36-1_amd64.deb
to pool/main/m/mysql-dfsg-5.1/mysql-client-5.1_5.1.36-1_amd64.deb
mysql-client_5.1.36-1_all.deb
to pool/main/m/mysql-dfsg-5.1/mysql-client_5.1.36-1_all.deb
mysql-common_5.1.36-1_all.deb
to pool/main/m/mysql-dfsg-5.1/mysql-common_5.1.36-1_all.deb
mysql-dfsg-5.1_5.1.36-1.diff.gz
to pool/main/m/mysql-dfsg-5.1/mysql-dfsg-5.1_5.1.36-1.diff.gz
mysql-dfsg-5.1_5.1.36-1.dsc
to pool/main/m/mysql-dfsg-5.1/mysql-dfsg-5.1_5.1.36-1.dsc
mysql-dfsg-5.1_5.1.36.orig.tar.gz
to pool/main/m/mysql-dfsg-5.1/mysql-dfsg-5.1_5.1.36.orig.tar.gz
mysql-server-5.1_5.1.36-1_amd64.deb
to pool/main/m/mysql-dfsg-5.1/mysql-server-5.1_5.1.36-1_amd64.deb
mysql-server_5.1.36-1_all.deb
to pool/main/m/mysql-dfsg-5.1/mysql-server_5.1.36-1_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 508...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Christian Hammers <c...@debian.org> (supplier of updated mysql-dfsg-5.1 package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Wed, 01 Jul 2009 20:54:58 +0200
Source: mysql-dfsg-5.1
Binary: libmysqlclient16 libmysqlclient15-dev libmysqlclient-dev mysql-common
mysql-client-5.1 mysql-server-5.1 mysql-server mysql-client
Architecture: source all amd64
Version: 5.1.36-1
Distribution: experimental
Urgency: low
Maintainer: Debian MySQL Maintainers <pkg-mysql-ma...@lists.alioth.debian.org>
Changed-By: Christian Hammers <c...@debian.org>
Description:
libmysqlclient-dev - MySQL database development files
libmysqlclient15-dev - MySQL database development files - empty transitional
package
libmysqlclient16 - MySQL database client library
mysql-client - MySQL database client (metapackage depending on the latest
versio
mysql-client-5.1 - MySQL database client binaries
mysql-common - MySQL database common files (e.g. /etc/mysql/my.cnf)
mysql-server - MySQL database server (metapackage depending on the latest
versio
mysql-server-5.1 - MySQL database server binaries
Closes: 447028 447713 450535 470854 508406 515145 526254 533999 535492 535500
Changes:
mysql-dfsg-5.1 (5.1.36-1) experimental; urgency=low
.
[TODO]
* Link libmysqlclient.so to libmysqlclient_r.so to help applications
like Apache where some modules, like libaprutil, want to use the thread
safe library and some, like PHP, do not. As the client library just copies
data between client and server, we do not expect significant performance
losses. (thanks to Stefan Fritsch). Closes: #450535
.
Add the following to libmysqlclient16.links:
usr/lib/libmysqlclient_r.so.16.0.0 usr/lib/libmysqlclient.so.16.0.0
.
* Ex-maintainer upload :)
* New upstream release.
* SECURITY: Upstream fix for "mysql client does not escape strings in
--html mode." (CVE-2008-4456) Closes: #526254
* Upstream fixes REPEAT() function. Closes: #447028
* Upstream fixes problems when mixing ORDER and GROUP BY. Closes: #470854
* There were many innodb fixes in the last two years, probably
also for this unreproducible crash. CLoses: #447713
* Removed amd64 specific -fPIC compiler option that was introduced
especially for building the NDB cluster module which is no longer
part of this package (thanks to Modestas Vainius). Closes: #508406
* Put /etc/mysql/conf.d to mysql-server-5.1.dirs (thanks to Alexander
Gerasiov). Closes: #515145
* Fixed mysql-test suite by adding 50_mysql-test__db_test.dpatch.
It now passes 100% of the tests again. Also Closes: #533999
* Preinst now prevents Installation if NDB configuration is detected.
* Applied Ubuntu patch that fixes privilege bootstrapping in postinst
(thanks to Mathias Gug). Closes: #535492
* Applied Ubuntu patch that sets the debconf prio for the root password
question to high and prevents it from being asked on 5.0 -> 5.1 upgrades
(thanks to Mathias Gug). Closes: #535500
* Removed the check for ISAM tables as the only supported upgrade path is
from lenny's MySQL-5.0.
* Added /etc/mysql/conf.d/mysqld_safe_syslog.cnf which enables mysqld_safe
to pipe all mysqld output into the syslog. The reason for not letting dpkg
handle it via a normal config file change was that my.cnf is usually
heavily tuned by the admin so the setting would go lost too easily.
* Updated mysqlreport to version 3.5 (including two minor patches by me).
Checksums-Sha1:
9318a87ccf4f044052d15d7c3b837e1d19c11b8a 1652 mysql-dfsg-5.1_5.1.36-1.dsc
c5efbf1821742d2e7b1c02511d266de117c19b0a 18263034
mysql-dfsg-5.1_5.1.36.orig.tar.gz
3d864cab767100ccd58dba90440d5742c8fc8694 283528 mysql-dfsg-5.1_5.1.36-1.diff.gz
77f3bb147cb5156a6f48a800ec8fbd3e9005623d 54884
libmysqlclient15-dev_5.1.36-1_all.deb
e685fc0564a49e5374c48e4d823d1f9ce79e6cc8 60446 mysql-common_5.1.36-1_all.deb
a9b8c080debd736712939631b5c9eedcec268cbf 55068 mysql-server_5.1.36-1_all.deb
11042c2b51d709bc8279d57770693c2d0feedcf7 54936 mysql-client_5.1.36-1_all.deb
b4196190051238f621e6c865b65138ae556bfef7 1953306
libmysqlclient16_5.1.36-1_amd64.deb
67b4bbe30243644a4c30de69f860d81523d14a97 6678002
libmysqlclient-dev_5.1.36-1_amd64.deb
ba502cb869281064a7862acba13c3bcb03f0394c 9115414
mysql-client-5.1_5.1.36-1_amd64.deb
46d7a1be6707fb5fe7bbedda2657eb24ded3668c 10732690
mysql-server-5.1_5.1.36-1_amd64.deb
Checksums-Sha256:
b74eea53f321837c1054b70734b3bde6ef235db1737cdebfb5d3e9d5ac05ef9d 1652
mysql-dfsg-5.1_5.1.36-1.dsc
a2a70518069d93f6bb3d1561db4d2e622db9d9c08acd99b0f9509d3eedb9b47b 18263034
mysql-dfsg-5.1_5.1.36.orig.tar.gz
b0c54fdca2b544fcc9f5336a67a747df1319a5fb41838dffa6556c8510d2143e 283528
mysql-dfsg-5.1_5.1.36-1.diff.gz
8321c34a66ce39a75e1fab6596d9d07bd0a5fd01806e2e8b2b4f21ee1f3a923e 54884
libmysqlclient15-dev_5.1.36-1_all.deb
0d9ca1595df1801286e9df03ab38763182fbf2444a3f42bb0464c6bf129b921a 60446
mysql-common_5.1.36-1_all.deb
212ea536178c8dc8a0ffa72fa0d0338ff1122126b2e8592520fc44e655c0bc2b 55068
mysql-server_5.1.36-1_all.deb
01c47078f14b518b571cc673673e9221b2f8e601702f82ba54ff95632f8613fb 54936
mysql-client_5.1.36-1_all.deb
e74cfbc7c6020da35324452817bf4f2cbad9a22723e65821e9d797d0c0f15f44 1953306
libmysqlclient16_5.1.36-1_amd64.deb
65b27dd8eaf10446273d393249ee4ccf5367a869eef1ea0ec72cf191b4766bf2 6678002
libmysqlclient-dev_5.1.36-1_amd64.deb
5af25a00a5fa01dd5c4ba5339026477b683a525c1665aa8cba419a88d753146d 9115414
mysql-client-5.1_5.1.36-1_amd64.deb
e743bbba3eac77237714718f50ff933acc1ddba6436f14bc938d41acba3f7510 10732690
mysql-server-5.1_5.1.36-1_amd64.deb
Files:
2e91cb7645287cc50125122d712fba74 1652 misc optional mysql-dfsg-5.1_5.1.36-1.dsc
02a83e864464b4ce78bda453061e6b32 18263034 misc optional
mysql-dfsg-5.1_5.1.36.orig.tar.gz
9e59959fd0e59d08024475a69e79f706 283528 misc optional
mysql-dfsg-5.1_5.1.36-1.diff.gz
73b60780efce81d54ae8c6a4fc997a86 54884 libdevel optional
libmysqlclient15-dev_5.1.36-1_all.deb
fca1cbc3e7ea7953cb881b356b8c5103 60446 database optional
mysql-common_5.1.36-1_all.deb
07c696ba56b2dd5911c85043644d9030 55068 database optional
mysql-server_5.1.36-1_all.deb
464af2e560a25bc4280d608549afcf85 54936 database optional
mysql-client_5.1.36-1_all.deb
958b6344244bc80c1e07269d1f5e62fe 1953306 libs optional
libmysqlclient16_5.1.36-1_amd64.deb
e579a7e9754714ff0388e44d02755238 6678002 libdevel optional
libmysqlclient-dev_5.1.36-1_amd64.deb
7bc700db8e7afa4e1602c4ed534e9ae7 9115414 misc optional
mysql-client-5.1_5.1.36-1_amd64.deb
4fa4b94879e00166d170d964d1d6ebf4 10732690 misc optional
mysql-server-5.1_5.1.36-1_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iEYEARECAAYFAkpheVcACgkQr/RnCw96jQF5wwCeN//Hq/Q1V4PENEWX8gCquaaj
A5YAoJY0WU3eepppyD8kp5GsV/Vt/zf9
=oByX
-----END PGP SIGNATURE-----
--- End Message ---