Message ID | 20170616175704.7832-15-anthony.perard@citrix.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Anthony PERARD writes ("[OSSTEST PATCH v11 14/20] ts-openstack-deploy: Ignore libvirt-python version and use latest"): > Devstack is going to try to install a specific version of libvirt-python > (currently 2.5.0) but this fail with libvirt installed by osstest. > Remove the requirement and use the latest available instead. Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
diff --git a/ts-openstack-deploy b/ts-openstack-deploy index 04053de..8f6c7a2 100755 --- a/ts-openstack-deploy +++ b/ts-openstack-deploy @@ -93,6 +93,21 @@ END } ); + target_editfile($ho, + "$builddir/requirements/upper-constraints.txt", + sub { + while (<EI>) { + # Ignore libvirt-python requirement and install latest, + # otherwise it's not going to work with latest libvirt + # installed by osstest. + if (m/^libvirt-python===.*$/) { + next; + } + print EO or die $!; + } + } + ); + # Package python-systemd does not exist in Debian installed by osstest target_editfile($ho, "$builddir/devstack/files/debs/general", sub { while (<EI>) {
Devstack is going to try to install a specific version of libvirt-python (currently 2.5.0) but this fail with libvirt installed by osstest. Remove the requirement and use the latest available instead. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- ts-openstack-deploy | 15 +++++++++++++++ 1 file changed, 15 insertions(+)