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 639A31384B4 for ; Tue, 15 Dec 2015 17:13:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2620421C04C; Tue, 15 Dec 2015 17:13:16 +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 9E834E084D for ; Tue, 15 Dec 2015 17:13:15 +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 A123B3403A3 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 7E51AC7E 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: <1450199310.3090f4c0bf674b61a9e341855a9d41e946ec5a7f.dolsen@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/targets/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/targets/grp.py X-VCS-Directories: catalyst/targets/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 3090f4c0bf674b61a9e341855a9d41e946ec5a7f 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: 84305ef8-cea8-43f0-a591-981904f59ac1 X-Archives-Hash: 6983ce9b9928cc6e58096941aa14d492 commit: 3090f4c0bf674b61a9e341855a9d41e946ec5a7f Author: Brian Dolbec gentoo org> AuthorDate: Tue Dec 15 16:45:29 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Tue Dec 15 17:08:30 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=3090f4c0 targets/grp.py: Remove the duped set_target_path() catalyst/targets/grp.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/catalyst/targets/grp.py b/catalyst/targets/grp.py index 0b38417..2707907 100644 --- a/catalyst/targets/grp.py +++ b/catalyst/targets/grp.py @@ -39,20 +39,6 @@ class grp(StageBase): StageBase.__init__(self,spec,addlargs) - def set_target_path(self): - self.settings["target_path"]=normpath(self.settings["storedir"]+"/builds/"+self.settings["target_subpath"]) - if "autoresume" in self.settings["options"] \ - 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 - #if os.path.isdir(self.settings["target_path"]): - #cmd("rm -rf "+self.settings["target_path"], - #"Could not remove existing directory: "+self.settings["target_path"],env=self.env) - ensure_dirs(self.settings["target_path"]) - - self.resume.enable("setup_target_path") - def run_local(self): for pkgset in self.settings["grp"]: # example call: "grp.sh run pkgset cd1 xmms vim sys-apps/gleep"