From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1960B139694 for ; Fri, 10 Mar 2017 19:23:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 782B2E0C5F; Fri, 10 Mar 2017 19:23:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 52A3AE0C5F for ; Fri, 10 Mar 2017 19:23:35 +0000 (UTC) Received: from professor-x (d108-172-194-175.bchsia.telus.net [108.172.194.175]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: dolsen) by smtp.gentoo.org (Postfix) with ESMTPSA id 9AC6A34106E for ; Fri, 10 Mar 2017 19:23:34 +0000 (UTC) Date: Fri, 10 Mar 2017 11:23:32 -0800 From: Brian Dolbec To: gentoo-catalyst@lists.gentoo.org Subject: [gentoo-catalyst] [PATCH 6/7] defaults.py: Update all repository, DISTDIR, PKGDIR settings to new /var paths Message-ID: <20170310112332.110a36fd.dolsen@gentoo.org> Organization: Gentoo 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 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 7c631879-960e-4c57-a1ba-cc8ec4b820ef X-Archives-Hash: 16695c83e8b551e46f4fb58ca5a90c56 =46rom 926c42c264e2fdb2987e145ae848fccfaa51be39 Mon Sep 17 00:00:00 2001 From: Brian Dolbec Date: Thu, 9 Mar 2017 01:24:22 -0800 Subject: [PATCH 6/7] defaults.py: Update all repository, DISTDIR, PKGDIR settings to new /var paths To: gentoo-catalyst@lists.gentoo.org All settings are still configurable in catalyst.conf. These are new reasonable settings for a relocated tree system. A user can still set their own locations during install, or at a later time. Default catalyst.conf settings will be changed at a later time after additi= onal testing and the automatic stage building scripts have been updated. --- catalyst/defaults.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/catalyst/defaults.py b/catalyst/defaults.py index 84ed2822..947e236c 100644 --- a/catalyst/defaults.py +++ b/catalyst/defaults.py @@ -39,24 +39,24 @@ confdefaults=3D{ "compressor_options": XATTRS_OPTIONS[TAR], "decomp_opt": DECOMPRESSOR_PROGRAM_OPTIONS[TAR], "decompressor_search_order": DECOMPRESSOR_SEARCH_ORDER, - "distdir": "/usr/portage/distfiles", + "distdir": "/var/portage/distfiles", "hash_function": "crc32", "icecream": "/var/cache/icecream", 'list_xattrs_opt': LIST_XATTRS_OPTIONS[TAR], - "local_overlay": "/usr/local/portage", + "local_overlay": "/var/portage/repos/local", "port_conf": "/etc/portage", "make_conf": "%(port_conf)s/make.conf", "options": set(), - "packagedir": "/usr/portage/packages", - "portdir": "/usr/portage", + "packagedir": "/var/portage/packages", + "portdir": "/var/portage/repos", "port_tmpdir": "/var/tmp/portage", "PythonDir": "./catalyst", - "repo_basedir": "/usr", - "repo_name": "portage", + "repo_basedir": "/var/portage/repos", + "repo_name": "gentoo", "sharedir": "/usr/share/catalyst", "shdir": "/usr/share/catalyst/targets/", "snapshot_cache": "/var/tmp/catalyst/snapshot_cache", - "snapshot_name": "portage-", + "snapshot_name": "%(repo_name)s-", "source_matching": "strict", "storedir": "/var/tmp/catalyst", "target_distdir": "/var/portage/distfiles", @@ -75,8 +75,8 @@ TARGET_MOUNT_DEFAULTS =3D { "distdir": "/usr/portage/distfiles", "icecream": "/usr/lib/icecc/bin", "kerncache": "/tmp/kerncache", - "packagedir": "/usr/portage/packages", - "portdir": "/usr/portage", + "packagedir": "/var/portage/packages", + "portdir": "/var/portage/repos", "port_tmpdir": "/var/tmp/portage", "port_logdir": "/var/log/portage", "proc": "/proc", @@ -86,8 +86,8 @@ TARGET_MOUNT_DEFAULTS =3D { SOURCE_MOUNT_DEFAULTS =3D { "dev": "/dev", "devpts": "/dev/pts", - "distdir": "/usr/portage/distfiles", - "portdir": "/usr/portage", + "distdir": "/var/portage/distfiles", + "portdir": "/var/portage/repos", "port_tmpdir": "tmpfs", "proc": "/proc", "shm": "shmfs", --=20 2.12.0 --=20 Brian Dolbec