Esempio 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)
Esempio n. 2
0
File: gnome.py Progetto: 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)
Esempio 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)