Beispiel #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)
Beispiel #2
0
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)
Beispiel #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)