From 47df96c09f0e7ca0ebaf30902607fc983590ecfa Mon Sep 17 00:00:00 2001 From: Jorge San Emeterio Date: Tue, 21 Feb 2023 11:10:07 +0100 Subject: [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 --- bindep.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindep.txt b/bindep.txt index f0ca0afc12..9834820f05 100644 --- a/bindep.txt +++ b/bindep.txt @@ -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] -- cgit v1.2.1