starting queens development patch and use git.openstack.org

* use git.openstack.org instead of github for berks dependency
resolution

Depends-On: https://review.openstack.org/549341
Depends-On: https://review.openstack.org/549343
Depends-On: https://review.openstack.org/549345
Depends-On: https://review.openstack.org/549346
Depends-On: https://review.openstack.org/549348
Change-Id: I0ac10252dada252e027107b33e94e04fb02fdd4e
This commit is contained in:
Samuel Cassiba 2018-03-02 18:14:14 -08:00
parent 10e64092dd
commit 9f7cb4d4de
2 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@ source 'https://supermarket.chef.io'
if Dir.exist?("../cookbook-openstack-#{cookbook}")
cookbook "openstack-#{cookbook}", path: "../cookbook-openstack-#{cookbook}"
else
cookbook "openstack-#{cookbook}", github: "openstack/cookbook-openstack-#{cookbook}"
cookbook "openstack-#{cookbook}", git: "https://git.openstack.org/openstack/cookbook-openstack-#{cookbook}"
end
end

View File

@ -4,7 +4,7 @@ maintainer_email 'openstack-dev@lists.openstack.org'
license 'Apache-2.0'
description 'Installs and configures the Tempest Integration Test Suite'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '16.0.0'
version '17.0.0'
recipe 'openstack-integration-test::setup', 'Installs and configures Tempest'
@ -12,11 +12,11 @@ recipe 'openstack-integration-test::setup', 'Installs and configures Tempest'
supports os
end
depends 'openstack-common', '>= 16.0.0'
depends 'openstack-identity', '>= 16.0.0'
depends 'openstack-image', '>= 16.0.0'
depends 'openstack-compute', '>= 16.0.0'
depends 'openstack-block-storage', '>= 16.0.0'
depends 'openstack-common', '>= 17.0.0'
depends 'openstack-identity', '>= 17.0.0'
depends 'openstack-image', '>= 17.0.0'
depends 'openstack-compute', '>= 17.0.0'
depends 'openstack-block-storage', '>= 17.0.0'
depends 'openstackclient'
depends 'poise-python'