On Sun, 2013-01-06 at 17:41 -0800, Brian Dolbec wrote: > This is the first of some untested (but they compile without errors) > patches to catalyst for the pending default tree location changes. > > My current gentoo machine is somewhat limited in capability (memory > shortage, only moderate cpu horespower) for doing proper testing. But I > will try and get it setup better to do some test runs for changes. > > I can also push my catalyst git repo to my dev space for you to checkout > and do some tests on if you like. > > Config default changes: ========================== diff --git a/catalyst b/catalyst index c77658a..14dbaec 100755 @@ -61,11 +61,19 @@ def parse_config(myconfig): myconf={} config_file="" - confdefaults={ "storedir":"/var/tmp/catalyst",\ - "sharedir":"/usr/share/catalyst","distdir":"/usr/portage/distfiles",\ - "portdir":"/usr/portage","options":"",\ - "snapshot_cache":"/var/tmp/catalyst/snapshot_cache",\ - "hash_function":"crc32"} + confdefaults={ + "storedir": "/var/tmp/catalyst", + "sharedir": "/usr/lib/catalyst", + "distdir": "/var/cache/distfiles", + "repo_name": "gentoo", + "portdir": "/var/cache/repositories/gentoo", + "packagedir": "/var/cache/packages", + "port_tmpdir": "/var/tmp/portage", + "options": "", + "snapshot_name": "portage-", + "snapshot_cache": "/var/tmp/catalyst/snapshot_cache", + "hash_function": "crc32", + } # first, try the one passed (presumably from the cmdline) if myconfig: ========================== -- Brian Dolbec