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 6C47F138247 for ; Sat, 14 Dec 2013 22:24:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D95B9E0AEE; Sat, 14 Dec 2013 22:24:45 +0000 (UTC) Received: from qmta03.westchester.pa.mail.comcast.net (qmta03.westchester.pa.mail.comcast.net [76.96.62.32]) by pigeon.gentoo.org (Postfix) with ESMTP id 1ACC5E0AEB for ; Sat, 14 Dec 2013 22:24:44 +0000 (UTC) Received: from omta15.westchester.pa.mail.comcast.net ([76.96.62.87]) by qmta03.westchester.pa.mail.comcast.net with comcast id 1aBW1n0011swQuc53aQkfn; Sat, 14 Dec 2013 22:24:44 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta15.westchester.pa.mail.comcast.net with comcast id 1aQj1n00F152l3L3baQjEP; Sat, 14 Dec 2013 22:24:44 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id DFFCBD68B1B; Sat, 14 Dec 2013 14:24:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387059882; bh=tOSjwiWWlYO653acGU613FVu+0zU/Kgfeahhg0MTNt4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References; b=Bt003mUh5ai5MPPoxUCcjQvuBGvlYZ20EbM/m3G0RXU7dLyvCtVxeYHriPEOXyH6m x/wjcX6c2MbgHfBl5/Pxjtwx80QKr6qeCoZz+cy+v/ti2ewG7zY3fK+QzSQlhciDv7 m5YjjH2NWk8eeMcI7wyfn6rHt1Wj0jVeMd5zZdYo= From: "W. Trevor King" To: Catalyst Cc: Brian Dolbec , "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v2 01/21] modules/tinderbox_target.py: Use 'portdir' instead of hard-coding '/usr/portage' Date: Sat, 14 Dec 2013 14:24:09 -0800 Message-Id: <15051b5686670fa168a41d6d6f37d8d0046f76bd.1387059467.git.wking@tremily.us> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: References: In-Reply-To: References: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1387059884; bh=B8P6nytNtUqB9AKsmr7SfI9Pahja1WHuzD+51T3HFbc=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=ljDrgrZBV7Q4LcoDzBUGcgaOsmzoxXVQffNBNHlv9oZG8HkOtvl7fGxxNUXxKsvYn ZdXuHcTYbq7Ca2cc1dGAyXt8/lg5j5QXVsJqJDHalIKVOAmmETvtYuZ26RaliZkbmc 9fat/MlAAGsTEQ6//FoNxce65u+k5CExIJGXRnECa5sYRt7r/vhQPNo5/JrlrbmJEH 7Vo7cyCnYkrubQ3w1cPsgcK3sw77vvdCFBrznEqYqtEo4kDizWMWtnP6Y87hiSxZn+ qkleFugNgeEyC8lMcM43kGpHABLXBgmpYVOOdH28tEksShtjlv1nRJf3AiPU0JiPLQ jYpTf/Se8sR3Q== Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: a0cb8ea3-cfef-4055-b32c-7d8febb4ff4d X-Archives-Hash: bc94fe660e246f088db7c259b3419bce From: Brian Dolbec W. Trevor King: Refactored Git history for Brian Dolbec's content changes with additional whitespace cleanups. Signed-off-by: W. Trevor King --- modules/tinderbox_target.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/modules/tinderbox_target.py b/modules/tinderbox_target.py index 46fe082..ca55610 100644 --- a/modules/tinderbox_target.py +++ b/modules/tinderbox_target.py @@ -29,8 +29,12 @@ class tinderbox_target(generic_stage_target): raise CatalystError,"Tinderbox aborting due to error." def set_cleanables(self): - self.settings["cleanables"]=["/etc/resolv.conf","/var/tmp/*","/root/*",\ - "/usr/portage"] + self.settings['cleanables'] = [ + '/etc/resolv.conf', + '/var/tmp/*', + '/root/*', + self.settings['portdir'], + ] def set_action_sequence(self): #Default action sequence for run method -- 1.8.3.2