Exemplo n.º 1
0
def versions():
  return {
    'offline-software': version_dict(partial(install,meta='offline-software')),
    'simulation': version_dict(partial(install,meta='simulation')),
    'icerec': version_dict(partial(install,meta='icerec')),
    'combo': version_dict(partial(install,meta='combo')),
  }
Exemplo n.º 2
0
def versions():
    return {
        'offline-software':
        version_dict(partial(install, meta='offline-software')),
        'simulation': version_dict(partial(install, meta='simulation')),
        'icerec': version_dict(partial(install, meta='icerec')),
        'combo': version_dict(partial(install, meta='combo')),
    }
Exemplo n.º 3
0
def versions():
    # need 6.10 or better
    def bad(v):
        return any(
            v.startswith(k)
            for k in ('5.', '6.00', '6.02', '6.04', '6.06', '6.08'))

    return version_dict(install, bad_versions=bad)
Exemplo n.º 4
0
def versions():
    return version_dict(install)
Exemplo n.º 5
0
def versions():
    return version_dict(install)
Exemplo n.º 6
0
def versions():
    # need 6.10 or better
    def bad(v):
        return any(v.startswith(k) for k in ('5.','6.00','6.02','6.04','6.06','6.08'))
    return version_dict(install, bad_versions=bad)
Exemplo n.º 7
0
Arquivo: pip.py Projeto: briedel/cvmfs
def versions():
    return version_dict(install_pip,{'install':install_pkg})
Exemplo n.º 8
0
def versions():
    return version_dict(install_pip,{'install':install_pkg})