Esempio n. 1
0
def load_tests (config, uri=None):
    ms = load (config, uri)
    ms_tests = ModuleSet(config = config)
    for app, module in iteritems(ms.modules):
        if module.__class__ == TestModule:
            ms_tests.modules[app] = module
    return ms_tests
Esempio n. 2
0
 def required_system_dependencies_installed(self, module_state):
     '''Returns true if all required system dependencies are installed for
     modules in module_state.'''
     for module, (req_version, installed_version, new_enough,
                  systemmodule) in iteritems(module_state):
         if systemmodule:
             if not new_enough:
                 return False
     return True
Esempio n. 3
0
    def print_system_dependencies(self, module_state):
        def fmt_details(pkg_config, req_version, installed_version):
            fmt_list = []
            if pkg_config:
                fmt_list.append(pkg_config)
            if req_version:
                fmt_list.append(_('required=%s') % req_version)
            if installed_version and installed_version != 'unknown':
                fmt_list.append(_('installed=%s') % installed_version)
            # Translators: This is used to separate items of package metadata
            fmt_str = _(', ').join(fmt_list)
            if fmt_str:
                return _('(%s)') % fmt_str
            else:
                return ''

        print(_('Required packages:'))
        print(_('  System installed packages which are too old:'))
        have_too_old = False
        for module, (req_version, installed_version, new_enough,
                     systemmodule) in iteritems(module_state):
            if (installed_version
                    is not None) and (not new_enough) and systemmodule:
                have_too_old = True
                print('    %s %s' %
                      (module.name,
                       fmt_details(module.pkg_config, req_version,
                                   installed_version)))
        if not have_too_old:
            print(_('    (none)'))

        print(_('  No matching system package installed:'))
        have_missing = False
        for module, (req_version, installed_version, new_enough,
                     systemmodule) in iteritems(module_state):
            if installed_version is None and (not new_enough) and systemmodule:
                have_missing = True
                print('    %s %s' %
                      (module.name,
                       fmt_details(module.pkg_config, req_version,
                                   installed_version)))
        if not have_missing:
            print(_('    (none)'))
Esempio n. 4
0
    def run(self, config, options, args, help=None):
        def fmt_details(pkg_config, req_version, installed_version):
            fmt_list = []
            if pkg_config:
                fmt_list.append(pkg_config)
            if req_version:
                fmt_list.append(_('required=%s') % req_version)
            if installed_version and installed_version != 'unknown':
                fmt_list.append(_('installed=%s') % installed_version)
            # Translators: This is used to separate items of package metadata
            fmt_str = _(', ').join(fmt_list)
            if fmt_str:
                return _('(%s)') % fmt_str
            else:
                return ''

        config.set_from_cmdline_options(options)

        module_set = jhbuild.moduleset.load(config)
        modules = args or config.modules
        module_list = module_set.get_full_module_list(modules, config.skip)

        if options.dump_all:
            for module in module_list:
                if (isinstance(module, SystemModule)
                        or isinstance(module.branch, TarballBranch)
                        and module.pkg_config is not None):
                    if module.pkg_config is not None:
                        print('pkgconfig:{0}'.format(
                            module.pkg_config[:-3]))  # remove .pc

                    if module.systemdependencies is not None:
                        for dep_type, value, altdeps in module.systemdependencies:
                            sys.stdout.write('{0}:{1}'.format(dep_type, value))
                            for dep_type, value, empty in altdeps:
                                sys.stdout.write(',{0}:{1}'.format(
                                    dep_type, value))
                            sys.stdout.write('\n')

            return

        module_state = module_set.get_module_state(module_list)

        have_new_enough = False
        have_too_old = False

        if options.dump:
            for module, (req_version, installed_version, new_enough,
                         systemmodule) in iteritems(module_state):
                if new_enough:
                    continue

                if installed_version is not None and systemmodule:
                    # it's already installed but it's too old and we
                    # don't know how to build a new one for ourselves
                    have_too_old = True

                # request installation in two cases:
                #   1) we don't know how to build it
                #   2) we don't want to build it ourselves
                #
                # partial_build is on by default so this check will only
                # fail if someone explicitly turned it off
                if systemmodule or config.partial_build:
                    assert (module.pkg_config or module.systemdependencies)

                    if module.pkg_config is not None:
                        print('pkgconfig:{0}'.format(
                            module.pkg_config[:-3]))  # remove .pc

                    if module.systemdependencies is not None:
                        for dep_type, value, altdeps in module.systemdependencies:
                            sys.stdout.write('{0}:{1}'.format(dep_type, value))
                            for dep_type, value, empty in altdeps:
                                sys.stdout.write(',{0}:{1}'.format(
                                    dep_type, value))
                            sys.stdout.write('\n')

            if have_too_old:
                return 1

            return

        print(_('System installed packages which are new enough:'))
        for module, (req_version, installed_version, new_enough,
                     systemmodule) in iteritems(module_state):
            if (installed_version
                    is not None) and new_enough and (config.partial_build
                                                     or systemmodule):
                have_new_enough = True
                print('    %s %s' %
                      (module.name,
                       fmt_details(module.pkg_config, req_version,
                                   installed_version)))
        if not have_new_enough:
            print(_('  (none)'))

        print(_('Required packages:'))
        print(_('  System installed packages which are too old:'))
        for module, (req_version, installed_version, new_enough,
                     systemmodule) in iteritems(module_state):
            if (installed_version
                    is not None) and (not new_enough) and systemmodule:
                have_too_old = True
                print('    %s %s' %
                      (module.name,
                       fmt_details(module.pkg_config, req_version,
                                   installed_version)))
        if not have_too_old:
            print(_('    (none)'))

        print(_('  No matching system package installed:'))
        uninstalled = []
        for module, (req_version, installed_version, new_enough,
                     systemmodule) in iteritems(module_state):
            if installed_version is None and (not new_enough) and systemmodule:
                print('    %s %s' %
                      (module.name,
                       fmt_details(module.pkg_config, req_version,
                                   installed_version)))
                if module.pkg_config is not None:
                    uninstalled.append((module.name, 'pkgconfig',
                                        module.pkg_config[:-3]))  # remove .pc
                elif module.systemdependencies is not None:
                    for dep_type, value, altdeps in module.systemdependencies:
                        uninstalled.append((module.name, dep_type, value))
        if len(uninstalled) == 0:
            print(_('    (none)'))

        have_too_old = False

        if config.partial_build:
            print(
                _('Optional packages: (JHBuild will build the missing packages)'
                  ))
            print(_('  System installed packages which are too old:'))
            for module, (req_version, installed_version, new_enough,
                         systemmodule) in iteritems(module_state):
                if (installed_version is not None) and (not new_enough) and (
                        not systemmodule):
                    have_too_old = True
                    print('    %s %s' %
                          (module.name,
                           fmt_details(module.pkg_config, req_version,
                                       installed_version)))
            if not have_too_old:
                print(_('    (none)'))

            print(_('  No matching system package installed:'))
            for module, (req_version, installed_version, new_enough,
                         systemmodule) in iteritems(module_state):
                if installed_version is None and (not new_enough) and (
                        not systemmodule):
                    print('    %s %s' %
                          (module.name,
                           fmt_details(module.pkg_config, req_version,
                                       installed_version)))
                    if module.pkg_config is not None:
                        uninstalled.append(
                            (module.name, 'pkgconfig',
                             module.pkg_config[:-3]))  # remove .pc

            if len(uninstalled) == 0:
                print(_('    (none)'))

        if options.install:
            installer = SystemInstall.find_best()
            if installer is None:
                # FIXME: This should be implemented per Colin's design:
                # https://bugzilla.gnome.org/show_bug.cgi?id=682104#c3
                if cmds.has_command('apt-get'):
                    raise FatalError(
                        _("%(cmd)s is required to install "
                          "packages on this system. Please "
                          "install %(cmd)s.") % {'cmd': 'apt-file'})

                raise FatalError(
                    _("Don't know how to install packages on this system"))

            if len(uninstalled) == 0:
                logging.info(
                    _("No uninstalled system dependencies to install for modules: %r"
                      ) % (modules, ))
            else:
                logging.info(_("Installing dependencies on system: %s") % \
                             ' '.join(pkg[0] for pkg in uninstalled))
                installer.install(uninstalled, assume_yes=options.assume_yes)
Esempio n. 5
0
def restore_environ(env):
    # os.environ.clear() doesn't appear to change underlying environment.
    for key in os.environ.keys():
        del os.environ[key]
    for key, value in iteritems(env):
        os.environ[key] = value