Commit 503fcfb8 authored by Otto Kekäläinen's avatar Otto Kekäläinen Committed by Vicențiu-Marian Ciorbaru

Deb: Re-remove unnecessary version suffixes from package names

There is no point in having version suffixes in plugin packages. They
will via their control file anyway depend on the correct server or client
version. Having version suffices has no benefit and it just complicates
upgrades when a new major version name package needs to replace all
possible previous version.

This issue was overlooked when merging commit
844a5759 from 10.2 into 10.3, so it
needs to be manually fixed now.
parent 9719fb4b
...@@ -82,9 +82,12 @@ if [[ $GCCVERSION -lt 40800 ]] || [[ $(arch) =~ i[346]86 ]] || [[ $TRAVIS ]] ...@@ -82,9 +82,12 @@ if [[ $GCCVERSION -lt 40800 ]] || [[ $(arch) =~ i[346]86 ]] || [[ $TRAVIS ]]
then then
sed '/Package: mariadb-plugin-rocksdb/,+13d' -i debian/control sed '/Package: mariadb-plugin-rocksdb/,+13d' -i debian/control
fi fi
# AWS SDK requires c++11 -capable compiler
# Minimal supported versions are g++ 4.8 and clang 3.3.
if [[ $GCCVERSION -lt 40800 ]] || [[ $TRAVIS ]] if [[ $GCCVERSION -lt 40800 ]] || [[ $TRAVIS ]]
then then
sed '/Package: mariadb-plugin-aws-key-management-10.3/,+15d' -i debian/control sed '/Package: mariadb-plugin-aws-key-management/,+14d' -i debian/control
fi fi
# Mroonga, TokuDB never built on Travis CI anyway, see build flags above # Mroonga, TokuDB never built on Travis CI anyway, see build flags above
......
...@@ -626,7 +626,7 @@ Description: CrackLib Password Validation Plugin for MariaDB ...@@ -626,7 +626,7 @@ Description: CrackLib Password Validation Plugin for MariaDB
This password validation plugin uses cracklib to allow only This password validation plugin uses cracklib to allow only
sufficiently secure (as defined by cracklib) user passwords in MariaDB. sufficiently secure (as defined by cracklib) user passwords in MariaDB.
Package: mariadb-plugin-aws-key-management-10.3 Package: mariadb-plugin-aws-key-management
Section: database Section: database
Architecture: any Architecture: any
Breaks: mariadb-aws-key-management-10.1, Breaks: mariadb-aws-key-management-10.1,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment