GitHub user weizhouapache added a comment to the discussion: Building DEB packages: "mvn -P deps"
> The issue occurred while building Cloudstack 4.19.0.0 on a Debian 12 bullseye > machine, which is why I always used `'dpkg-buildpackage -uc -us -b'` to build > the project. > > And the file /opt/cloudstack-sources/debian/control has some dependency > issues: "| mysql-connector-python-py3" is the only connector available as of > now, but it is missing as an alternative a "|" character is missing between > "python-setuptools" and "python3-setuptools" @scsynergy as described in #9738, you can install the python3-mysql.connector package for ubuntu ``` wget http://launchpadlibrarian.net/717081070/python3-mysql.connector_8.0.15-4_all.deb DEBIAN_FRONTEND=noninteractive apt install -y /tmp/python3-mysql.connector_8.0.15-4_all.deb ``` GitHub link: https://github.com/apache/cloudstack/discussions/9280#discussioncomment-11223467 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
