Exemplo n.º 1
0
def url(version=VERSION):
    url = 'http://lilypond.org/downloads/source/%(version)s/' % locals()
    raw_version_file = 'lilypond-%(version)s.index' % locals()
    return misc.latest_url(url, 'lilypond', raw_version_file)
Exemplo n.º 2
0
Arquivo: gnome.py Projeto: epronk/gub
def platform_url (name, version=VERSION):
    major, minor, micro = version.split ('.')
    url = 'http://ftp.gnome.org/pub/GNOME/platform/%(major)s.%(minor)s/%(version)s/sources/' % locals ()
    raw_version_file = 'gnome-%(version)s.index' % locals ()
    return misc.latest_url (url, name, raw_version_file)
Exemplo n.º 3
0
def url (version=VERSION):
    url = 'http://lilypond.org/download/source/%(version)s/' % locals ()
    raw_version_file = 'lilypond-%(version)s.index' % locals ()
    return misc.latest_url (url, 'lilypond', raw_version_file)