diff --git a/debian/changelog b/debian/changelog index 44758e4..3d64058 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,19 @@ python3-opendds (3.20.6-0) focal; urgency=medium * change c8 from char to int - -- Dragonfly Thu, 29 Nov 2022 11:43:20 +0100 + -- Dragonfly Thu, 8 Nov 2022 11:43:20 +0100 + +python3-opendds (3.20.5-3) focal; urgency=medium + + * Add setuptools and pip on setup.py depends + + -- Dragonfly Tue, 3 Dec 2022 17:18:19 +0200 + +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 diff --git a/rpmbuild/SPECS/python3-opendds.spec b/rpmbuild/SPECS/python3-opendds.spec index 3041034..4ad8fd6 100755 --- a/rpmbuild/SPECS/python3-opendds.spec +++ b/rpmbuild/SPECS/python3-opendds.spec @@ -5,7 +5,7 @@ Name: python3-opendds Version: 3.20.6 -Release: 0%{?dist} +Release: 0 Summary: Setuptools extension to build and package CMake projects License: MIT diff --git a/setup.py b/setup.py index d4b3740..f75cd93 100755 --- a/setup.py +++ b/setup.py @@ -53,6 +53,9 @@ }, install_requires=[ 'jinja2', - 'cmake' + 'cmake', + 'cmake-build-extension', + 'setuptools>=60.0', + 'pip>=22.0' ] )