[stable-only] Add binary test dependency "python3-devel" for py3 based RPM distros.

Coming from RHEL 8, dependency "python-devel [platform:rpm test]"
indicated on "bindep.txt" cannot be satisfied by the distribution.
RHEL 8 expects the package name to be "python3-devel" instead. For such
reason, this change adds a conditional that will select the proper
package name depending on whether the distro is based on python 2 or 3.
Other RPM distributions like CentOS should also benefit from this
change.

Conditionals for the python version are inverted ("!"), that is because
trying to filter them positively resulted in both conditions triggering
at the same time. This way works for RHEL 8, although it would still
need testing on something RHEL 7 based.

Closes-Bug: #2007959
Change-Id: I0aac20be976e687229f4759e1364718aa663cf27
This commit is contained in:
Jorge San Emeterio 2023-02-21 11:10:07 +01:00
parent 20a8dce2b4
commit 47df96c09f
1 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,8 @@ postgresql-client [platform:dpkg]
postgresql-devel [platform:rpm test]
postgresql-server [platform:rpm]
python-dev [platform:dpkg test]
python-devel [platform:rpm test]
python-devel [platform:rpm !platform:base-py3 test]
python3-devel [platform:rpm !platform:base-py2 test]
python3-all [platform:dpkg]
python3-all-dev [platform:dpkg]
python3-devel [platform:fedora]