From: "Brian Dolbec" <dolsen@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/catalyst:pending commit in: catalyst/ Date: Wed, 22 Nov 2017 15:52:44 +0000 (UTC) [thread overview] Message-ID: <1511313381.b9f2806724077740c8fdbf8bcdb5a431cb085e9d.dolsen@gentoo> (raw) commit: b9f2806724077740c8fdbf8bcdb5a431cb085e9d Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Thu Mar 9 09:24:22 2017 +0000 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org> CommitDate: Wed Nov 22 01:16:21 2017 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=b9f28067 defaults.py: Update all repository, DISTDIR, PKGDIR settings to new /var paths 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 additional testing and the automatic stage building scripts have been updated. catalyst/defaults.py | 37 +++++++++++++++++++++++-------------- 1 file changed, 23 insertions(+), 14 deletions(-) diff --git a/catalyst/defaults.py b/catalyst/defaults.py index 84ed2822..ed5766d6 100644 --- a/catalyst/defaults.py +++ b/catalyst/defaults.py @@ -31,6 +31,15 @@ valid_config_file_values.extend([ "distcc", "envscript", "compression_mode", "compressor_options", "decompressor_search_order", ]) +# set our base defaults here to keep +# them in one location. +BASE_GENTOO_DIR = "/var/gentoo" +REPODIR = BASE_GENTOO_DIR + "/repos" +DISTDIR = BASE_GENTOO_DIR + "/distfiles" +PKGDIR = BASE_GENTOO_DIR + "/packages" +MAINREPO = "gentoo" +PORTDIR = REPODIR + "/" + MAINREPO + confdefaults={ "archdir": "%(PythonDir)s/arch", "comp_prog": COMPRESSOR_PROGRAM_OPTIONS[TAR], @@ -39,28 +48,28 @@ confdefaults={ "compressor_options": XATTRS_OPTIONS[TAR], "decomp_opt": DECOMPRESSOR_PROGRAM_OPTIONS[TAR], "decompressor_search_order": DECOMPRESSOR_SEARCH_ORDER, - "distdir": "/usr/portage/distfiles", + "distdir": DISTDIR[:], "hash_function": "crc32", "icecream": "/var/cache/icecream", 'list_xattrs_opt': LIST_XATTRS_OPTIONS[TAR], - "local_overlay": "/usr/local/portage", + "local_overlay": REPODIR[:] + "/local", "port_conf": "/etc/portage", "make_conf": "%(port_conf)s/make.conf", "options": set(), - "packagedir": "/usr/portage/packages", - "portdir": "/usr/portage", + "packagedir": PKGDIR[:], + "portdir": PORTDIR[:], "port_tmpdir": "/var/tmp/portage", "PythonDir": "./catalyst", - "repo_basedir": "/usr", - "repo_name": "portage", + "repo_basedir": REPODIR[:], + "repo_name": MAINREPO[:], "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", - "target_pkgdir":"/var/portage/packages", + "target_distdir": DISTDIR[:], + "target_pkgdir": PKGDIR[:], } DEFAULT_CONFIG_FILE = '/etc/catalyst/catalyst.conf' @@ -72,11 +81,11 @@ TARGET_MOUNT_DEFAULTS = { "ccache": "/var/tmp/ccache", "dev": "/dev", "devpts": "/dev/pts", - "distdir": "/usr/portage/distfiles", + "distdir": DISTDIR[:], "icecream": "/usr/lib/icecc/bin", "kerncache": "/tmp/kerncache", - "packagedir": "/usr/portage/packages", - "portdir": "/usr/portage", + "packagedir": PKGDIR[:], + "portdir": PORTDIR[:], "port_tmpdir": "/var/tmp/portage", "port_logdir": "/var/log/portage", "proc": "/proc", @@ -86,8 +95,8 @@ TARGET_MOUNT_DEFAULTS = { SOURCE_MOUNT_DEFAULTS = { "dev": "/dev", "devpts": "/dev/pts", - "distdir": "/usr/portage/distfiles", - "portdir": "/usr/portage", + "distdir": DISTDIR[:], + "portdir": PORTDIR[:], "port_tmpdir": "tmpfs", "proc": "/proc", "shm": "shmfs",
WARNING: multiple messages have this Message-ID (diff)
From: "Brian Dolbec" <dolsen@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/ Date: Wed, 29 Nov 2017 17:20:45 +0000 (UTC) [thread overview] Message-ID: <1511313381.b9f2806724077740c8fdbf8bcdb5a431cb085e9d.dolsen@gentoo> (raw) Message-ID: <20171129172045.I0T7SxsCzVPkixixZyM4H_zlbv0osuHe2TbivF2iuRY@z> (raw) commit: b9f2806724077740c8fdbf8bcdb5a431cb085e9d Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Thu Mar 9 09:24:22 2017 +0000 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org> CommitDate: Wed Nov 22 01:16:21 2017 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=b9f28067 defaults.py: Update all repository, DISTDIR, PKGDIR settings to new /var paths 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 additional testing and the automatic stage building scripts have been updated. catalyst/defaults.py | 37 +++++++++++++++++++++++-------------- 1 file changed, 23 insertions(+), 14 deletions(-) diff --git a/catalyst/defaults.py b/catalyst/defaults.py index 84ed2822..ed5766d6 100644 --- a/catalyst/defaults.py +++ b/catalyst/defaults.py @@ -31,6 +31,15 @@ valid_config_file_values.extend([ "distcc", "envscript", "compression_mode", "compressor_options", "decompressor_search_order", ]) +# set our base defaults here to keep +# them in one location. +BASE_GENTOO_DIR = "/var/gentoo" +REPODIR = BASE_GENTOO_DIR + "/repos" +DISTDIR = BASE_GENTOO_DIR + "/distfiles" +PKGDIR = BASE_GENTOO_DIR + "/packages" +MAINREPO = "gentoo" +PORTDIR = REPODIR + "/" + MAINREPO + confdefaults={ "archdir": "%(PythonDir)s/arch", "comp_prog": COMPRESSOR_PROGRAM_OPTIONS[TAR], @@ -39,28 +48,28 @@ confdefaults={ "compressor_options": XATTRS_OPTIONS[TAR], "decomp_opt": DECOMPRESSOR_PROGRAM_OPTIONS[TAR], "decompressor_search_order": DECOMPRESSOR_SEARCH_ORDER, - "distdir": "/usr/portage/distfiles", + "distdir": DISTDIR[:], "hash_function": "crc32", "icecream": "/var/cache/icecream", 'list_xattrs_opt': LIST_XATTRS_OPTIONS[TAR], - "local_overlay": "/usr/local/portage", + "local_overlay": REPODIR[:] + "/local", "port_conf": "/etc/portage", "make_conf": "%(port_conf)s/make.conf", "options": set(), - "packagedir": "/usr/portage/packages", - "portdir": "/usr/portage", + "packagedir": PKGDIR[:], + "portdir": PORTDIR[:], "port_tmpdir": "/var/tmp/portage", "PythonDir": "./catalyst", - "repo_basedir": "/usr", - "repo_name": "portage", + "repo_basedir": REPODIR[:], + "repo_name": MAINREPO[:], "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", - "target_pkgdir":"/var/portage/packages", + "target_distdir": DISTDIR[:], + "target_pkgdir": PKGDIR[:], } DEFAULT_CONFIG_FILE = '/etc/catalyst/catalyst.conf' @@ -72,11 +81,11 @@ TARGET_MOUNT_DEFAULTS = { "ccache": "/var/tmp/ccache", "dev": "/dev", "devpts": "/dev/pts", - "distdir": "/usr/portage/distfiles", + "distdir": DISTDIR[:], "icecream": "/usr/lib/icecc/bin", "kerncache": "/tmp/kerncache", - "packagedir": "/usr/portage/packages", - "portdir": "/usr/portage", + "packagedir": PKGDIR[:], + "portdir": PORTDIR[:], "port_tmpdir": "/var/tmp/portage", "port_logdir": "/var/log/portage", "proc": "/proc", @@ -86,8 +95,8 @@ TARGET_MOUNT_DEFAULTS = { SOURCE_MOUNT_DEFAULTS = { "dev": "/dev", "devpts": "/dev/pts", - "distdir": "/usr/portage/distfiles", - "portdir": "/usr/portage", + "distdir": DISTDIR[:], + "portdir": PORTDIR[:], "port_tmpdir": "tmpfs", "proc": "/proc", "shm": "shmfs",
next reply other threads:[~2017-11-22 15:52 UTC|newest] Thread overview: 85+ messages / expand[flat|nested] mbox.gz Atom feed top 2017-11-22 15:52 Brian Dolbec [this message] 2017-11-29 17:20 ` [gentoo-commits] proj/catalyst:master commit in: catalyst/ Brian Dolbec -- strict thread matches above, loose matches on Subject: below -- 2017-03-16 22:57 [gentoo-commits] proj/catalyst:pending " Brian Dolbec 2017-03-16 22:57 Brian Dolbec 2017-03-11 9:35 Brian Dolbec 2017-03-11 7:07 Brian Dolbec 2017-03-10 18:38 Brian Dolbec 2017-03-09 10:02 Brian Dolbec 2017-03-09 9:39 Brian Dolbec 2015-11-21 1:33 Brian Dolbec 2015-11-21 1:33 Brian Dolbec 2015-11-21 1:33 Brian Dolbec 2015-11-21 1:33 Brian Dolbec 2015-11-21 1:33 Brian Dolbec 2015-11-21 1:33 Brian Dolbec 2015-09-08 14:14 Brian Dolbec 2015-09-06 21:21 [gentoo-commits] proj/catalyst:master " Brian Dolbec 2015-09-06 21:18 ` [gentoo-commits] proj/catalyst:pending " Brian Dolbec 2015-09-06 21:18 Brian Dolbec 2015-09-06 20:33 Brian Dolbec 2015-09-05 16:24 Brian Dolbec 2015-09-04 15:20 Brian Dolbec 2015-09-03 15:14 Brian Dolbec 2015-09-01 5:58 Brian Dolbec 2015-09-01 5:58 Brian Dolbec 2015-09-01 5:58 Brian Dolbec 2015-09-01 5:58 Brian Dolbec 2015-09-01 4:50 [gentoo-commits] proj/catalyst:master " Brian Dolbec 2015-09-01 5:58 ` [gentoo-commits] proj/catalyst:pending " Brian Dolbec 2015-08-30 20:58 [gentoo-commits] proj/catalyst:master " Brian Dolbec 2015-09-01 5:58 ` [gentoo-commits] proj/catalyst:pending " Brian Dolbec 2015-06-15 20:25 Brian Dolbec 2015-05-24 0:08 [gentoo-commits] proj/catalyst:master " Brian Dolbec 2015-05-21 23:53 ` [gentoo-commits] proj/catalyst:pending " Brian Dolbec 2015-02-26 20:44 Brian Dolbec 2015-02-26 20:44 Brian Dolbec 2015-02-26 19:25 Brian Dolbec 2015-02-26 4:12 [gentoo-commits] proj/catalyst:master " Brian Dolbec 2015-01-01 5:59 ` [gentoo-commits] proj/catalyst:pending " Brian Dolbec 2015-01-01 5:59 Brian Dolbec 2015-01-01 5:59 Brian Dolbec 2015-01-01 5:59 Brian Dolbec 2015-01-01 5:59 Brian Dolbec 2015-01-01 5:59 Brian Dolbec 2014-09-11 3:26 [gentoo-commits] proj/catalyst:master " Brian Dolbec 2014-06-14 5:58 ` [gentoo-commits] proj/catalyst:pending " Brian Dolbec 2014-09-11 3:26 [gentoo-commits] proj/catalyst:master " Brian Dolbec 2014-06-14 5:58 ` [gentoo-commits] proj/catalyst:pending " Brian Dolbec 2014-09-11 3:08 Brian Dolbec 2014-09-11 3:08 Brian Dolbec 2014-09-11 3:08 Brian Dolbec 2014-09-11 3:08 Brian Dolbec 2014-09-11 3:08 Brian Dolbec 2014-09-02 23:10 Brian Dolbec 2014-09-02 23:10 Brian Dolbec 2014-09-02 23:10 Brian Dolbec 2014-09-02 23:10 Brian Dolbec 2014-09-02 23:10 Brian Dolbec 2014-09-02 7:12 Brian Dolbec 2014-09-02 7:12 Brian Dolbec 2014-09-02 7:12 Brian Dolbec 2014-09-02 7:12 Brian Dolbec 2014-09-02 5:54 Brian Dolbec 2014-09-02 5:54 Brian Dolbec 2014-09-02 5:54 Brian Dolbec 2014-09-02 5:54 Brian Dolbec 2014-09-02 5:54 Brian Dolbec 2014-09-02 2:43 Brian Dolbec 2014-09-02 2:43 Brian Dolbec 2014-09-02 2:43 Brian Dolbec 2014-09-02 2:43 Brian Dolbec 2014-09-02 2:43 Brian Dolbec 2014-06-15 14:56 Brian Dolbec 2014-06-15 14:56 Brian Dolbec 2014-06-15 14:56 Brian Dolbec 2014-06-15 14:56 Brian Dolbec 2014-06-15 14:56 Brian Dolbec 2014-06-14 5:58 Brian Dolbec 2014-06-14 5:58 Brian Dolbec 2014-06-14 5:58 Brian Dolbec 2014-06-14 5:58 Brian Dolbec 2014-06-14 5:58 Brian Dolbec 2014-06-14 5:58 Brian Dolbec 2014-05-05 19:17 [gentoo-commits] proj/catalyst:master " Brian Dolbec 2014-04-02 20:09 ` [gentoo-commits] proj/catalyst:pending " Brian Dolbec 2014-04-02 20:09 Brian Dolbec 2014-04-02 20:09 Brian Dolbec 2014-04-02 20:09 Brian Dolbec 2014-03-22 22:25 Brian Dolbec 2014-03-22 22:25 Brian Dolbec 2014-03-22 22:25 Brian Dolbec 2014-03-22 22:25 Brian Dolbec 2014-03-22 22:25 Brian Dolbec
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=1511313381.b9f2806724077740c8fdbf8bcdb5a431cb085e9d.dolsen@gentoo \ --to=dolsen@gentoo.org \ --cc=gentoo-commits@lists.gentoo.org \ --cc=gentoo-dev@lists.gentoo.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox