#! /usr/bin/env python # Copyright (c) 2013 Hewlett-Packard Development Company, L.P. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # create_hound_config.py reads the project config file called projects.yaml # and generates a hound configuration file. import json import os import jeepyb.utils as u PROJECTS_YAML = os.environ.get('PROJECTS_YAML', '/home/hound/projects.yaml') GIT_SERVER = os.environ.get('GIT_BASE', 'git.openstack.org') DATA_PATH = os.environ.get('DATA_PATH', 'data') GIT_PROTOCOL = os.environ.get('GIT_PROTOCOL', 'git://') def main(): registry = u.ProjectsRegistry(PROJECTS_YAML) projects = [entry['project'] for entry in registry.configs_list if not entry.get('acl-config', '').endswith('retired.config')] repos = {} for project in projects: # Ignore attic and stackforge, those are repos that are not # active anymore. if project.startswith(('openstack-attic', 'stackforge')): continue basename = os.path.basename(project) # ignore deb- projects that are forks of other projects intended for # internal debian packaging needs only and are generally not of # interest to upstream developers if basename.startswith('deb-'): continue repos[basename] = { 'url': "%(proto)s%(gitbase)s/%(project)s" % dict( proto=GIT_PROTOCOL, gitbase=GIT_SERVER, project=project), 'url-pattern': { 'base-url': "http://%(gitbase)s/cgit/%(project)s" "/tree/{path}{anchor}" % dict(gitbase=GIT_SERVER, project=project), 'anchor': '#n{line}', } } config = { "dbpath": "data", "repos": repos } with open('config.json', 'w') as config_file: config_file.write( json.dumps( config, indent=2, separators=(',', ': '), sort_keys=False, default=unicode)) if __name__ == "__main__": main()