From 9c69eacabaac45a7ea3574744975fac5cf1ac10d Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Mon, 12 Sep 2016 14:58:20 +1000 Subject: [PATCH] Don't add deb-* packaging repos to plugin list A couple of hundred of these were added with Ia02f4e1819ac47b12b4ce4381e04253eb26e9f70 and you can see in some of the proposals at I21fd2b3866efe66dd1f7173003c2521688aa7fd6 they're starting to match. Just ignore packaging repos as they're not really relevant for the purposes of plugin list. Change-Id: Iaf9e0c0fb672a70c3aee1bbcf587bb0d387e5945 --- tools/generate-devstack-plugins-list.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/generate-devstack-plugins-list.py b/tools/generate-devstack-plugins-list.py index bbad1bf502..56f12e7ab6 100644 --- a/tools/generate-devstack-plugins-list.py +++ b/tools/generate-devstack-plugins-list.py @@ -46,6 +46,9 @@ def is_in_openstack_namespace(proj): # Check if this project has a plugin file def has_devstack_plugin(proj): + # Don't link in the deb packaging repos + if "openstack/deb-" in proj: + return False r = requests.get("https://git.openstack.org/cgit/%s/plain/devstack/plugin.sh" % proj) return r.status_code == 200