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 87340138247 for ; Sat, 14 Dec 2013 22:25:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F328E0B30; Sat, 14 Dec 2013 22:24:48 +0000 (UTC) Received: from qmta02.westchester.pa.mail.comcast.net (qmta02.westchester.pa.mail.comcast.net [76.96.62.24]) by pigeon.gentoo.org (Postfix) with ESMTP id 81DACE0B18 for ; Sat, 14 Dec 2013 22:24:46 +0000 (UTC) Received: from omta15.westchester.pa.mail.comcast.net ([76.96.62.87]) by qmta02.westchester.pa.mail.comcast.net with comcast id 1Zqc1n0051swQuc51aQmFQ; Sat, 14 Dec 2013 22:24:46 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta15.westchester.pa.mail.comcast.net with comcast id 1aQl1n002152l3L3baQlEc; Sat, 14 Dec 2013 22:24:46 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id A66E1D68B48; Sat, 14 Dec 2013 14:24:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387059884; bh=QtOXtWLclvgXlPM1rRTxat/ZbZwJ2nqdvqz/ZLNc2YA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References; b=byL6JOA+EHFNWg9yi2ozHOhv3cH1h5nizU4mKFcZZ+SeLTbLdJrdG9xDxPNzkQdeh ZhRGhiide7UyJo8bxvawGt49b9APxTjKJn4EkHLOy7A131biyZrWZonty556rwpoho LTW+H58i5WNwy/mTvjPpsJtAUxXwnjNOWcMg7h1Q= From: "W. Trevor King" To: Catalyst Cc: Brian Dolbec , "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v2 10/21] catalyst: Add 'port_tmpdir' default instead of hard-coding '/var/tmp/portage' Date: Sat, 14 Dec 2013 14:24:18 -0800 Message-Id: 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=1387059886; bh=LLbUSQPcGHq7cy7/kSePlNyugrys7C81FN8iT5sNfmc=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=mZBMf48LeshMWSaqVmiGTBK4VY6pUsZytvdqk2BHF3e66JsdqUZM4ce/UsU6/pfuV OZPu5tKxXHCSZdu0ZTYr2vKQSNx+2VdMJWHmRvR9/oWtq8uV07zBXB8N/f692PQaXb HkpRXP97mVijDyiwX/lZeJDaTLrjRyNNgsmvXguhB3avM1716DdghnNyv+5d7RjxK/ W+l+A0FF9bIRrjXDpghTFKp4RUxcjy+Pi1ZcGXIN/owjSqmSbPfOtMemqxQylWrDoV 03Vha4gU2fDsLt+N1pLq+sif8LFzzDpxzBQdRebe7aMt5/J5k2HHfyTzbizVw2k9vA wiwU2YSIdnadQ== 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: 181e948b-7aff-4315-9fdd-8b9102ccbe3f X-Archives-Hash: 5c69bae7dd3968f463c7b7e5c9dacce3 From: Brian Dolbec W. Trevor King: Refactored Git history for Brian Dolbec's content changes. Signed-off-by: W. Trevor King --- catalyst | 1 + 1 file changed, 1 insertion(+) diff --git a/catalyst b/catalyst index c62b745..cafc6e5 100755 --- a/catalyst +++ b/catalyst @@ -67,6 +67,7 @@ def parse_config(myconfig): "options": "", "packagedir": "/usr/portage/packages", "portdir": "/usr/portage", + "port_tmpdir": "/var/tmp/portage", "repo_name": "portage", "sharedir": "/usr/share/catalyst", "snapshot_name": "portage-", -- 1.8.3.2