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 0F2891383D3 for ; Tue, 1 Sep 2015 05:59:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5852E1429F; Tue, 1 Sep 2015 05:59:04 +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 6EB501429F for ; Tue, 1 Sep 2015 05:59:02 +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 AD6F5340884 for ; Tue, 1 Sep 2015 05:59:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A566E192 for ; Tue, 1 Sep 2015 05:58:57 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1441082954.7a036cf0fb918d95498d84577463db35c2eccc97.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:pending commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/main.py X-VCS-Directories: catalyst/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 7a036cf0fb918d95498d84577463db35c2eccc97 X-VCS-Branch: pending Date: Tue, 1 Sep 2015 05:58: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: 5136b34c-2704-4e02-8a4d-836338313c9f X-Archives-Hash: 1ff2c022f281706fb78617c00db61d5b commit: 7a036cf0fb918d95498d84577463db35c2eccc97 Author: Brian Dolbec gentoo org> AuthorDate: Tue Sep 1 04:47:45 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Tue Sep 1 04:49:14 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=7a036cf0 main.py: Remove 2 debug prints causing misleading information In this part if the code, these inital defaults are not yet updated. The valuse are updated later in the code. catalyst/main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/catalyst/main.py b/catalyst/main.py index a222209..dd3c517 100644 --- a/catalyst/main.py +++ b/catalyst/main.py @@ -101,13 +101,11 @@ def parse_config(myconfig): # now, load up the values into conf_values so that we can use them for x in list(confdefaults): if x in myconf: - print "Setting",x,"to config file value \""+myconf[x]+"\"" if x == 'options': conf_values[x] = set(myconf[x].split()) else: conf_values[x]=myconf[x] else: - print "Setting",x,"to default value \""+confdefaults[x]+"\"" conf_values[x]=confdefaults[x] # add our python base directory to use for loading target arch's 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 792961383E1 for ; Tue, 1 Sep 2015 04:50:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 317841425C; Tue, 1 Sep 2015 04:50:28 +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 BD3D71425C for ; Tue, 1 Sep 2015 04:50:27 +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 06FD134074D for ; Tue, 1 Sep 2015 04:50:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B96C817E for ; Tue, 1 Sep 2015 04:50:23 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1441082954.7a036cf0fb918d95498d84577463db35c2eccc97.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/main.py X-VCS-Directories: catalyst/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 7a036cf0fb918d95498d84577463db35c2eccc97 X-VCS-Branch: master Date: Tue, 1 Sep 2015 04:50:23 +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: 7764b4de-1779-4f73-aa44-466977d336ad X-Archives-Hash: ae83b7feeea8c87c03cd58caf61b0ca4 Message-ID: <20150901045023.609Rk7rtnjGVR6XHzx5rncw-gaOaXxmh7a_sar9Eh2g@z> commit: 7a036cf0fb918d95498d84577463db35c2eccc97 Author: Brian Dolbec gentoo org> AuthorDate: Tue Sep 1 04:47:45 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Tue Sep 1 04:49:14 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=7a036cf0 main.py: Remove 2 debug prints causing misleading information In this part if the code, these inital defaults are not yet updated. The valuse are updated later in the code. catalyst/main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/catalyst/main.py b/catalyst/main.py index a222209..dd3c517 100644 --- a/catalyst/main.py +++ b/catalyst/main.py @@ -101,13 +101,11 @@ def parse_config(myconfig): # now, load up the values into conf_values so that we can use them for x in list(confdefaults): if x in myconf: - print "Setting",x,"to config file value \""+myconf[x]+"\"" if x == 'options': conf_values[x] = set(myconf[x].split()) else: conf_values[x]=myconf[x] else: - print "Setting",x,"to default value \""+confdefaults[x]+"\"" conf_values[x]=confdefaults[x] # add our python base directory to use for loading target arch's