All of lore.kernel.org
 help / color / mirror / Atom feed
From: Petr Vorel <pvorel@suse.cz>
To: Daniel Kiper <daniel.kiper@oracle.com>
Cc: grub-devel@gnu.org
Subject: Re: [PATCH 2/2] autogen.sh: Detect python
Date: Wed, 18 Aug 2021 09:07:49 +0200	[thread overview]
Message-ID: <YRyxxZtY3zM+dMe3@pevik> (raw)
In-Reply-To: <20210809115229.toe34etovoul62ss@tomti.i.net-space.pl>

Hi Daniel,

sorry for longer time to reply (vacation).

> On Fri, Aug 06, 2021 at 08:45:08AM +0200, Petr Vorel wrote:
> > It help to avoid error on distros which has only python3 binary:
> > ./autogen.sh: line 20: python: command not found

> > Using bash builtin 'command -v' to avoid requiring which as extra
> > dependency (usable on containers).
command -v is supported in other common shells (busybox sh and dash),
I'll add it to the commit message.
IMHO it's non-POSIX extension, but because it's support we use it in LTP shell
API, where we expect very minimal shell tools (i.e. no bash, no core utils).

> It looks the bash dependency is not specified in the INSTALL file in
> "The Requirements" section. May I ask you to add it?
Due previous and the fact shebang in various scripts (bootstrap, geninit.sh,
docs/mdate-sh, grub-core/genemuinit.sh, ...) is /bin/sh and checkbashisms does
not complain it would be wrong to list bash as a dependency. IMHO Debian build
tools which use dash do not need any special patch (Colin Watson would know),
also Alpine which uses busybox sh does need any patch either.


> > Keep the possibility to define PYTHON.

> > Signed-off-by: Petr Vorel <pvorel@suse.cz>
> > ---
> >  autogen.sh | 17 +++++++++++++++--
> >  1 file changed, 15 insertions(+), 2 deletions(-)

> > diff --git a/autogen.sh b/autogen.sh
> > index 31b0ced7e..46f9e1a6d 100755
> > --- a/autogen.sh
> > +++ b/autogen.sh
> > @@ -7,8 +7,21 @@ if [ ! -e grub-core/lib/gnulib/stdlib.in.h ]; then
> >    exit 1
> >  fi

> > -# Set ${PYTHON} to plain 'python' if not set already
> > -: ${PYTHON:=python}
> > +# Detect python
> > +if [ -z "$PYTHON" ]; then
> > +	for i in python python3 python2; do

> May I ask you to use (multiple of) 2 space indention as it is done in
> most of this file?
Sure, sorry to overlook it.

> > +		if command -v "$i" > /dev/null 2>&1; then

> Ditto and below please...
Sure.

> > +			PYTHON="$i"
> > +			echo "Using $PYTHON" >&2

> Please drop ">&2" redirection here.
IMHO there is no useful value for user to see "python not found", but no problem
to drop it.

> And I think it should be "Using $PYTHON...".
Sure.

> > +			break
> > +		fi
> > +	done
> > +
> > +	if [ -z "$PYTHON" ]; then
> > +		echo "python not found" >&2

> s/found/found./
Sure.

Kind regards,
Petr

> > +		exit 1
> > +	fi
> > +fi

> Daniel


  parent reply	other threads:[~2021-08-18  7:08 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-06  6:45 [PATCH 1/2] bootstrap: Require patch Petr Vorel
2021-08-06  6:45 ` [PATCH 2/2] autogen.sh: Detect python Petr Vorel
2021-08-09 11:52   ` Daniel Kiper
2021-08-09 16:36     ` Daniel Kiper
2021-08-18  7:19       ` Petr Vorel
2021-08-18 16:04         ` Bruce Dubbs
2021-08-26 14:34           ` Daniel Kiper
2021-08-26 14:30         ` Daniel Kiper
2021-08-30  9:34           ` Petr Vorel
2021-08-18  7:07     ` Petr Vorel [this message]
2021-08-18  7:38       ` Petr Vorel
2021-08-26 14:37         ` Daniel Kiper
2021-08-18 16:58   ` Dimitri John Ledkov
2021-08-18 17:51     ` Petr Vorel
2021-08-18 17:54       ` Dimitri John Ledkov
2021-08-09 11:20 ` [PATCH 1/2] bootstrap: Require patch Daniel Kiper

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=YRyxxZtY3zM+dMe3@pevik \
    --to=pvorel@suse.cz \
    --cc=daniel.kiper@oracle.com \
    --cc=grub-devel@gnu.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.