From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-936189-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 4FAB4139694
	for <garchives@archives.gentoo.org>; Fri,  3 Mar 2017 23:50:57 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id B04D321C08A;
	Fri,  3 Mar 2017 23:50:56 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 91D8F21C08A
	for <gentoo-commits@lists.gentoo.org>; Fri,  3 Mar 2017 23:50:56 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id A1533341783
	for <gentoo-commits@lists.gentoo.org>; Fri,  3 Mar 2017 23:50:55 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 37BE05B7B
	for <gentoo-commits@lists.gentoo.org>; Fri,  3 Mar 2017 23:50:54 +0000 (UTC)
From: "Mart Raudsepp" <leio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" <leio@gentoo.org>
Message-ID: <1488576921.5a0aef2c23dd3bbf66cc530f3daef3f2e84cce9c.leio@gentoo>
Subject: [gentoo-commits] proj/gentoo-bumpchecker:master commit in: modules/
X-VCS-Repository: proj/gentoo-bumpchecker
X-VCS-Files: modules/gnome_module.py modules/gnome_output.py
X-VCS-Directories: modules/
X-VCS-Committer: leio
X-VCS-Committer-Name: Mart Raudsepp
X-VCS-Revision: 5a0aef2c23dd3bbf66cc530f3daef3f2e84cce9c
X-VCS-Branch: master
Date: Fri,  3 Mar 2017 23:50:54 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 015b9137-72d8-4074-97ac-0bba61e31dd8
X-Archives-Hash: 4f5c04b33d9bff788fbf1b5e5eb46e06

commit:     5a0aef2c23dd3bbf66cc530f3daef3f2e84cce9c
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  3 21:34:08 2017 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Fri Mar  3 21:35:21 2017 +0000
URL:        https://gitweb.gentoo.org/proj/gentoo-bumpchecker.git/commit/?id=5a0aef2c

gnome: Remove the old latest_versions_* vars that won't work

This also removes a GNOME class extra init in gnome_output for retrieving
the broken link, which won't be nice for future plans of requests usage
in terms of HTTP session

 modules/gnome_module.py | 2 --
 modules/gnome_output.py | 2 --
 2 files changed, 4 deletions(-)

diff --git a/modules/gnome_module.py b/modules/gnome_module.py
index ba1f29f..205d96e 100644
--- a/modules/gnome_module.py
+++ b/modules/gnome_module.py
@@ -34,8 +34,6 @@ class GNOME:
         self.gnome_release = ".".join(gnome_release_list[:2])
 
         self.ftpserver = "download.gnome.org"
-        self.latest_versions_file_path = 'http://www.gnome.org/~vuntz/tmp/versions/'
-        self.latest_versions_url = self.latest_versions_file_path + 'versions-' + self.gnome_release
         self.release_versions_file_path = 'https://download.gnome.org/teams/releng/'
 
     def generate_data_from_versions_markup(self, url):

diff --git a/modules/gnome_output.py b/modules/gnome_output.py
index 9859a6f..f1fcfdf 100644
--- a/modules/gnome_output.py
+++ b/modules/gnome_output.py
@@ -61,8 +61,6 @@ class Output:
         lines.append("<h2>Gnome " + clioptions_module.Options().get_arguments().release_number + " Progress</h2>")
         lines.append("contact " + os.environ["USER"] + "@gentoo.org if anything is not correct<br>")
         lines.append("Generated date: " + current_time + "<br>")
-        lines.append("<a href=\"" + gnome_module.GNOME().latest_versions_url \
-                + "\">Upstream versions list</a> <br>")
 
         # stats
         lines.append("<br>")