public inbox for gentoo-catalyst@lists.gentoo.org
 help / color / mirror / Atom feed
From: Dylan Baker <baker.dylan.c@gmail.com>
To: gentoo-catalyst@lists.gentoo.org
Cc: Brian Dolbec <dolsen@gentoo.org>
Subject: Re: [gentoo-catalyst] [PATCH 1/4] Initial rearrangement of the python directories
Date: Sat, 14 Dec 2013 06:17:34 -0800	[thread overview]
Message-ID: <44746063.ZggCSZXDZz@moiraine> (raw)
In-Reply-To: <1386991211-9296-2-git-send-email-dolsen@gentoo.org>

[-- Attachment #1: Type: text/plain, Size: 7351 bytes --]

What sha does this apply against? It doesn't apply against master, 2.0.14, or 
2.0.13?

On Friday, December 13, 2013 07:20:08 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 ---
>  bin/catalyst                             |   46 +
>  catalyst                                 |  428 --------
>  catalyst/__init__.py                     |    0
>  catalyst/arch/__init__.py                |    1 +
>  catalyst/arch/alpha.py                   |   75 ++
>  catalyst/arch/amd64.py                   |   83 ++
>  catalyst/arch/arm.py                     |  133 +++
>  catalyst/arch/hppa.py                    |   40 +
>  catalyst/arch/ia64.py                    |   16 +
>  catalyst/arch/mips.py                    |  464 ++++++++
>  catalyst/arch/powerpc.py                 |  124 +++
>  catalyst/arch/s390.py                    |   33 +
>  catalyst/arch/sh.py                      |  116 ++
>  catalyst/arch/sparc.py                   |   42 +
>  catalyst/arch/x86.py                     |  153 +++
>  catalyst/config.py                       |  122 +++
>  catalyst/main.py                         |  435 ++++++++
>  catalyst/modules/__init__.py             |    1 +
>  catalyst/modules/builder.py              |   20 +
>  catalyst/modules/catalyst_lock.py        |  468 +++++++++
>  catalyst/modules/catalyst_support.py     |  718 +++++++++++++
>  catalyst/modules/embedded_target.py      |   51 +
>  catalyst/modules/generic_stage_target.py | 1691
> +++++++++++++++++++++++++++++ catalyst/modules/generic_target.py       |  
> 11 +
>  catalyst/modules/grp_target.py           |  118 +++
>  catalyst/modules/livecd_stage1_target.py |   75 ++
>  catalyst/modules/livecd_stage2_target.py |  146 +++
>  catalyst/modules/netboot2_target.py      |  166 +++
>  catalyst/modules/netboot_target.py       |  128 +++
>  catalyst/modules/snapshot_target.py      |   91 ++
>  catalyst/modules/stage1_target.py        |   96 ++
>  catalyst/modules/stage2_target.py        |   62 ++
>  catalyst/modules/stage3_target.py        |   31 +
>  catalyst/modules/stage4_target.py        |   43 +
>  catalyst/modules/tinderbox_target.py     |   44 +
>  catalyst/util.py                         |   14 +
>  modules/builder.py                       |   20 -
>  modules/catalyst/__init__.py             |    0
>  modules/catalyst/config.py               |  122 ---
>  modules/catalyst/util.py                 |   14 -
>  modules/catalyst_lock.py                 |  468 ---------
>  modules/catalyst_support.py              |  718 -------------
>  modules/embedded_target.py               |   51 -
>  modules/generic_stage_target.py          | 1692
> ------------------------------ modules/generic_target.py                |  
> 11 -
>  modules/grp_target.py                    |  118 ---
>  modules/livecd_stage1_target.py          |   75 --
>  modules/livecd_stage2_target.py          |  146 ---
>  modules/netboot2_target.py               |  166 ---
>  modules/netboot_target.py                |  128 ---
>  modules/snapshot_target.py               |   91 --
>  modules/stage1_target.py                 |   96 --
>  modules/stage2_target.py                 |   62 --
>  modules/stage3_target.py                 |   31 -
>  modules/stage4_target.py                 |   43 -
>  modules/tinderbox_target.py              |   44 -
>  67 files changed, 5857 insertions(+), 5803 deletions(-)
>  delete mode 100644 arch/alpha.py
>  delete mode 100644 arch/amd64.py
>  delete mode 100644 arch/arm.py
>  delete mode 100644 arch/hppa.py
>  delete mode 100644 arch/ia64.py
>  delete mode 100644 arch/mips.py
>  delete mode 100644 arch/powerpc.py
>  delete mode 100644 arch/s390.py
>  delete mode 100644 arch/sh.py
>  delete mode 100644 arch/sparc.py
>  delete mode 100644 arch/x86.py
>  create mode 100755 bin/catalyst
>  delete mode 100755 catalyst
>  create mode 100644 catalyst/__init__.py
>  create mode 100644 catalyst/arch/__init__.py
>  create mode 100644 catalyst/arch/alpha.py
>  create mode 100644 catalyst/arch/amd64.py
>  create mode 100644 catalyst/arch/arm.py
>  create mode 100644 catalyst/arch/hppa.py
>  create mode 100644 catalyst/arch/ia64.py
>  create mode 100644 catalyst/arch/mips.py
>  create mode 100644 catalyst/arch/powerpc.py
>  create mode 100644 catalyst/arch/s390.py
>  create mode 100644 catalyst/arch/sh.py
>  create mode 100644 catalyst/arch/sparc.py
>  create mode 100644 catalyst/arch/x86.py
>  create mode 100644 catalyst/config.py
>  create mode 100644 catalyst/main.py
>  create mode 100644 catalyst/modules/__init__.py
>  create mode 100644 catalyst/modules/builder.py
>  create mode 100644 catalyst/modules/catalyst_lock.py
>  create mode 100644 catalyst/modules/catalyst_support.py
>  create mode 100644 catalyst/modules/embedded_target.py
>  create mode 100644 catalyst/modules/generic_stage_target.py
>  create mode 100644 catalyst/modules/generic_target.py
>  create mode 100644 catalyst/modules/grp_target.py
>  create mode 100644 catalyst/modules/livecd_stage1_target.py
>  create mode 100644 catalyst/modules/livecd_stage2_target.py
>  create mode 100644 catalyst/modules/netboot2_target.py
>  create mode 100644 catalyst/modules/netboot_target.py
>  create mode 100644 catalyst/modules/snapshot_target.py
>  create mode 100644 catalyst/modules/stage1_target.py
>  create mode 100644 catalyst/modules/stage2_target.py
>  create mode 100644 catalyst/modules/stage3_target.py
>  create mode 100644 catalyst/modules/stage4_target.py
>  create mode 100644 catalyst/modules/tinderbox_target.py
>  create mode 100644 catalyst/util.py
>  delete mode 100644 modules/builder.py
>  delete mode 100644 modules/catalyst/__init__.py
>  delete mode 100644 modules/catalyst/config.py
>  delete mode 100644 modules/catalyst/util.py
>  delete mode 100644 modules/catalyst_lock.py
>  delete mode 100644 modules/catalyst_support.py
>  delete mode 100644 modules/embedded_target.py
>  delete mode 100644 modules/generic_stage_target.py
>  delete mode 100644 modules/generic_target.py
>  delete mode 100644 modules/grp_target.py
>  delete mode 100644 modules/livecd_stage1_target.py
>  delete mode 100644 modules/livecd_stage2_target.py
>  delete mode 100644 modules/netboot2_target.py
>  delete mode 100644 modules/netboot_target.py
>  delete mode 100644 modules/snapshot_target.py
>  delete mode 100644 modules/stage1_target.py
>  delete mode 100644 modules/stage2_target.py
>  delete mode 100644 modules/stage3_target.py
>  delete mode 100644 modules/stage4_target.py
>  delete mode 100644 modules/tinderbox_target.py

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 490 bytes --]

  parent reply	other threads:[~2013-12-14 14:17 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-14  3:20 [gentoo-catalyst] rewrite-on-master patches, round-2 Brian Dolbec
2013-12-14  3:20 ` [gentoo-catalyst] [PATCH 1/4] Initial rearrangement of the python directories Brian Dolbec
2013-12-14  5:22   ` Matt Turner
2013-12-14  5:48     ` W. Trevor King
2013-12-14 12:12     ` Brian Dolbec
2013-12-14 14:17   ` Dylan Baker [this message]
2013-12-14 16:42     ` Brian Dolbec
2013-12-14 23:57     ` W. Trevor King
2013-12-14  3:20 ` [gentoo-catalyst] [PATCH 2/4] move catalyst_support, builder, catalyst_lock out of modules, into the catalyst's base namespace Brian Dolbec
2013-12-14  3:20 ` [gentoo-catalyst] [PATCH 3/4] rename the modules subpkg to targets, it better reflects what it contains Brian Dolbec
2013-12-14  3:20 ` [gentoo-catalyst] [PATCH 4/4] rename files directory to etc to better reflect the directories contents Brian Dolbec
2013-12-15  4:39   ` W. Trevor King

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=44746063.ZggCSZXDZz@moiraine \
    --to=baker.dylan.c@gmail.com \
    --cc=dolsen@gentoo.org \
    --cc=gentoo-catalyst@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: link
Be 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