[PATCH] Update distros.d files to point to a valid URL

Gentoo and Debian JSON files had entried with invalid URLs which was preventing them to be displayed on Kimchi. Also add a valid entry for OpenSUSE 13.1 Signed-off-by: Aline Manera <alinefm@linux.vnet.ibm.com> --- src/distros.d/debian.json | 4 ++-- src/distros.d/gentoo.json | 6 +++--- src/distros.d/opensuse.json | 7 +++++++ 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/distros.d/debian.json b/src/distros.d/debian.json index 17111c0..60bdf41 100644 --- a/src/distros.d/debian.json +++ b/src/distros.d/debian.json @@ -3,7 +3,7 @@ "name": "debian-Wheezy", "os_distro": "debian", "os_arch": "x86_64", - "os_version": "7.4.0", - "path": "http://ftp.acc.umu.se/debian-cd/7.4.0-live/amd64/iso-hybrid/debian-live-7.4-..." + "os_version": "7.6.0", + "path": "http://ftp.acc.umu.se/debian-cd/7.6.0-live/amd64/iso-hybrid/debian-live-7.6...." } ] diff --git a/src/distros.d/gentoo.json b/src/distros.d/gentoo.json index 2f9a669..1c398e8 100644 --- a/src/distros.d/gentoo.json +++ b/src/distros.d/gentoo.json @@ -1,9 +1,9 @@ [ { - "name": "gentoo-20140227", + "name": "gentoo-20140904", "os_distro": "gentoo", "os_arch": "x86_64", - "os_version": "20140227", - "path": "http://distfiles.gentoo.org/releases/amd64/autobuilds/current-iso/install-am..." + "os_version": "20140904", + "path": "http://distfiles.gentoo.org/releases/amd64/autobuilds/current-iso/install-am..." } ] diff --git a/src/distros.d/opensuse.json b/src/distros.d/opensuse.json index 315cf78..ad80c50 100644 --- a/src/distros.d/opensuse.json +++ b/src/distros.d/opensuse.json @@ -5,5 +5,12 @@ "os_arch": "x86_64", "os_version": "12.3", "path": "http://suse.mirrors.tds.net/pub/opensuse/distribution/12.3/iso/openSUSE-12.3..." + }, + { + "name": "opensuse-13.1", + "os_distro": "opensuse", + "os_arch": "x86_64", + "os_version": "13.1", + "path": "http://suse.mirrors.tds.net/pub/opensuse/distribution/13.1/iso/openSUSE-13.1..." } ] -- 1.9.3

Reviewed-by: Crístian Viana <vianac@linux.vnet.ibm.com> However, in the long term, I think we should build some kind of fetcher to update that data automatically. On 25-09-2014 00:33, Aline Manera wrote:
Gentoo and Debian JSON files had entried with invalid URLs which was preventing them to be displayed on Kimchi. Also add a valid entry for OpenSUSE 13.1
Signed-off-by: Aline Manera <alinefm@linux.vnet.ibm.com>
participants (2)
-
Aline Manera
-
Crístian Viana