diff --git a/packaging/debian/changelog b/packaging/debian/changelog index 365a2c6..62f1ba5 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,9 @@ +python-synergy-scheduler-manager (1.0.2ubuntu1) unstable; urgency=medium + + * Add "python-nova" as a dependency + + -- Vincent Llorens Mon, 22 Aug 2016 16:39:53 +0200 + python-synergy-scheduler-manager (1.0.1) unstable; urgency=low * Fix broken link in README diff --git a/packaging/debian/control b/packaging/debian/control index bbaab8d..8c563c6 100644 --- a/packaging/debian/control +++ b/packaging/debian/control @@ -15,7 +15,7 @@ Vcs-Browser: https://git.openstack.org/cgit/openstack/synergy-scheduler-manager Package: python-synergy-scheduler-manager Architecture: all -Depends: ${python:Depends}, ${misc:Depends} +Depends: ${python:Depends}, ${misc:Depends}, python-nova Description: Advanced scheduling capability for OpenStack. The Scheduler Manager provides advanced scheduling (fairshare) capability for OpenStack. In particular it aims to address the resource utilization issues diff --git a/packaging/rpm/python-synergy-scheduler-manager.spec b/packaging/rpm/python-synergy-scheduler-manager.spec index 48ca00f..0c996a0 100644 --- a/packaging/rpm/python-synergy-scheduler-manager.spec +++ b/packaging/rpm/python-synergy-scheduler-manager.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} Name: python-synergy-scheduler-manager -Version: 1.0.1 +Version: 1.0.2 Release: 1%{?dist} Summary: Advanced scheduling capability for OpenStack. Source: %name-%version.tar.bz2 @@ -11,12 +11,13 @@ License: ASL 2.0 BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools -Requires: python-pbr -Requires: python-synergy-service +Requires: python-nova Requires: python-oslo-config Requires: python-oslo-messaging +Requires: python-pbr Requires: python-requests Requires: python-sqlalchemy +Requires: python-synergy-service %description @@ -46,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Aug 22 2016 Vincent Llorens - 1.0.2-1 +- Add python-nova dependency + * Tue Jul 26 2016 Vincent Llorens