Your message dated Fri, 27 Jan 2017 21:19:54 +0000
with message-id <e1cxdw2-0005tm...@fasolo.debian.org>
and subject line Bug#852728: fixed in mariadb-10.1 10.1.21-5
has caused the Debian Bug report #852728,
regarding FTBFS on non-Linux architectures
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.)
--
852728: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=852728
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: mariadb-10.1
Version: 10.1.21-2
Severity: normal
Tags: patch
The package was failing to build because it was unconditionally trying to
install systemd files and Linux-only utilities. Patch attached (tested
on kfreebsd-amd64).
Regards,
James
>From e30d6b243b57664ef398df2b00534041a2109b0b Mon Sep 17 00:00:00 2001
From: James Clarke <jrt...@debian.org>
Date: Thu, 26 Jan 2017 18:59:28 +0000
Subject: [PATCH] Fix FTBFS on non-Linux architectures
---
debian/mariadb-server-10.1.install | 9 +++++----
debian/rules | 3 +++
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/debian/mariadb-server-10.1.install b/debian/mariadb-server-10.1.install
old mode 100644
new mode 100755
index 03def793..f4a875db
--- a/debian/mariadb-server-10.1.install
+++ b/debian/mariadb-server-10.1.install
@@ -1,3 +1,4 @@
+#!/usr/bin/dh-exec
debian/additions/debian-start etc/mysql
debian/additions/debian-start.inc.sh usr/share/mysql
debian/additions/echo_stderr usr/share/mysql
@@ -5,15 +6,15 @@ debian/additions/mariadb.conf.d/50-mysqld_safe.cnf etc/mysql/mariadb.conf.d
debian/additions/mariadb.conf.d/50-server.cnf etc/mysql/mariadb.conf.d
debian/additions/source_mariadb-10.1.py usr/share/apport/package-hooks
etc/apparmor.d/usr.sbin.mysqld
-lib/systemd/system/mariadb@bootstrap.service.d/use_galera_new_cluster.conf
+[linux-any] lib/systemd/system/mariadb@bootstrap.service.d/use_galera_new_cluster.conf
usr/bin/aria_chk
usr/bin/aria_dump_log
usr/bin/aria_ftdump
usr/bin/aria_pack
usr/bin/aria_read_log
-usr/bin/galera_new_cluster
-usr/bin/galera_recovery
-usr/bin/mariadb-service-convert
+[linux-any] usr/bin/galera_new_cluster
+[linux-any] usr/bin/galera_recovery
+[linux-any] usr/bin/mariadb-service-convert
usr/bin/msql2mysql
usr/bin/my_print_defaults
usr/bin/myisam_ftdump
diff --git a/debian/rules b/debian/rules
index 197a54e1..a50a9d91 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,6 +14,7 @@ BUILDDIR := builddir
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM)
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
+DEB_BUILD_ARCH_OS ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS)
DEBVERSION := $(shell dpkg-parsechangelog | awk '/^Version: / { print $$2 }' | sed 's/^.*-//' )
DEB_SOURCE_PACKAGE ?= $(strip $(shell egrep '^Source: ' debian/control | cut -f 2 -d ':'))
DEB_VERSION ?= $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ')
@@ -125,9 +126,11 @@ override_dh_auto_install:
# If Mroonga plugin was not built skip the package
[ -f $(BUILDDIR)/storage/mroonga/ha_mroonga.so ] || sed -i -e "/Package: mariadb-plugin-mroonga/,+9d" debian/control
+ifneq (,$(filter linux,$(DEB_BUILD_ARCH_OS)))
# Copy systemd files to a location available for dh_installinit
cp $(BUILDDIR)/support-files/mariadb.service debian/mariadb-server-10.1.mariadb.service
cp $(BUILDDIR)/support-files/mariadb@.service debian/mariadb-server-10.1.mariadb@.service
+endif
# make install
cd $(BUILDDIR) && $(MAKE) install DESTDIR=$(TMP)
--
2.11.0
--- End Message ---
--- Begin Message ---
Source: mariadb-10.1
Source-Version: 10.1.21-5
We believe that the bug you reported is fixed in the latest version of
mariadb-10.1, which is due to be installed in the Debian FTP archive.
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 852...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Otto Kekäläinen <o...@debian.org> (supplier of updated mariadb-10.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...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Fri, 27 Jan 2017 20:42:36 +0200
Source: mariadb-10.1
Binary: libmariadbclient18 libmariadbclient-dev libmariadbclient-dev-compat
libmariadbd18 libmariadbd-dev mariadb-common mariadb-client-core-10.1
mariadb-client-10.1 mariadb-server-core-10.1 mariadb-server-10.1 mariadb-server
mariadb-client mariadb-plugin-connect mariadb-plugin-oqgraph
mariadb-plugin-tokudb mariadb-plugin-mroonga mariadb-plugin-spider
mariadb-plugin-gssapi-server mariadb-plugin-gssapi-client
mariadb-plugin-cracklib-password-check mariadb-test mariadb-test-data
Architecture: source amd64 all
Version: 10.1.21-5
Distribution: unstable
Urgency: low
Maintainer: Debian MySQL Maintainers <pkg-mysql-ma...@lists.alioth.debian.org>
Changed-By: Otto Kekäläinen <o...@debian.org>
Description:
libmariadbclient-dev - MariaDB database development files
libmariadbclient-dev-compat - MariaDB database development files
(libmysqlclient compatibility)
libmariadbclient18 - MariaDB database client library
libmariadbd-dev - MariaDB embedded database, development files
libmariadbd18 - MariaDB embedded database, shared library
mariadb-client - MariaDB database client (metapackage depending on the latest
vers
mariadb-client-10.1 - MariaDB database client binaries
mariadb-client-core-10.1 - MariaDB database core client binaries
mariadb-common - MariaDB common metapackage
mariadb-plugin-connect - Connect storage engine for MariaDB
mariadb-plugin-cracklib-password-check - CrackLib Password Validation Plugin
for MariaDB
mariadb-plugin-gssapi-client - GSSAPI authentication plugin for MariaDB client
mariadb-plugin-gssapi-server - GSSAPI authentication plugin for MariaDB server
mariadb-plugin-mroonga - Mroonga storage engine for MariaDB
mariadb-plugin-oqgraph - OQGraph storage engine for MariaDB
mariadb-plugin-spider - Spider storage engine for MariaDB
mariadb-plugin-tokudb - TokuDB storage engine for MariaDB
mariadb-server - MariaDB database server (metapackage depending on the latest
vers
mariadb-server-10.1 - MariaDB database server binaries
mariadb-server-core-10.1 - MariaDB database core server files
mariadb-test - MariaDB database regression test suite
mariadb-test-data - MariaDB database regression test suite - data files
Closes: 852728
Changes:
mariadb-10.1 (10.1.21-5) unstable; urgency=low
.
[ James Clarke ]
* Make debian/mariadb-server-10.1.install executable (Closes: #852728)
* Allow mariadb-plugin-tokudb/mroonga on non-linux and non-release arches
* Detect whether libatomic is needed rather than hard-coding for mips
* Use host architecture, not build architecture, and clean up variables
* General clean-up in d/rules
Checksums-Sha1:
f85a8f204f6605e20f546a8d95a24cbce8f1a847 4218 mariadb-10.1_10.1.21-5.dsc
2a19f6d94ce9e9e498f84f0fcff00fecd961a62a 213828
mariadb-10.1_10.1.21-5.debian.tar.xz
ce9172c08fad6b42a8dfc1fbc548fd9ba478fe31 23852
libmariadbclient-dev-compat_10.1.21-5_amd64.deb
7f5b983135cc7bac1346dc7934f3baf2a203cfe2 1059900
libmariadbclient-dev_10.1.21-5_amd64.deb
44fa818c69ff4f89bc6453244382ac07883cf4db 2049916
libmariadbclient18-dbgsym_10.1.21-5_amd64.deb
599bf4485446bd4c165d1a96db86cf22eea22a74 735312
libmariadbclient18_10.1.21-5_amd64.deb
86202385304a5f99e2d8712c46ecb411cd951510 4828392
libmariadbd-dev_10.1.21-5_amd64.deb
593d46d58d2d5c09a616961894afc1404de2dddb 38527338
libmariadbd18-dbgsym_10.1.21-5_amd64.deb
5f5b0a6f7332c7510751e19fd09cac36a66b78bb 4043732
libmariadbd18_10.1.21-5_amd64.deb
12005bd60e09d353234f83ab26b4c0e366ff183c 17930
mariadb-10.1_10.1.21-5_amd64.buildinfo
0bd3de4ab60b95cac4c936ef35742ffe8feb98f0 10662952
mariadb-client-10.1-dbgsym_10.1.21-5_amd64.deb
36712d284bc95c6e9e17aa3783bd8b7fe163da8b 1241274
mariadb-client-10.1_10.1.21-5_amd64.deb
896209c0cbb619e5e85f907880ddf7442d0cdc09 4082350
mariadb-client-core-10.1-dbgsym_10.1.21-5_amd64.deb
ad4c84e9937a30ff9f7a2c0f3443372eacd49153 860982
mariadb-client-core-10.1_10.1.21-5_amd64.deb
cbcdb548d91e857cf5bc8bfc55d172b1a14e1c35 23596 mariadb-client_10.1.21-5_all.deb
ad7bbc35d9fe6b73777311e004cb783b2d801e75 24780 mariadb-common_10.1.21-5_all.deb
e5fefaeda678e73c84fea97996dbee9e72081236 2761136
mariadb-plugin-connect-dbgsym_10.1.21-5_amd64.deb
f9ffef541208087ddc25d99805e3a806fb966af8 457454
mariadb-plugin-connect_10.1.21-5_amd64.deb
4f6d8ad5ecd3839baae3f14a4eb1afaabf6f93be 19520
mariadb-plugin-cracklib-password-check-dbgsym_10.1.21-5_amd64.deb
a9e54141423083b4f079797e0df89ee508b5b89b 25688
mariadb-plugin-cracklib-password-check_10.1.21-5_amd64.deb
d2ae157c913356de04acd279338fbb4b59f3360d 19250
mariadb-plugin-gssapi-client-dbgsym_10.1.21-5_amd64.deb
cfca0585b251e34afe3543d48057a8b1baa61d3a 26680
mariadb-plugin-gssapi-client_10.1.21-5_amd64.deb
de5fe75ca5803537219b0e2f738e4e5c8c639a92 75258
mariadb-plugin-gssapi-server-dbgsym_10.1.21-5_amd64.deb
462458aec176b507d21d487dd9e4e7ddd359cf2a 28054
mariadb-plugin-gssapi-server_10.1.21-5_amd64.deb
347416ddb6fa7eb13fc4251333874c9b98421cf9 4114508
mariadb-plugin-mroonga-dbgsym_10.1.21-5_amd64.deb
6e6c09b36462fafc2e9643af6328dec750be976f 881412
mariadb-plugin-mroonga_10.1.21-5_amd64.deb
3a972373b53989f53b77e5dce0610689d694954c 598452
mariadb-plugin-oqgraph-dbgsym_10.1.21-5_amd64.deb
867a675993fb0a59416464f6c811b90e705f6af6 81754
mariadb-plugin-oqgraph_10.1.21-5_amd64.deb
4e74268a14df6d7e94f4507280143452cba08eca 2511520
mariadb-plugin-spider-dbgsym_10.1.21-5_amd64.deb
3851d20b3cb827663bf56431d7d363b1012c8167 292496
mariadb-plugin-spider_10.1.21-5_amd64.deb
db49cacf3015ee592e2911a1f418f5bbce8200b1 48735940
mariadb-server-10.1-dbgsym_10.1.21-5_amd64.deb
aec39c0bdc4fd765baf16ee4bc30d86ed9368dd4 5276828
mariadb-server-10.1_10.1.21-5_amd64.deb
69d52eb161e6b22ba7792ef92d8487f7051d97de 44589440
mariadb-server-core-10.1-dbgsym_10.1.21-5_amd64.deb
613e8cad0e209f0b3770a3df2020da2bd640fe9d 5127952
mariadb-server-core-10.1_10.1.21-5_amd64.deb
c372a41e3d648a7e78f37c08070fb25a9d5fb97d 23704 mariadb-server_10.1.21-5_all.deb
1f4e1e2da32444a7c77fffe50b9a6f781c2acc8f 22140760
mariadb-test-data_10.1.21-5_all.deb
b9c1123d2bb4f676ff695affb89a7e04c535a5c8 82521558
mariadb-test-dbgsym_10.1.21-5_amd64.deb
4a518608799c03c6459f3c26b52bcaa2d28f3bf1 9405488
mariadb-test_10.1.21-5_amd64.deb
Checksums-Sha256:
54ef029ebe1ff45b14c6658b2448cd5316313298d2c8aa913772e74fc6e8a9de 4218
mariadb-10.1_10.1.21-5.dsc
a5d523801270a4e986dadced71bf98b27fdf868ddfa9686317ccd57c6f96df65 213828
mariadb-10.1_10.1.21-5.debian.tar.xz
8ec403ac0347dcfce7acb88e7a8cf6f69b58af148d3e595140e1ee53948ad8bf 23852
libmariadbclient-dev-compat_10.1.21-5_amd64.deb
17e189f886903626460e775eaf36f8a0c0dc994b54037d60d3fc7a7db29feee7 1059900
libmariadbclient-dev_10.1.21-5_amd64.deb
94ebe5686ac93aaa92f955460986c01e7729000ae03cc4576f35467922bc6bbc 2049916
libmariadbclient18-dbgsym_10.1.21-5_amd64.deb
cc6572342e35269611004dbe7bb4486d6949858c3e28df5100b7846367e388ed 735312
libmariadbclient18_10.1.21-5_amd64.deb
5699fbf9160181b9bdf7405947be69cd1bd180f3fde799d389c9c785eb9669dd 4828392
libmariadbd-dev_10.1.21-5_amd64.deb
bcf791155b525ef835ea09ac6752a940e868f15d520100d893d4b4da60a1d5cb 38527338
libmariadbd18-dbgsym_10.1.21-5_amd64.deb
ba047d7e0613d4506d18149e5d9b96de0b4e8289f5036e7df48b91f4d8dc271c 4043732
libmariadbd18_10.1.21-5_amd64.deb
e5fe097bce793ed07a93e63805bd127bed36e622cf6bbdf41723923b65163837 17930
mariadb-10.1_10.1.21-5_amd64.buildinfo
554d69ab5c8910e7f937a3aee2007b292113e6fbff899ebd00ba0179f35d2cc2 10662952
mariadb-client-10.1-dbgsym_10.1.21-5_amd64.deb
93a3c19311620bf5008a757ee5d89a083b7bc8a4572b35c1c0a5593e3a2eb808 1241274
mariadb-client-10.1_10.1.21-5_amd64.deb
2c9c78fccd4a2fc13a2789a88359bf7a8fc60dc63e89dfef22eb8ddcb5952a7c 4082350
mariadb-client-core-10.1-dbgsym_10.1.21-5_amd64.deb
27c0850e34c908b5a7d4ef8ead0272b9bd900c96415df52a71a8e3337dbc524b 860982
mariadb-client-core-10.1_10.1.21-5_amd64.deb
7b1b538425585ab7e9bba8dc0ddbdde5b89ac74250999773791ba47d44d73c2d 23596
mariadb-client_10.1.21-5_all.deb
ecb59b071cc7ea38add835da6f78953829e1e6b1e0b0e4f6edd6067e11dcff29 24780
mariadb-common_10.1.21-5_all.deb
5bfaabb70a40b15b8e870a93f439ca209787b1851f69a7ba21b6b77cb5b2307f 2761136
mariadb-plugin-connect-dbgsym_10.1.21-5_amd64.deb
7091998738a5082a6ec53eb0a983c5a3ff27539d852d52c453fa568d1ce7ab07 457454
mariadb-plugin-connect_10.1.21-5_amd64.deb
4ff47d3dabca65a8428d9f253036d1cd9593410d20721f202af1581bde9760f3 19520
mariadb-plugin-cracklib-password-check-dbgsym_10.1.21-5_amd64.deb
f966e232356bdec0cc4993f64452090e725f9027858b30a8ddc408302f9e91fb 25688
mariadb-plugin-cracklib-password-check_10.1.21-5_amd64.deb
ea4ced272159bff74a5fc86ea15216c8e09a8979915bde4fca6e4e02b3faedb9 19250
mariadb-plugin-gssapi-client-dbgsym_10.1.21-5_amd64.deb
b9085ccc61c3012f05e3357fae8d059bbc20fcb518877a115da933878d0ffd4b 26680
mariadb-plugin-gssapi-client_10.1.21-5_amd64.deb
4efefdefd2f1e9bbbd77eea5250ffacaed926b32f675ab35477e7a896064ccda 75258
mariadb-plugin-gssapi-server-dbgsym_10.1.21-5_amd64.deb
5d72ef06fa7f08fe5577ce1f26969c451e325fb52c46f0c99615d823e8404774 28054
mariadb-plugin-gssapi-server_10.1.21-5_amd64.deb
865afada2db37e0aa440a7ccfe359fd4387d000a855a6a5b2ca27c5d607d0f99 4114508
mariadb-plugin-mroonga-dbgsym_10.1.21-5_amd64.deb
f7fba30c27d851ab527999715281cda9deb8e6bbfa2bcfa902167a24da47cabb 881412
mariadb-plugin-mroonga_10.1.21-5_amd64.deb
5f5a609df714e4972e6ce41b47fcc9c3ffbaf6a27a274e20dfea84970c6b676c 598452
mariadb-plugin-oqgraph-dbgsym_10.1.21-5_amd64.deb
c9eb16d5e1972ff8e154289629a8b93248dd3b80a3ee42320f3ef4f671501d1f 81754
mariadb-plugin-oqgraph_10.1.21-5_amd64.deb
043eebd70947a264a7950c9333b95e8b7ac216fd605ebf587bd4fcb4868ef1ed 2511520
mariadb-plugin-spider-dbgsym_10.1.21-5_amd64.deb
6696e1fb40368b9a71f14f87b15d6fd1a243c0093b8b4fe0bfecec9f4f010cde 292496
mariadb-plugin-spider_10.1.21-5_amd64.deb
0c15df2bd5ad69262a092c26b21454069694984dd960e3fd3672536693a556c3 48735940
mariadb-server-10.1-dbgsym_10.1.21-5_amd64.deb
a3e86ee433fa695c9a7cded4a58be6c31e7541a1124027d3b70c553510a86ef1 5276828
mariadb-server-10.1_10.1.21-5_amd64.deb
2d475b9999fe7a564718129a7e05f99f88de22b302e1f4670a58399c8542f9f7 44589440
mariadb-server-core-10.1-dbgsym_10.1.21-5_amd64.deb
a025a8aec5574bbcc54b995332b7797a8856ae57b5b92a2aa380d07960795a33 5127952
mariadb-server-core-10.1_10.1.21-5_amd64.deb
9423564f70fd47e2de0328165b6595263b4151ba9ee89a1372f0c7b7e94e2227 23704
mariadb-server_10.1.21-5_all.deb
20d1d80601047fa3d2cdaf6f2eb33fe5a6203757080d35cfd77139b9ee527bb5 22140760
mariadb-test-data_10.1.21-5_all.deb
6268378658e1e4b810f5224bfc8666fc57442bf19cf0fd140867c460bc31ab7e 82521558
mariadb-test-dbgsym_10.1.21-5_amd64.deb
219630cd70b18fdeb89466af388fad1fefae8cf958fa15996e53140b92d5889e 9405488
mariadb-test_10.1.21-5_amd64.deb
Files:
15cda1d262246d3a81899d9323ff0d2f 4218 database optional
mariadb-10.1_10.1.21-5.dsc
124711971039db2dddf3bbb258a6806c 213828 database optional
mariadb-10.1_10.1.21-5.debian.tar.xz
5f9b23c4df0e6423fd9ff5bae7f6fb6e 23852 libdevel optional
libmariadbclient-dev-compat_10.1.21-5_amd64.deb
565c25d1280fb31f16cd818fc6c398a6 1059900 libdevel optional
libmariadbclient-dev_10.1.21-5_amd64.deb
0775d1665091bfaa6cab82529b49f634 2049916 debug extra
libmariadbclient18-dbgsym_10.1.21-5_amd64.deb
647c333dd02355d3cc67449a578ab6f3 735312 libs optional
libmariadbclient18_10.1.21-5_amd64.deb
83d5f3c59ffc2c4932dc28c83792704b 4828392 libdevel optional
libmariadbd-dev_10.1.21-5_amd64.deb
776a91e6ba039e01b32da7e0005daa7f 38527338 debug extra
libmariadbd18-dbgsym_10.1.21-5_amd64.deb
e18ca0543543ebc2c2d160f040b208c3 4043732 libs optional
libmariadbd18_10.1.21-5_amd64.deb
cb83e2d4db08b9337c91602283dba360 17930 database optional
mariadb-10.1_10.1.21-5_amd64.buildinfo
3e23596556669fb13eb9e5b72f891bd7 10662952 debug extra
mariadb-client-10.1-dbgsym_10.1.21-5_amd64.deb
8f8524b9518e47d8f534f13b45980408 1241274 database optional
mariadb-client-10.1_10.1.21-5_amd64.deb
795a6813b047dfb2bdeae2fd351d0b37 4082350 debug extra
mariadb-client-core-10.1-dbgsym_10.1.21-5_amd64.deb
38dd8d4a0472483526144814ce1b03e5 860982 database optional
mariadb-client-core-10.1_10.1.21-5_amd64.deb
8c5ba5b23f6f14168987ffecfa82dfec 23596 database optional
mariadb-client_10.1.21-5_all.deb
f6f2b4a12b8e867e2f24b64b6c6f3769 24780 database optional
mariadb-common_10.1.21-5_all.deb
f0ebb0628a28581292ecfe3045e52d81 2761136 debug extra
mariadb-plugin-connect-dbgsym_10.1.21-5_amd64.deb
6d44fa7f66552e389b87ad8e0df925d8 457454 database optional
mariadb-plugin-connect_10.1.21-5_amd64.deb
8f472794b7266da78a3a90100a785356 19520 debug extra
mariadb-plugin-cracklib-password-check-dbgsym_10.1.21-5_amd64.deb
f11d72cf593f01f398e063d677e58bfc 25688 database optional
mariadb-plugin-cracklib-password-check_10.1.21-5_amd64.deb
032490f4356517eeafc6f3eb1c992e74 19250 debug extra
mariadb-plugin-gssapi-client-dbgsym_10.1.21-5_amd64.deb
ff3e3e00679e5c570efb8757b9730bb4 26680 database optional
mariadb-plugin-gssapi-client_10.1.21-5_amd64.deb
e83a0cea33aae2c4697c9f7a15aaa83a 75258 debug extra
mariadb-plugin-gssapi-server-dbgsym_10.1.21-5_amd64.deb
5563791df92bf0cdc2e8a88c43f0b6eb 28054 database optional
mariadb-plugin-gssapi-server_10.1.21-5_amd64.deb
2365979c3ef48f289f960c9f74d18403 4114508 debug extra
mariadb-plugin-mroonga-dbgsym_10.1.21-5_amd64.deb
a2972412eebd2b96869febe2c1a50345 881412 database optional
mariadb-plugin-mroonga_10.1.21-5_amd64.deb
40ef9f6fb47b4a46ced87341019f5b74 598452 debug extra
mariadb-plugin-oqgraph-dbgsym_10.1.21-5_amd64.deb
43a7b5312c377fbe32510b5e49ac9e08 81754 database optional
mariadb-plugin-oqgraph_10.1.21-5_amd64.deb
b8e6cb80431319ee73caa622ef25b90d 2511520 debug extra
mariadb-plugin-spider-dbgsym_10.1.21-5_amd64.deb
9f795c63d5447b9246c4f646b0105a8a 292496 database optional
mariadb-plugin-spider_10.1.21-5_amd64.deb
484e6f7487cdb17ea5ee3368529f1d3d 48735940 debug extra
mariadb-server-10.1-dbgsym_10.1.21-5_amd64.deb
0a715247335ce89234d23f2903b018bf 5276828 database optional
mariadb-server-10.1_10.1.21-5_amd64.deb
4af6b7412904daf423c062d60ade5aa3 44589440 debug extra
mariadb-server-core-10.1-dbgsym_10.1.21-5_amd64.deb
effe50efcb56d636ff62d2ef2542da95 5127952 database optional
mariadb-server-core-10.1_10.1.21-5_amd64.deb
62cb9df97507c737a3f16bce1f3d4ded 23704 database optional
mariadb-server_10.1.21-5_all.deb
ba1b22f570a617b908da26663effe020 22140760 database optional
mariadb-test-data_10.1.21-5_all.deb
711d54714d4a3fa53d8e5548a58c13b0 82521558 debug extra
mariadb-test-dbgsym_10.1.21-5_amd64.deb
3ac4003fea71a91a059d6cba86c44382 9405488 database optional
mariadb-test_10.1.21-5_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
iQIcBAEBCgAGBQJYi6qjAAoJEL7YRJ/O6NqI/IYP/29Dg4THoWHDKga5PMEq+UOj
/CLF2m/4ByQrdZqMgEf3vobwvt9pHkhSnqkzsAosbQNh2q9LTyaRRN5rms2dTSp3
cvipOfV9BgQARELmZhV8K8c8JL2Rg6A0T9szcMOu5iEUm6fmNCXQj9vE0dPdDwYA
ciS6yMiLY7IH5bn/eEvcEoBR++JpIBzZjZyHsiDrereR8m6c/m8SADOp6Rd8Cjez
QLvwWWvjqSCNSjdUHY+89HFVfW4mMlT3R47laFCCQPnyAVFaYjK7FYvQMZs6614k
D65yPeLqriA/FBtG5jZLWzXmmPok357OkQ1Dcn4EaMARxQz+z4x9+1sPqdU0BHVL
gdtCPPxJ0a6uR+iZ8dfNwr80SSnhYtqAGRONDvUAs1GkIavJXR6Rbu3ulkqYEe2M
CGFSNqE5jVTmfNGP81Gwu2HsDqHJhLDL3vvKjesNWLhk4FV1Zj1M6c7AAztFdcad
h8CPnpm5VKbZD/UeNgeug34qeBUGCP4TE6SJzPbN62QeTeV2tqrkHZSnSIXMH4NJ
igBYo5+aFnp4Vj6z0Zuv3r8pufUjXK3oDhRFsaDggFcOAQNj6uO7F/iHBTArQ8Nj
g+Iit+tdRWgJSG0GJ0gxm6AR2ZUJAbkp/KmDJCKbPjI2ikluGjT8WpYqjghSLwIb
/XQ73Lp2tlNzNAfcB4/d
=/zOY
-----END PGP SIGNATURE-----
--- End Message ---