summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOtto Kekäläinen <otto@kekalainen.net>2020-04-05 11:56:14 +0300
committerVicențiu-Marian Ciorbaru <vicentiu@mariadb.org>2020-04-23 10:07:07 +0300
commit7cbde2d0a29e214afba4d5d30af890002fbf7db2 (patch)
treec311faa024d8ae5b275a0a9c8f657f8785bd4136
parent13ec2ecc99e02d73a9877637ab27c0692c13b433 (diff)
downloadmariadb-git-7cbde2d0a29e214afba4d5d30af890002fbf7db2.tar.gz
Deb: Misc small fixes and cleanups
- Include binary wsrep_sst_rsync_wan previously omitted. - Don't build the embedded server. This saves a lot of time and around 500 MB of disk space. - Clean away unused override_dh_installcron. The package does not have any *.cron files, so this section is not needed. - Make mariadb-server run time depend on procps so pgrep works. The command pgrep is used in the maintainer scripts of mariadb-server, thus we should ensure it is found on the system. - Include build plugin func_test.so in test package. Don't include yet type_test.so since it fails (MDEV-22243). - Clean away obsolete Lintian overrides.
-rwxr-xr-xdebian/autobake-deb.sh2
-rw-r--r--debian/control1
-rw-r--r--debian/mariadb-server-10.5.install2
-rw-r--r--debian/mariadb-test.install1
-rw-r--r--debian/not-installed1
-rwxr-xr-xdebian/rules3
-rw-r--r--debian/source/lintian-overrides3
7 files changed, 6 insertions, 7 deletions
diff --git a/debian/autobake-deb.sh b/debian/autobake-deb.sh
index b5c3dc84f06..505d369f3a0 100755
--- a/debian/autobake-deb.sh
+++ b/debian/autobake-deb.sh
@@ -31,7 +31,7 @@ then
sed 's|DINSTALL_MYSQLTESTDIR=share/mysql/mysql-test|DINSTALL_MYSQLTESTDIR=false|' -i debian/rules
# Also skip building RocksDB, Mroonga etc to save even more time and disk space
- sed 's|-DDEB|-DPLUGIN_MROONGA=NO -DPLUGIN_ROCKSDB=NO -DPLUGIN_SPIDER=NO -DPLUGIN_OQGRAPH=NO -DPLUGIN_PERFSCHEMA=NO -DPLUGIN_SPHINX=NO -WITH_EMBEDDED_SERVER=OFF -DDEB|' -i debian/rules
+ sed 's|-DDEB|-DPLUGIN_MROONGA=NO -DPLUGIN_ROCKSDB=NO -DPLUGIN_SPIDER=NO -DPLUGIN_OQGRAPH=NO -DPLUGIN_PERFSCHEMA=NO -DPLUGIN_SPHINX=NO -DDEB|' -i debian/rules
fi
# Convert gcc version to numberical value. Format is Mmmpp where M is Major
diff --git a/debian/control b/debian/control
index 7631010a425..41c9ef68bd1 100644
--- a/debian/control
+++ b/debian/control
@@ -512,6 +512,7 @@ Depends: galera-4 (>=26.4),
mariadb-server-core-10.5 (>= ${binary:Version}),
passwd,
perl (>= 5.6),
+ procps,
psmisc,
rsync,
socat,
diff --git a/debian/mariadb-server-10.5.install b/debian/mariadb-server-10.5.install
index da591feffb2..c4492ff1e63 100644
--- a/debian/mariadb-server-10.5.install
+++ b/debian/mariadb-server-10.5.install
@@ -38,6 +38,7 @@ usr/bin/wsrep_sst_common
usr/bin/wsrep_sst_mariabackup
usr/bin/wsrep_sst_mysqldump
usr/bin/wsrep_sst_rsync
+usr/bin/wsrep_sst_rsync_wan
usr/lib/mysql/plugin/auth_ed25519.so
usr/lib/mysql/plugin/auth_pam.so
usr/lib/mysql/plugin/auth_pam_tool_dir/auth_pam_tool
@@ -99,5 +100,6 @@ usr/share/man/man1/wsrep_sst_common.1
usr/share/man/man1/wsrep_sst_mariabackup.1
usr/share/man/man1/wsrep_sst_mysqldump.1
usr/share/man/man1/wsrep_sst_rsync.1
+usr/share/man/man1/wsrep_sst_rsync_wan.1
usr/share/mysql/errmsg-utf8.txt
usr/share/mysql/wsrep_notify
diff --git a/debian/mariadb-test.install b/debian/mariadb-test.install
index e02a699d10a..767ec1ce587 100644
--- a/debian/mariadb-test.install
+++ b/debian/mariadb-test.install
@@ -12,6 +12,7 @@ usr/lib/mysql/plugin/daemon_example.ini
usr/lib/mysql/plugin/debug_key_management.so
usr/lib/mysql/plugin/dialog_examples.so
usr/lib/mysql/plugin/example_key_management.so
+usr/lib/mysql/plugin/func_test.so
usr/lib/mysql/plugin/ha_example.so
usr/lib/mysql/plugin/ha_test_sql_discovery.so
usr/lib/mysql/plugin/libdaemon_example.so
diff --git a/debian/not-installed b/debian/not-installed
index d328334cbf6..1c20318e2b8 100644
--- a/debian/not-installed
+++ b/debian/not-installed
@@ -1,7 +1,6 @@
lib/systemd/system/mariadb.service # Installed by rules file
lib/systemd/system/mariadb@.service # Installed by rules file
usr/bin/mysql_config # We already have the MariaDB variant
-usr/bin/mysql_embedded # Huge 500 MB file. Not intended for distribution via any disto package.
usr/bin/mytop # Mytop is distributed from a separate source package
usr/bin/sst_dump # Use the one from rocksdb-tools package
usr/lib/sysusers.d/sysusers.conf
diff --git a/debian/rules b/debian/rules
index 4c3d855d1c8..2d9c1e8eb14 100755
--- a/debian/rules
+++ b/debian/rules
@@ -88,6 +88,7 @@ endif
-DWITHOUT_TOKUDB=true \
-DWITHOUT_CASSANDRA=true \
-DPLUGIN_AWS_KEY_MANAGEMENT=NO \
+ -WITH_EMBEDDED_SERVER=OFF \
-DDEB=$(DEB_VENDOR) ..'
# This is needed, otherwise 'make test' will run before binaries have been built
@@ -172,8 +173,6 @@ override_dh_installinit-arch:
#dh_installinit --name=mysql -- defaults 19 21
dh_systemd_start --restart-after-upgrade
-override_dh_installcron-arch:
- dh_installcron --name mysql-server
# If a file is not supposed to be included anywhere, add it to the not-installed
# file and document the reason. Note that dh_install supports the above mentioned
diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides
index 8b041b89fee..a6c3a616ed8 100644
--- a/debian/source/lintian-overrides
+++ b/debian/source/lintian-overrides
@@ -1,5 +1,3 @@
-# Overridden temporarily to get Salsa-CI pass and not stall other dev work with broken pipeline
-python-depends-but-no-python-helper mariadb-plugin-rocksdb
# Upstream fix pending: https://github.com/wolfSSL/wolfssl/pull/2785
source-is-missing extra/wolfssl/wolfssl/doc/formats/html/html_changes/menu.js line length is 679 characters (>512)
# Necessary for drop-in-place-replacement upgrades on mysql-server/-client
@@ -24,4 +22,3 @@ version-substvar-for-external-package mariadb-client-10.5 -> mysql-client-core-5
version-substvar-for-external-package mariadb-client-10.5 -> mysql-client-core-8.0
version-substvar-for-external-package mariadb-client-10.5 -> mysql-client-core-8.0
version-substvar-for-external-package libmariadbd-dev -> libmariadbclient-dev
-version-substvar-for-external-package libmariadbd-dev -> libmariadb-dev