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 30965139694 for ; Tue, 21 Mar 2017 02:30:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4744621C09F; Tue, 21 Mar 2017 02:30:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 1819A21C09F for ; Tue, 21 Mar 2017 02:30:00 +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 513FB34106E for ; Tue, 21 Mar 2017 02:29:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E832A6F6B for ; Tue, 21 Mar 2017 02:29:57 +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: <1490063347.0ca25ccc1130b4a6c35f50f990cd2faa5a7f8fdc.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: 0ca25ccc1130b4a6c35f50f990cd2faa5a7f8fdc X-VCS-Branch: master Date: Tue, 21 Mar 2017 02:29:57 +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: 9442bd71-8a7d-44b3-882c-81b68787a438 X-Archives-Hash: b0aa8556f2c53c051b8970c6f2cfeb29 commit: 0ca25ccc1130b4a6c35f50f990cd2faa5a7f8fdc Author: Mart Raudsepp gentoo org> AuthorDate: Tue Mar 21 02:29:07 2017 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Tue Mar 21 02:29:07 2017 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-bumpchecker.git/commit/?id=0ca25ccc gnome: Stop skipping mobile suite, as it doesn't exist anymore anyway modules/gnome_module.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/gnome_module.py b/modules/gnome_module.py index 1780b92..38639ee 100644 --- a/modules/gnome_module.py +++ b/modules/gnome_module.py @@ -63,9 +63,6 @@ class GNOME: # Skip invalid lines if len(components) != 4 or len(components[2]) == 0: continue - # Skip mobile stuff, because we don't care. And they are mostly dupes anyway - if components[0] == 'mobile': - continue pkg = package_module.Package(components[1] + "-" + components[2], suite=components[0]) if (pkg.name and pkg.version): ret.append(pkg)