From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C8EB2138CEE for ; Fri, 26 Jun 2015 22:32:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 11D9CE0872; Fri, 26 Jun 2015 22:32:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C78ABE086D for ; Fri, 26 Jun 2015 22:32:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 009AF340AF7 for ; Fri, 26 Jun 2015 22:32:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E6DF73F for ; Fri, 26 Jun 2015 22:32:04 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1435356883.bb81b5c9415b3d70f508a77ba1f79f86c5b4a79c.eva@gentoo> Subject: [gentoo-commits] proj/gnome:gen_archlist_cleanup commit in: scripts/ X-VCS-Repository: proj/gnome X-VCS-Files: scripts/gen_archlist.py X-VCS-Directories: scripts/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: bb81b5c9415b3d70f508a77ba1f79f86c5b4a79c X-VCS-Branch: gen_archlist_cleanup Date: Fri, 26 Jun 2015 22:32:04 +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: 3a8cd819-ad72-4dd0-8efa-df07f176ed5c X-Archives-Hash: f9a31bef0fd6bc0a2c983b3fec7d1c9e commit: bb81b5c9415b3d70f508a77ba1f79f86c5b4a79c Author: Gilles Dartiguelongue gentoo org> AuthorDate: Fri Jun 26 22:09:54 2015 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Fri Jun 26 22:14:43 2015 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=bb81b5c9 scripts/gen_archlist: do not add skipped lines to ALL_CPV_KWS Why in the world would we want to do that. scripts/gen_archlist.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/gen_archlist.py b/scripts/gen_archlist.py index 7c41a9c..1633dfa 100755 --- a/scripts/gen_archlist.py +++ b/scripts/gen_archlist.py @@ -489,7 +489,6 @@ def main(): for i in open(args.file).readlines(): cp = i[:-1] if cp.startswith('#') or cp.isspace() or not cp: - ALL_CPV_KWS.append(cp) continue if cp.find('#') is not -1: raise Exception('Inline comments are not supported')