From: "Michał Górny" <mgorny@gentoo.org>
To: Mike Gilbert <floppym@gentoo.org>
Cc: gentoo-python <gentoo-python@lists.gentoo.org>,
Gentoo Python Project <python@gentoo.org>
Subject: Re: [gentoo-python] Re: [PATCH 2/8] Clean up python_replicate_script().
Date: Sun, 15 Sep 2013 19:36:02 +0200 [thread overview]
Message-ID: <20130915193602.14410f76@gentoo.org> (raw)
In-Reply-To: <CAJ0EP40gOhwjZzSom1YBaX+5V-RZoKwyBL_PnuHJWZPmSV5SYw@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2072 bytes --]
Dnia 2013-09-15, o godz. 13:11:21
Mike Gilbert <floppym@gentoo.org> napisał(a):
> On Fri, Sep 13, 2013 at 2:58 PM, Michał Górny <mgorny@gentoo.org> wrote:
> > ---
> > gx86/eclass/python-r1.eclass | 30 ++++++++++++------------------
> > 1 file changed, 12 insertions(+), 18 deletions(-)
> >
> > diff --git a/gx86/eclass/python-r1.eclass b/gx86/eclass/python-r1.eclass
> > index 6994952..e006744 100644
> > --- a/gx86/eclass/python-r1.eclass
> > +++ b/gx86/eclass/python-r1.eclass
> > @@ -741,28 +741,22 @@ python_export_best() {
> > python_replicate_script() {
> > debug-print-function ${FUNCNAME} "${@}"
> >
> > - local suffixes=()
> > -
> > - _add_suffix() {
> > - suffixes+=( "${EPYTHON}" )
> > - }
> > - python_foreach_impl _add_suffix
> > - debug-print "${FUNCNAME}: suffixes = ( ${suffixes[@]} )"
> > -
> > - local f suffix
> > - for suffix in "${suffixes[@]}"; do
> > - for f; do
> > - local newf=${f}-${suffix}
> > -
> > - debug-print "${FUNCNAME}: ${f} -> ${newf}"
> > - cp "${f}" "${newf}" || die
> > + _python_replicate_script() {
> > + local f
> > + for f in "${files[@]}"; do
> > + cp -p "${f}" "${f}-${EPYTHON}" || die
> > done
> > + _python_rewrite_shebang "${EPYTHON}" \
> > + "${files[@]/%/-${EPYTHON}}"
> > + }
> >
> > - _python_rewrite_shebang "${suffix}" "${@/%/-${suffix}}"
> > - done
> > + local files=( "${@}" )
> > + python_foreach_impl _python_replicate_script
>
> Why are we creating a new array variable here? Why not just pass $@ to
> _python_replicate script as arguments?
It's because python_foreach_impl likes to verbose and prints "${@}"
starting with first non-underline arg. Passing files out-of-argv
is the simplest way of avoiding verbose output.
--
Best regards,
Michał Górny
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 966 bytes --]
next prev parent reply other threads:[~2013-09-15 17:37 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-13 18:58 [gentoo-python] Clean up of python eclasses and support for python-exec:2 Michał Górny
2013-09-13 18:58 ` [gentoo-python] [PATCH 1/8] Add PYTHON_SCRIPTDIR for script installation path Michał Górny
2013-09-13 18:58 ` [gentoo-python] [PATCH 2/8] Clean up python_replicate_script() Michał Górny
2013-09-15 17:11 ` [gentoo-python] " Mike Gilbert
2013-09-15 17:36 ` Michał Górny [this message]
2013-09-13 18:58 ` [gentoo-python] [PATCH 3/8] Clean up python_newscript() Michał Górny
2013-09-13 18:58 ` [gentoo-python] [PATCH 4/8] distutils-r1: rework script install/wrapping Michał Górny
2013-09-13 18:58 ` [gentoo-python] [PATCH 5/8] distutils-r1: disable sub-root merging Michał Górny
2013-09-14 22:16 ` [gentoo-python] " Mike Gilbert
2013-09-14 22:38 ` Michał Górny
2013-09-14 23:33 ` Mike Gilbert
2013-09-15 9:04 ` Michał Górny
2013-09-13 18:58 ` [gentoo-python] [PATCH 6/8] _distutils-r1_wrap_scripts(): do not pass root path explicitly Michał Górny
2013-09-13 18:58 ` [gentoo-python] [PATCH 7/8] Replace _python_ln_rel() with _python_symlink_wrapper() Michał Górny
2013-09-15 17:27 ` [gentoo-python] " Mike Gilbert
2013-09-13 18:58 ` [gentoo-python] [PATCH 8/8] Support python-exec:2 Michał Górny
2013-09-15 9:03 ` [gentoo-python] Clean up of python eclasses and support for python-exec:2, r2 Michał Górny
2013-09-15 9:03 ` [gentoo-python] [PATCH 1/2] distutils-r1: clean up script install/wrapping Michał Górny
2013-09-15 9:03 ` [gentoo-python] [PATCH 2/2] Support python-exec:2 Michał Górny
2013-09-15 9:29 ` Michał Górny
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=20130915193602.14410f76@gentoo.org \
--to=mgorny@gentoo.org \
--cc=floppym@gentoo.org \
--cc=gentoo-python@lists.gentoo.org \
--cc=python@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