From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D3F8513827E for ; Sat, 14 Dec 2013 05:22:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4BB8E0BD7; Sat, 14 Dec 2013 05:22:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 52CC8E0BD7 for ; Sat, 14 Dec 2013 05:22:23 +0000 (UTC) Received: from mail-qa0-f46.google.com (mail-qa0-f46.google.com [209.85.216.46]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: mattst88) by smtp.gentoo.org (Postfix) with ESMTPSA id 7FECE33F4DC for ; Sat, 14 Dec 2013 05:22:22 +0000 (UTC) Received: by mail-qa0-f46.google.com with SMTP id f11so125903qae.12 for ; Fri, 13 Dec 2013 21:22:20 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=mg6DFLEiIVteNbRJJi8l0YjeHv371ZoQOyF2VSlK9FM=; b=Rp/teQypDbgcVMotfemn/3Hs7vwlXM5h7tk08PJmD62qcAaDKyU68o3xzc22m3YHaX erO04G6ic3hLgRQJqto88MmKzG3JHOTZMTkDchwdpB7W5Oa8AWgwbXcSq8TmvrpOAscV kkzNs94ffQBL4GA7rc7JTTc+9KZYthpOXkOqLmf4krwAaErFqpKjLvGbOJo6WKf6Tm1t bfW8Cu7sjFfU2bDQTKK42irAMMy4w+qChSyEncYZkGzHqDTP6AD1ViLv55uJ9ZXKL+nv q+iq5AskFqcTub5NtCAPRDznDFEVqFAQDrXZgIb2DRTvvJlTgovWlYUA4XIdiVxPS/bF H7kQ== X-Received: by 10.49.17.232 with SMTP id r8mr11314518qed.74.1386998540894; Fri, 13 Dec 2013 21:22:20 -0800 (PST) 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 Received: by 10.229.178.129 with HTTP; Fri, 13 Dec 2013 21:22:00 -0800 (PST) In-Reply-To: <1386991211-9296-2-git-send-email-dolsen@gentoo.org> References: <1386991211-9296-1-git-send-email-dolsen@gentoo.org> <1386991211-9296-2-git-send-email-dolsen@gentoo.org> From: Matt Turner Date: Fri, 13 Dec 2013 21:22:00 -0800 Message-ID: Subject: Re: [gentoo-catalyst] [PATCH 1/4] Initial rearrangement of the python directories To: gentoo-catalyst@lists.gentoo.org Cc: Brian Dolbec Content-Type: text/plain; charset=ISO-8859-1 X-Archives-Salt: 2b2fd5bc-d749-4dfb-9b15-b3cf728296d8 X-Archives-Hash: 591ce5d2494b7fc84375171f43d13b8a On Fri, Dec 13, 2013 at 7:20 PM, Brian Dolbec wrote: > New minimal start script, moving the original catalyst script to catalyst/main.py. > Add __init__.py's to modules and arch sub-pkgs. > Update the module loading paths for the new locations. > Fix catalyst_support import to new location and specify imported modules. > --- > arch/alpha.py | 75 -- > arch/amd64.py | 83 -- > arch/arm.py | 133 --- > arch/hppa.py | 40 - > arch/ia64.py | 16 - > arch/mips.py | 464 -------- > arch/powerpc.py | 124 --- > arch/s390.py | 33 - > arch/sh.py | 116 -- > arch/sparc.py | 42 - > arch/x86.py | 153 --- We're missing m68k.py. Looks like it was missed in rebase. > diff --git a/bin/catalyst b/bin/catalyst > new file mode 100755 > index 0000000..a4e55db > --- /dev/null > +++ b/bin/catalyst > @@ -0,0 +1,46 @@ > +#!/usr/bin/python -OO > + > +# Maintained in full by: > +# Catalyst Team > +# Release Engineering Team > +# Andrew Gaffney > +# Chris Gianelloni > +# $Id$ Let's remove agaffney, wolf31o2 and the $Id$ tag. > + > + > +from __future__ import print_function > + > +import sys > + > +__maintainer__="Catalyst " > +__version__="2.0.12.2" Wrong version. Does catalyst still function immediately after this commit?