Esempio n. 1
0
def _buildrpms(deps, channel, options):
    # check the environ
    name, specific_tags = get_environ_info(deps)

    # updating the repo
    updating_repo(name, channel, specific_tags, options.force)

    # building the internal req RPMS
    build_core_rpm(deps, channel, specific_tags, options)

    # building the internal req RPMS
    build_deps_rpms(deps, channel, specific_tags, options)

    # building the external deps now
    build_external_deps_rpms(channel, options)
def _buildrpms(deps, channel, options):
    # check the environ
    name, specific_tags = get_environ_info(deps)

    # updating the repo
    updating_repo(name, channel, specific_tags, options.force)

    # building the internal req RPMS
    build_core_rpm(deps, channel, specific_tags, options)

    # building the internal req RPMS
    build_deps_rpms(deps, channel, specific_tags, options)

    # building the external deps now
    build_external_deps_rpms(channel, options)
Esempio n. 3
0
def _buildapp(channel, deps, force):
    # check the environ
    name, specific_tags = get_environ_info(deps)

    # updating the repo
    updating_repo(name, channel, specific_tags, force)

    # building internal deps first
    build_deps(deps, channel, specific_tags)

    # building the external deps now
    build_external_deps(channel)

    # if the current repo is a meta-repo, running tip on it
    if is_meta_project():
        specific_tags = False
        channel = "dev"

    # build the app now
    build_core_app()
def _buildapp(channel, deps, force, timeout, verbose, index, extras, cache):
    # check the environ
    name, specific_tags = get_environ_info(deps)

    # updating the repo
    updating_repo(name, channel, specific_tags, force, timeout, verbose)

    # building internal deps first
    build_deps(deps, channel, specific_tags, timeout, verbose)

    # building the external deps now
    build_external_deps(channel, index, extras, timeout, verbose, cache)

    # if the current repo is a meta-repo, running tip on it
    if is_meta_project():
        specific_tags = False
        channel = "dev"

    # build the app now
    build_core_app(timeout, verbose)