From 6c4cdebfd8cda7b0af96affbdd3333037a6097a0 Mon Sep 17 00:00:00 2001 From: Wei Zhou Date: Wed, 9 Sep 2020 12:26:16 +0200 Subject: [PATCH] Ubuntu 20.04: Fix issue while build package on ubuntu 20.04 (#4306) error: dpkg-checkbuilddeps: error: Unmet build dependencies: python-mysql.connector root cause: python-mysql.connector is not valid any more in ubuntu 20.04 root@buildbox-ubuntu20:~# dpkg -l |grep connector ii python3-mysql.connector 8.0.15-2build1 all pure Python implementation of MySQL Client/Server protocol (Python3) solution: use python3-mysql.connector instead --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index c917e53766a..64f092a2617 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: libs Priority: extra Maintainer: Wido den Hollander Build-Depends: debhelper (>= 9), openjdk-11-jdk | java11-sdk | java11-jdk | zulu-11, genisoimage, - python-mysql.connector, maven (>= 3) | maven3, python (>= 2.7), python3 (>= 3), lsb-release, dh-systemd, python-setuptools + python-mysql.connector | python3-mysql.connector, maven (>= 3) | maven3, python (>= 2.7), python3 (>= 3), lsb-release, dh-systemd, python-setuptools Standards-Version: 3.8.1 Homepage: http://www.cloudstack.org/