Gentoo Archives: gentoo-catalyst

From: Matt Turner <mattst88@g.o>
To: gentoo-catalyst@l.g.o
Cc: Brian Dolbec <dolsen@g.o>
Subject: Re: [gentoo-catalyst] [PATCH 1/4] Initial rearrangement of the python directories
Date: Sat, 14 Dec 2013 05:22:25
Message-Id: CAEdQ38EAfPLAmhgca-h1-mhNaVujvo=w+rh8e9AJR1vAbaeBHw@mail.gmail.com
In Reply to: [gentoo-catalyst] [PATCH 1/4] Initial rearrangement of the python directories by Brian Dolbec
1 On Fri, Dec 13, 2013 at 7:20 PM, Brian Dolbec <dolsen@g.o> wrote:
2 > New minimal start script, moving the original catalyst script to catalyst/main.py.
3 > Add __init__.py's to modules and arch sub-pkgs.
4 > Update the module loading paths for the new locations.
5 > Fix catalyst_support import to new location and specify imported modules.
6 > ---
7 > arch/alpha.py | 75 --
8 > arch/amd64.py | 83 --
9 > arch/arm.py | 133 ---
10 > arch/hppa.py | 40 -
11 > arch/ia64.py | 16 -
12 > arch/mips.py | 464 --------
13 > arch/powerpc.py | 124 ---
14 > arch/s390.py | 33 -
15 > arch/sh.py | 116 --
16 > arch/sparc.py | 42 -
17 > arch/x86.py | 153 ---
18
19 We're missing m68k.py. Looks like it was missed in rebase.
20
21 > diff --git a/bin/catalyst b/bin/catalyst
22 > new file mode 100755
23 > index 0000000..a4e55db
24 > --- /dev/null
25 > +++ b/bin/catalyst
26 > @@ -0,0 +1,46 @@
27 > +#!/usr/bin/python -OO
28 > +
29 > +# Maintained in full by:
30 > +# Catalyst Team <catalyst@g.o>
31 > +# Release Engineering Team <releng@g.o>
32 > +# Andrew Gaffney <agaffney@g.o>
33 > +# Chris Gianelloni <wolf31o2@××××××××.org>
34 > +# $Id$
35
36 Let's remove agaffney, wolf31o2 and the $Id$ tag.
37
38 > +
39 > +
40 > +from __future__ import print_function
41 > +
42 > +import sys
43 > +
44 > +__maintainer__="Catalyst <catalyst@g.o>"
45 > +__version__="2.0.12.2"
46
47 Wrong version.
48
49 Does catalyst still function immediately after this commit?

Replies