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 505921382CC for ; Sat, 26 Oct 2013 20:10:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D08B0E0B2F; Sat, 26 Oct 2013 20:10:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08B52E08E1 for ; Sat, 26 Oct 2013 20:10:37 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D98C533F0B2 for ; Sat, 26 Oct 2013 20:10:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 93DB7E5463 for ; Sat, 26 Oct 2013 20:10:35 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1382808176.1f277353bdba2a4a83cc8b95cb69e2d5cab0eb25.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: / X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst X-VCS-Directories: / X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 1f277353bdba2a4a83cc8b95cb69e2d5cab0eb25 X-VCS-Branch: master Date: Sat, 26 Oct 2013 20:10:35 +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: b20f5faa-94fa-4fda-b146-52d09c26c7ab X-Archives-Hash: 07e27efa42f18582c0a9570b889d773b commit: 1f277353bdba2a4a83cc8b95cb69e2d5cab0eb25 Author: Dylan Baker gmail com> AuthorDate: Sun Oct 13 09:07:38 2013 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Oct 26 17:22:56 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=1f277353 catalyst: Remove commented sections of code Code in the upstream tree should either run or it shouldn't be there. Reviewed-by: Matt Turner gmail.com> --- catalyst | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/catalyst b/catalyst index 36bd709..68fa109 100755 --- a/catalyst +++ b/catalyst @@ -128,10 +128,6 @@ def parse_config(myconfig): print "Cleaning autoresume flags support enabled." conf_values["CLEAR_AUTORESUME"]="1" -# if "compress" in string.split(conf_values["options"]): -# print "Compression enabled." -# conf_values["COMPRESS"]="1" - if "distcc" in string.split(conf_values["options"]): print "Distcc support enabled." conf_values["DISTCC"]="1" @@ -164,10 +160,6 @@ def parse_config(myconfig): print "Snapshot cache support enabled." conf_values["SNAPCACHE"]="1" -# if "tarball" in string.split(conf_values["options"]): -# print "Tarball creation enabled." -# conf_values["TARBALL"]="1" - if "digests" in myconf: conf_values["digests"]=myconf["digests"] if "contents" in myconf: @@ -414,20 +406,3 @@ if __name__ == "__main__": print "Catalyst aborting...." raise sys.exit(2) - - #except CatalystError: - # print - # print "Catalyst aborting...." - # sys.exit(2) - #except KeyError: - # print "\nproblem with command line or spec file ( Key Error )" - # print "Key: "+str(sys.exc_value)+" was not found" - # print "Catalyst aborting...." - # sys.exit(2) - #except UnboundLocalError: - # print - # print "UnboundLocalError: "+str(sys.exc_value)+" was not found" - # raise - # print - # print "Catalyst aborting...." - # sys.exit(2)