예제 #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')),
  }
예제 #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')),
    }
예제 #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)
예제 #4
0
파일: pythia.py 프로젝트: WIPACrepo/cvmfs
def versions():
    return version_dict(install)
예제 #5
0
파일: gzip.py 프로젝트: blaufuss/cvmfs
def versions():
    return version_dict(install)
예제 #6
0
파일: root.py 프로젝트: WIPACrepo/cvmfs
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)
예제 #7
0
파일: pip.py 프로젝트: briedel/cvmfs
def versions():
    return version_dict(install_pip,{'install':install_pkg})
예제 #8
0
def versions():
    return version_dict(install_pip,{'install':install_pkg})