Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/targets/
Date: Tue, 15 Dec 2015 17:13:18
Message-Id: 1450199318.a0bcc3bda4f7528f91d610de712b29e83eaf3ec0.dolsen@gentoo
1 commit: a0bcc3bda4f7528f91d610de712b29e83eaf3ec0
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 15 16:51:43 2015 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 15 17:08:38 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=a0bcc3bd
7
8 targets/livecd_stage1.py: Remove the duplicated set_target_path()
9
10 catalyst/targets/livecd_stage1.py | 13 -------------
11 1 file changed, 13 deletions(-)
12
13 diff --git a/catalyst/targets/livecd_stage1.py b/catalyst/targets/livecd_stage1.py
14 index 70f9243..aa234b2 100644
15 --- a/catalyst/targets/livecd_stage1.py
16 +++ b/catalyst/targets/livecd_stage1.py
17 @@ -29,19 +29,6 @@ class livecd_stage1(StageBase):
18 "bind","chroot_setup","setup_environment","build_packages",\
19 "unbind", "clean","clear_autoresume"]
20
21 - def set_target_path(self):
22 - self.settings["target_path"]=normpath(self.settings["storedir"]+"/builds/"+self.settings["target_subpath"])
23 - if "autoresume" in self.settings["options"] \
24 - and self.resume.is_enabled("setup_target_path"):
25 - log.notice('Resume point detected, skipping target path setup operation...')
26 - else:
27 - # first clean up any existing target stuff
28 - if os.path.exists(self.settings["target_path"]):
29 - cmd("rm -rf "+self.settings["target_path"],\
30 - "Could not remove existing directory: "+self.settings["target_path"],env=self.env)
31 - self.resume.enable("setup_target_path")
32 - ensure_dirs(self.settings["target_path"])
33 -
34 def set_spec_prefix(self):
35 self.settings["spec_prefix"]="livecd"