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 07EC81388C1 for ; Tue, 15 Dec 2015 17:13:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF1FEE0864; Tue, 15 Dec 2015 17:13:15 +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 20CA9E0856 for ; Tue, 15 Dec 2015 17:13:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A029B33FDBF for ; Tue, 15 Dec 2015 17:13:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D3F9B40 for ; Tue, 15 Dec 2015 17:13:10 +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: <1450197858.4536a30781c9b3ca7245a39634093e93ccd5344c.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 4536a30781c9b3ca7245a39634093e93ccd5344c X-VCS-Branch: master Date: Tue, 15 Dec 2015 17:13:10 +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: d36d8715-1659-4243-89aa-2ba890abdece X-Archives-Hash: b6be8fd390059b694aee56586e8f4ea2 commit: 4536a30781c9b3ca7245a39634093e93ccd5344c Author: Brian Dolbec gentoo org> AuthorDate: Tue Dec 15 16:44:18 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Tue Dec 15 16:44:18 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=4536a307 stagebase.py: Clean out some dead set_target_path() code catalyst/base/stagebase.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 62950b5..92f300e 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -343,16 +343,7 @@ class StageBase(TargetBase, ClearBase, GenBase): and self.resume.is_enabled("setup_target_path"): log.notice('Resume point detected, skipping target path setup operation...') else: - # First clean up any existing target stuff - # XXX WTF are we removing the old tarball before we start building the - # XXX new one? If the build fails, you don't want to be left with - # XXX nothing at all -# if os.path.isfile(self.settings["target_path"]): -# cmd("rm -f "+self.settings["target_path"],\ -# "Could not remove existing file: "\ -# +self.settings["target_path"],env=self.env) self.resume.enable("setup_target_path") - ensure_dirs(self.settings["storedir"] + "/builds") def set_fsscript(self):