diff --git a/jeepyb/cmd/update_bug.py b/jeepyb/cmd/update_bug.py index ad7c21f..7ae1c62 100644 --- a/jeepyb/cmd/update_bug.py +++ b/jeepyb/cmd/update_bug.py @@ -158,6 +158,19 @@ def git2lp(full_project_name): 'openstack-infra/reviewday': 'openstack-ci', 'openstack-infra/statusbot': 'openstack-ci', 'openstack-infra/zmq-event-publisher': 'openstack-ci', + 'stackforge/cookbook-openstack-block-storage': 'openstack-chef', + 'stackforge/cookbook-openstack-common': 'openstack-chef', + 'stackforge/cookbook-openstack-compute': 'openstack-chef', + 'stackforge/cookbook-openstack-dashboard': 'openstack-chef', + 'stackforge/cookbook-openstack-identity': 'openstack-chef', + 'stackforge/cookbook-openstack-image': 'openstack-chef', + 'stackforge/cookbook-openstack-metering': 'openstack-chef', + 'stackforge/cookbook-openstack-network': 'openstack-chef', + 'stackforge/cookbook-openstack-object-storage': 'openstack-chef', + 'stackforge/cookbook-openstack-ops-database': 'openstack-chef', + 'stackforge/cookbook-openstack-ops-messaging': 'openstack-chef', + 'stackforge/cookbook-openstack-orchestration': 'openstack-chef', + 'stackforge/openstack-chef-repo': 'openstack-chef', 'stackforge/puppet-ceilometer': 'puppet-openstack', 'stackforge/puppet-cinder': 'puppet-openstack', 'stackforge/puppet-glance': 'puppet-openstack', @@ -167,19 +180,6 @@ def git2lp(full_project_name): 'stackforge/puppet-openstack_dev_env': 'puppet-openstack', 'stackforge/puppet-quantum': 'puppet-openstack', 'stackforge/puppet-swift': 'puppet-openstack', - 'stackforge/openstack-chef-repo': 'openstack-chef', - 'stackforge/cookbook-openstack-common': 'openstack-chef', - 'stackforge/cookbook-openstack-compute': 'openstack-chef', - 'stackforge/cookbook-openstack-identity': 'openstack-chef', - 'stackforge/cookbook-openstack-image': 'openstack-chef', - 'stackforge/cookbook-openstack-network': 'openstack-chef', - 'stackforge/cookbook-openstack-metering': 'openstack-chef', - 'stackforge/cookbook-openstack-orchestration': 'openstack-chef', - 'stackforge/cookbook-openstack-object-storage': 'openstack-chef', - 'stackforge/cookbook-openstack-block-storage': 'openstack-chef', - 'stackforge/cookbook-openstack-dashboard': 'openstack-chef', - 'stackforge/cookbook-openstack-ops-database': 'openstack-chef', - 'stackforge/cookbook-openstack-ops-messaging': 'openstack-chef', } return project_map.get(full_project_name, short_project(full_project_name)) @@ -187,29 +187,35 @@ def git2lp(full_project_name): def is_direct_release(full_project_name): """Test against a list of projects who directly release changes.""" return full_project_name in [ - 'openstack-ci/devstack-gate', - 'openstack-ci/lodgeit', - 'openstack-ci/meetbot', - 'openstack-dev/devstack', - 'openstack/openstack-ci', - 'openstack/openstack-ci-puppet', - 'openstack-ci/jeepyb', 'openstack/openstack-manuals', 'openstack/api-site', 'openstack/tempest', - 'stackforge/openstack-chef-repo', + 'openstack-dev/devstack', + 'openstack-infra/askbot-theme', + 'openstack-infra/config', + 'openstack-infra/devstack-gate', + 'openstack-infra/gerrit', + 'openstack-infra/gerritbot', + 'openstack-infra/gerritlib', + 'openstack-infra/gitdm', + 'openstack-infra/lodgeit', + 'openstack-infra/meetbot', + 'openstack-infra/nose-html-output', + 'openstack-infra/reviewday', + 'openstack-infra/statusbot', + 'stackforge/cookbook-openstack-block-storage', 'stackforge/cookbook-openstack-common', 'stackforge/cookbook-openstack-compute', + 'stackforge/cookbook-openstack-dashboard', 'stackforge/cookbook-openstack-identity', 'stackforge/cookbook-openstack-image', - 'stackforge/cookbook-openstack-network', 'stackforge/cookbook-openstack-metering', - 'stackforge/cookbook-openstack-orchestration', + 'stackforge/cookbook-openstack-network', 'stackforge/cookbook-openstack-object-storage', - 'stackforge/cookbook-openstack-block-storage', - 'stackforge/cookbook-openstack-dashboard', 'stackforge/cookbook-openstack-ops-database', 'stackforge/cookbook-openstack-ops-messaging', + 'stackforge/cookbook-openstack-orchestration', + 'stackforge/openstack-chef-repo', ]