From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 84D92139695 for ; 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 E1C5821C098; Fri, 3 Mar 2017 23:50:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 BF81A21C098 for ; Fri, 3 Mar 2017 23:50:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 EC25E34178E for ; Fri, 3 Mar 2017 23:50:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24D9F5B79 for ; Fri, 3 Mar 2017 23:50:54 +0000 (UTC) From: "Mart Raudsepp" 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" Message-ID: <1488575738.65504e5c8b753501d3a89451e5982fa29318f51b.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 X-VCS-Directories: modules/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 65504e5c8b753501d3a89451e5982fa29318f51b X-VCS-Branch: master Date: Fri, 3 Mar 2017 23:50:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6074d9b8-9d13-45a7-ade9-dc7b9b3e2347 X-Archives-Hash: f8a520ca88cfa8181fe0d6aa699644cc commit: 65504e5c8b753501d3a89451e5982fa29318f51b Author: Mart Raudsepp gentoo org> AuthorDate: Fri Mar 3 21:14:39 2017 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Fri Mar 3 21:15:38 2017 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-bumpchecker.git/commit/?id=65504e5c gnome: temporarily report release versions as individual as the latter is broken vuntz versions files doesn't work anymore and we'll need to migrate to something working. Fake the data by duplicating the release versions till then. modules/gnome_module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gnome_module.py b/modules/gnome_module.py index 062fed7..ba1f29f 100644 --- a/modules/gnome_module.py +++ b/modules/gnome_module.py @@ -62,7 +62,7 @@ class GNOME: return ret def generate_data_individual(self): - return self.generate_data_from_versions_markup(self.latest_versions_url) + return self.generate_data_release() def generate_data_release(self): return self.generate_data_from_versions_markup(self.release_versions_file_path + self.full_release + '/versions')