From: Fam Zheng <famz@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PULL v2 10/37] scripts: Add archive-source.sh
Date: Sat, 9 Sep 2017 23:07:10 +0800 [thread overview]
Message-ID: <20170909150710.GA29670@lemon.lan> (raw)
In-Reply-To: <CAFEAcA83JDUMAsCAY=YBL+qS8A1n6VMfH1p_DAmouF0W8m-j9g@mail.gmail.com>
On Sat, 09/09 13:07, Peter Maydell wrote:
> On 9 September 2017 at 06:45, Fam Zheng <famz@redhat.com> wrote:
> > Signed-off-by: Fam Zheng <famz@redhat.com>
> > Message-Id: <20170905021201.25684-4-famz@redhat.com>
> > ---
> > scripts/archive-source.sh | 31 +++++++++++++++++++++++++++++++
> > 1 file changed, 31 insertions(+)
> > create mode 100755 scripts/archive-source.sh
> >
> > diff --git a/scripts/archive-source.sh b/scripts/archive-source.sh
> > new file mode 100755
> > index 0000000000..1de369532e
> > --- /dev/null
> > +++ b/scripts/archive-source.sh
> > @@ -0,0 +1,31 @@
> > +#!/bin/sh
> > +#
> > +# Author: Fam Zheng <famz@redhat.com>
> > +#
> > +# Create archive of source tree, including submodules
> > +#
> > +# This code is licensed under the GPL version 2 or later. See
> > +# the COPYING file in the top-level directory.
>
> So is this the script that for instance Mike Roth would use
> to create the release tarballs? If it isn't, should it be?
I don't know the workflow of release tarballs, there is ./scripts/make-release
for that. So this one is not.
> Is it intended for end users to create tarballs with, or
> is it really just a helper script for the docker stuff?
> If the latter, it would be helpful to say so. If the former,
> it could really use more usage information/documentation...
I'm not sure what end users would use this for, but it should do its work just
the same.. What kind of usage information do you suggest? More explaination in
the header, or in the "usage" output when no target is specified, or a "-h"
option for help?
>
> > +
> > +set -e
> > +
> > +if test $# -lt 1; then
> > + echo "Usage: $0 <output>"
> > + exit 1
> > +fi
> > +
> > +submodules=$(git submodule foreach --recursive --quiet 'echo $name')
> > +
> > +if test -n "$submodules"; then
> > + {
> > + git ls-files
> > + for sm in $submodules; do
> > + (cd $sm; git ls-files) | sed "s:^:$sm/:"
> > + done
> > + } | grep -x -v $(for sm in $submodules; do echo "-e $sm"; done) > $1.list
>
> Supporting '-e something' in a tar -T listfile seems to
> be GNU tar specific. Do we care?
The "-e $sm" will go to the grep command line, so it isn't GNU specific, is it?
>
> > +else
> > + git ls-files > $1.list
> > +fi
>
> This will blow up if we ever have a file in the repo
> that starts with a '-'. Do we care?
I'm sure such a file will be a trouble, but I'd rather we deal with it when
there is one: I don't think anyone will think about adding, or welcome such a
file.
>
> > +
> > +tar -cf $1 -T $1.list
> > +rm $1.list
>
> This is missing a lot of quoting for $1, so it will go wrong
> if there's a space in that filename argument.
Yes, good point. I will fix it before sending another pull request along with
other comments that are just raised.
Fam
next prev parent reply other threads:[~2017-09-09 15:07 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-09 5:45 [Qemu-devel] [PULL v2 00/37] Staging patches Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 01/37] docker: ensure NOUSER for travis images Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 02/37] docker: docker.py make --no-cache skip checksum test Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 03/37] docker: don't install device-tree-compiler build-deps in travis.docker Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 04/37] docker: reduce noise when building travis.docker Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 05/37] docker: Update ubuntu image Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 06/37] docker: Enable features explicitly in test-full Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 07/37] tests/docker: Clean up paths Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 08/37] gitignore: Ignore vm test images Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 09/37] qemu.py: Add "wait()" method Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 10/37] scripts: Add archive-source.sh Fam Zheng
2017-09-09 12:07 ` Peter Maydell
2017-09-09 15:07 ` Fam Zheng [this message]
2017-09-09 15:08 ` Kamil Rytarowski
2017-09-10 2:05 ` Fam Zheng
2017-09-10 10:15 ` Kamil Rytarowski
2017-09-09 18:38 ` Peter Maydell
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 11/37] tests: Add vm test lib Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 12/37] tests: Add ubuntu.i386 image Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 13/37] tests: Add FreeBSD image Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 14/37] tests: Add NetBSD image Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 15/37] tests: Add OpenBSD image Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 16/37] Makefile: Add rules to run vm tests Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 17/37] MAINTAINERS: Add tests/vm entry Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 18/37] tests: Add README for vm tests Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 19/37] docker: Use archive-source.py Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 20/37] docker: Fix return code of build_qemu() Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 21/37] docker: Add test_fail and prep_fail Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 22/37] docker: Use unconfined security profile Fam Zheng
2017-09-09 5:45 ` [Qemu-devel] [PULL v2 23/37] docker: Add nettle-devel to fedora image Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 24/37] docker: Add test-block Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 25/37] docker: Drop 'set -e' from run script Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 26/37] vl: Don't include vde header Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 27/37] buildsys: Move vde libs to per object Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 28/37] buildsys: Move gtk/vte cflags/libs " Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 29/37] buildsys: Move sdl " Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 30/37] buildsys: Move vnc " Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 31/37] buildsys: Move audio libs " Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 32/37] buildsys: Move curese cflags/libs " Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 33/37] buildsys: Move libcacard " Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 34/37] buildsys: Move libusb " Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 35/37] buildsys: Move usb redir " Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 36/37] buildsys: Move brlapi libs " Fam Zheng
2017-09-09 5:46 ` [Qemu-devel] [PULL v2 37/37] buildsys: Move rdma " Fam Zheng
2017-09-09 6:14 ` [Qemu-devel] [PULL v2 00/37] Staging patches no-reply
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=20170909150710.GA29670@lemon.lan \
--to=famz@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.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.