Пример #1
0
def main():
    m = MakefileCloth()
    conf = new_config()
    output_file = os.path.join(conf.paths.projectroot, conf.paths.output, 'makefile.giza_build')

    m = build_makefile(m, conf)

    m.write(output_file)
    print('[meta-build]: built "build/makefile.giza_build" to integrate giza')
Пример #2
0

def main():
    source_files = utils.expand_tree(paths['branch-output'] + '/json/', 'fjson')
    outputs = []

    paths['branch-json-list-file'] = '/'.join([paths['branch-output'], 'json-file-list'])
    paths['public-json-list-file'] = paths['branch-staging'] + '/json/.file_list'

    if len(source_files) > 0:
        msg = '[json]: processed all json files.'

        for source in source_files:
            base_fn = source.split('/', 2)[2].rsplit('.', 1)[0]
            output_file = '/'.join([paths['branch-output'], base_fn]) + '.json' 
            outputs.append(output_file)
            
            generate_json_target(source, output_file)

        generate_list_file(outputs, paths['branch-json-list-file'] )
    else:
        msg = '[json]: please build json output from sphinx using "make json" before processing the output.'
        
    generate_meta(outputs, msg)

if __name__ == '__main__':
    main()

    m.write(sys.argv[1])
    print('[meta-build]: built "' + sys.argv[1] + '" to specify json output.')
Пример #3
0
def main():
    m = MakefileCloth()
    conf = new_config()
    output_file = os.path.join(conf.paths.projectroot, conf.paths.output, 'makefile.giza_build')
    m.section_break('giza build integration')
    m.newline()

    m.section_break('content generation targets')
    for gen_target in [ 'api', 'assets', 'images', 'intersphinx', 'options',
                        'primer', 'steps', 'tables', 'toc']:
        m.target(hyph_concat('giza', gen_target))
        m.job('giza generate ' + gen_target)

        m.target(hyph_concat('giza', 'force', gen_target))
        m.job('giza --force generate ' + gen_target)
        m.newline()

    m.section_break('sphinx targets')

    sconf = ingest_yaml_doc(os.path.join(conf.paths.projectroot,
                                         conf.paths.builddata,
                                         'sphinx.yaml'))
    builders = [b for b in sconf
                if not b.endswith('base') and b not in
                ('prerequisites', 'generated-source', 'languages', 'editions', 'sphinx_builders')]
    if 'editions' in sconf:
        editions = sconf['editions']
    else:
        editions = []

    if 'root-base' in sconf and 'languages' in sconf['root-base']:
        languages = sconf['root-base']['languages']
    else:
        languages = []

    complete = []

    for builder in builders:
        if '-' in builder:
            builder = builder.split('-')[0]

        if builder in complete:
            continue

        m.comment(builder + ' targets')
        for edition in editions:
            m.target(hyph_concat('giza', builder, edition))
            m.job('giza sphinx --builder {0} --edition {1}'.format(builder, edition))

            for language in languages:
                m.target(hyph_concat('giza', builder, edition, language))
                m.job('giza sphinx --builder {0} --edition {1} --language {2}'.format(builder, edition, language))

        if len(editions) == 0:
            m.target(hyph_concat('giza', builder))
            m.job('giza sphinx --builder ' + builder)

            for language in languages:
                m.target(hyph_concat('giza', builder, language))
                m.job('giza sphinx --builder {0} --language {1}'.format(builder, language))
        else:
            m.target(hyph_concat('giza', builder))
            m.job('giza sphinx --builder {0} --edition {1}'.format(builder, ' '.join(editions)))

        m.newline()
        complete.append(builder)

    m.section_break('deploy targets')
    if 'push' in conf.system.files.data:
        for ptarget in conf.system.files.data.push:
            name = ptarget['target']
            m.target(hyph_concat('giza-deploy', name))
            m.job('giza deploy --target ' + name)
            m.newline()


    integration_path = os.path.join(conf.paths.projectroot, conf.paths.builddata, 'integration.yaml')
    if os.path.exists(integration_path):
        m.section_break('integration and publish targets')
        iconf = ingest_yaml_doc(integration_path)

        if 'base' in iconf:
            languages = [ k for k in iconf.keys() if not k.endswith('base') ]
            iconf = iconf['base']
        else:
            languages = []

        targets = set([ target.split('-')[0] for target in iconf['targets']
                        if '/' not in target and
                        not target.startswith('htaccess') ])

        base_job = 'giza sphinx --builder {0}'.format(' '.join(targets))

        if len(editions) > 0:
            base_job += " --serial_sphinx --edition " + ' '.join(editions)

        m.target('giza-publish')
        m.job(base_job)

        m.newline()
        for lang in languages:
            m.target('giza-publish-' + lang)
            m.job(base_job + ' --language ' + lang)
            m.newline()

        # following targets build a group of sphinx targets followed by running
        # one or more deploy actions.
        m.section_break('push targets')
        if 'push' in conf.system.files.data:
            for ptarget in conf.system.files.data.push:
                push_base_job = 'giza push --deploy {0} --builder {1}'.format(ptarget['target'], ' '.join(targets))

                if len(editions) > 0:
                    push_base_job += " --serial_sphinx --edition " + ' '.join(editions)

                m.target('giza-' + ptarget['target'])
                m.job(push_base_job)

                m.newline()

                for lang in languages:
                    m.target('giza-{0}-{1}'.format(ptarget['target'], lang))
                    m.job(push_base_job + ' --language ' + lang)
                    m.newline()

    m.write(output_file)
    print('[meta-build]: built "build/makefile.giza_build" to integrate giza')