diff hgscm/downloads.json @ 70:bef09338eceb

downloads: add initial handling for downloads We are using json as a format to store our download information as the format is rather simple and can be parsed without problems and dependencies.
author David Soria Parra <dsp@php.net>
date Wed, 18 Feb 2009 15:32:57 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hgscm/downloads.json	Wed Feb 18 15:32:57 2009 +0100
@@ -0,0 +1,26 @@
+[{
+        "latest": "true",
+        "version": "1.1.2",
+        "versions": [{
+            "system": "FreeBSD",
+            "identifier": "freebsd",
+            "url": "ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-stable/devel/mercurial-1.1.2.tbz"
+        },{
+            "system": "MacOS X 10.5",
+            "identifier": "macosx",
+            "url": "http://mercurial.berkwood.com/binaries/Mercurial-1.1.1-py2.5-macosx10.5.zip"
+        },{
+            "system": "MacOS X 10.4",
+            "identifier": "macosx104",
+            "url": "http://mercurial.berkwood.com/binaries/Mercurial-1.1.1-py2.5-macosx10.4.zip"
+        },{
+            "system": "Microsoft Windows",
+            "identifier": "windows",
+            "url": "http://mercurial.berkwood.com/binaries/Mercurial-1.1.1.exe"
+        },{
+            "system": "Source",
+            "identifier": "source",
+            "url": "http://www.selenic.com/mercurial/release/mercurial-1.1.2.tar.gz"
+        }]
+    }
+]