Gentoo Archives: gentoo-catalyst

From: Brian Dolbec <dolsen@g.o>
To: gentoo-catalyst@l.g.o
Subject: Re: [gentoo-catalyst] Catalyst tree move code changes. [1 of 4] now [2 of 2]
Date: Tue, 08 Jan 2013 07:32:51
Message-Id: 1357630173.4289.19.camel@big_daddy.dol-sen.ca
In Reply to: [gentoo-catalyst] Catalyst tree move code changes. [1 of 4] by Brian Dolbec
1 On Sun, 2013-01-06 at 17:41 -0800, Brian Dolbec wrote:
2 > This is the first of some untested (but they compile without errors)
3 > patches to catalyst for the pending default tree location changes.
4 >
5 > My current gentoo machine is somewhat limited in capability (memory
6 > shortage, only moderate cpu horespower) for doing proper testing. But I
7 > will try and get it setup better to do some test runs for changes.
8 >
9 > I can also push my catalyst git repo to my dev space for you to checkout
10 > and do some tests on if you like.
11 >
12 >
13
14
15 Config default changes:
16
17 ==========================
18
19
20 diff --git a/catalyst b/catalyst
21 index c77658a..14dbaec 100755
22 @@ -61,11 +61,19 @@ def parse_config(myconfig):
23 myconf={}
24 config_file=""
25
26 - confdefaults={ "storedir":"/var/tmp/catalyst",\
27 - "sharedir":"/usr/share/catalyst","distdir":"/usr/portage/distfiles",\
28 - "portdir":"/usr/portage","options":"",\
29 - "snapshot_cache":"/var/tmp/catalyst/snapshot_cache",\
30 - "hash_function":"crc32"}
31 + confdefaults={
32 + "storedir": "/var/tmp/catalyst",
33 + "sharedir": "/usr/lib/catalyst",
34 + "distdir": "/var/cache/distfiles",
35 + "repo_name": "gentoo",
36 + "portdir": "/var/cache/repositories/gentoo",
37 + "packagedir": "/var/cache/packages",
38 + "port_tmpdir": "/var/tmp/portage",
39 + "options": "",
40 + "snapshot_name": "portage-",
41 + "snapshot_cache": "/var/tmp/catalyst/snapshot_cache",
42 + "hash_function": "crc32",
43 + }
44
45 # first, try the one passed (presumably from the cmdline)
46 if myconfig:
47
48
49 ==========================
50 --
51 Brian Dolbec <dolsen@g.o>

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies

Subject Author
Re: [gentoo-catalyst] Catalyst tree move code changes. [1 of 4] now [2 of 2] Peter Stuge <peter@×××××.se>