From e0f445c74a182885c3db0ccb6e5ef5b668796b8a Mon Sep 17 00:00:00 2001 From: Paul Rousse Date: Tue, 29 Nov 2022 12:11:16 +0100 Subject: [PATCH] fix setup.py dep --- debian/changelog | 6 ++++++ rpmbuild/SPECS/python3-opendds.spec | 2 +- setup.py | 3 ++- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 7e4dc42..ee4b937 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +python3-opendds (3.20.5-2) focal; urgency=medium + + * Add python3-cmake-build-extension on setup.py depends + + -- Dragonfly Tue, 29 Nov 2022 17:18:19 +0200 + python3-opendds (3.20.5-1) focal; urgency=medium * Add python3-cmake-build-extension on depends diff --git a/rpmbuild/SPECS/python3-opendds.spec b/rpmbuild/SPECS/python3-opendds.spec index bc9d0e4..1cecc58 100755 --- a/rpmbuild/SPECS/python3-opendds.spec +++ b/rpmbuild/SPECS/python3-opendds.spec @@ -5,7 +5,7 @@ Name: python3-opendds Version: 3.20.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Setuptools extension to build and package CMake projects License: MIT diff --git a/setup.py b/setup.py index d4b3740..ea07430 100755 --- a/setup.py +++ b/setup.py @@ -53,6 +53,7 @@ }, install_requires=[ 'jinja2', - 'cmake' + 'cmake', + 'cmake-build-extension' ] )