Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 01/12] pkg-infra: move the git download helper to a script
Date: Wed, 02 Jul 2014 23:46:08 +0200	[thread overview]
Message-ID: <8738ejbfj3.fsf@dell.be.48ers.dk> (raw)
In-Reply-To: <73772dd5b41b1da81ce523981cdcf2189a7a33ba.1404335385.git.yann.morin.1998@free.fr> (Yann E. MORIN's message of "Wed, 2 Jul 2014 23:11:19 +0200")

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > The git download helper is getting a bit more complex. Fixing it in the
 > Makefile when it breaks (like the recent breakage with a non-existing
 > sha1-cset) proves to be challenging, to say the least.

 > Move it into a shell script in support/download/git, which will make
 > it much easier to read, maintain, fix and enhance in the future.

 > Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
 > Cc: Peter Korsgaard <jacmet@uclibc.org>
 > Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
 > Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
 > Cc: Arnout Vandecappelle <arnout@mind.be>
 > Reviewed-by: Samuel Martin <s.martin49@gmail.com>
 > Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

 > ---
 > Changes v9 -> v10:
 >   - use bash as shell  (Peter)
 > ---
 >  package/pkg-download.mk | 17 +++--------------
 >  support/download/git    | 37 +++++++++++++++++++++++++++++++++++++
 >  2 files changed, 40 insertions(+), 14 deletions(-)
 >  create mode 100755 support/download/git

 > diff --git a/package/pkg-download.mk b/package/pkg-download.mk
 > index e07fd1b..c848f6a 100644
 > --- a/package/pkg-download.mk
 > +++ b/package/pkg-download.mk
 > @@ -12,7 +12,7 @@ WGET := $(call qstrip,$(BR2_WGET)) $(QUIET)
 >  SVN := $(call qstrip,$(BR2_SVN))
 >  CVS := $(call qstrip,$(BR2_CVS))
 >  BZR := $(call qstrip,$(BR2_BZR))
 > -GIT := $(call qstrip,$(BR2_GIT))
 > +export GIT := $(call qstrip,$(BR2_GIT))
 >  HG := $(call qstrip,$(BR2_HG)) $(QUIET)
 >  SCP := $(call qstrip,$(BR2_SCP)) $(QUIET)
 >  SSH := $(call qstrip,$(BR2_SSH)) $(QUIET)
 > @@ -84,19 +84,8 @@ github = https://github.com/$(1)/$(2)/archive/$(3)
 >  # problems
 >  define DOWNLOAD_GIT
 >  	test -e $(DL_DIR)/$($(PKG)_SOURCE) || \
 > -	(pushd $(DL_DIR) > /dev/null && \
 > -	 ((test "`git ls-remote $($(PKG)_SITE) $($(PKG)_DL_VERSION)`" && \
 > -	   echo "Doing shallow clone" && \
 > -	   $(GIT) clone --depth 1 -b $($(PKG)_DL_VERSION) --bare $($(PKG)_SITE) $($(PKG)_BASE_NAME)) || \
 > -	  (echo "Doing full clone" && \
 > -	   $(GIT) clone --bare $($(PKG)_SITE) $($(PKG)_BASE_NAME))) && \
 > -	pushd $($(PKG)_BASE_NAME) > /dev/null && \
 > -	$(GIT) archive --format=tar --prefix=$($(PKG)_BASE_NAME)/ -o $(DL_DIR)/.$($(PKG)_SOURCE).tmp $($(PKG)_DL_VERSION) && \
 > -	gzip -c $(DL_DIR)/.$($(PKG)_SOURCE).tmp > $(DL_DIR)/$($(PKG)_SOURCE) && \
 > -	rm -f $(DL_DIR)/.$($(PKG)_SOURCE).tmp && \
 > -	popd > /dev/null && \
 > -	rm -rf $($(PKG)_DL_DIR) && \
 > -	popd > /dev/null)

[snip]

 > +pushd "${repodir}"
 > +${GIT} archive --prefix="${basename}/" -o "${output}.tmp" --format=tar "${cset}"
 > +gzip -c "${output}.tmp" >"${output}"
 > +rm -f "${output}.tmp"
 > +popd

Purely cosmetical, but the pushd / popd calls are mising >/dev/null, so
it is quite verbose:

make libuci-source
>>> libuci ed938cc8e423d4a33b8f31e6e6d1eb0805ae3d10 Downloading
Doing full clone
Cloning into bare repository '/var/lib/downloads/libuci-ed938cc8e423d4a33b8f31e6e6d1eb0805ae3d10'...
remote: Counting objects: 1826, done.
remote: Compressing objects: 100% (619/619), done.
remote: Total 1826 (delta 1205), reused 1798 (delta 1188)
Receiving objects: 100% (1826/1826), 302.48 KiB | 0 bytes/s, done.
Resolving deltas: 100% (1205/1205), done.
Checking connectivity... done.
/var/lib/downloads/libuci-ed938cc8e423d4a33b8f31e6e6d1eb0805ae3d10 ~/source/buildroot
~/source/buildroot

Committed with that fixed, thanks.

-- 
Bye, Peter Korsgaard

  reply	other threads:[~2014-07-02 21:46 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-02 21:11 [Buildroot] [PATCH 0/12 v10] Some download-related changes (branch yem/check-downloads) Yann E. MORIN
2014-07-02 21:11 ` [Buildroot] [PATCH 01/12] pkg-infra: move the git download helper to a script Yann E. MORIN
2014-07-02 21:46   ` Peter Korsgaard [this message]
2014-07-02 21:11 ` [Buildroot] [PATCH 02/12] pkg-infra: move the svn " Yann E. MORIN
2014-07-02 21:53   ` Peter Korsgaard
2014-07-02 21:11 ` [Buildroot] [PATCH 03/12] pkg-infra: move the cvs " Yann E. MORIN
2014-07-02 21:58   ` Peter Korsgaard
2014-07-02 21:11 ` [Buildroot] [PATCH 04/12] pkg-infra: move the hg " Yann E. MORIN
2014-07-02 22:00   ` Peter Korsgaard
2014-07-02 21:11 ` [Buildroot] [PATCH 05/12] pkg-infra: move the wget " Yann E. MORIN
2014-07-02 22:03   ` Peter Korsgaard
2014-07-02 21:11 ` [Buildroot] [PATCH 06/12] pkg-infra: move the bzr " Yann E. MORIN
2014-07-02 22:06   ` Peter Korsgaard
2014-07-02 21:11 ` [Buildroot] [PATCH 07/12] pkg-infra: move the scp " Yann E. MORIN
2014-07-02 22:07   ` Peter Korsgaard
2014-07-02 21:11 ` [Buildroot] [PATCH 08/12] pkg-infra: move the cp (aka localfiles) " Yann E. MORIN
2014-07-02 22:08   ` Peter Korsgaard
2014-07-02 21:11 ` [Buildroot] [PATCH 09/12] pkg-infra: don't use DL_DIR as scratchpad for temporary downloads Yann E. MORIN
2014-07-02 21:11 ` [Buildroot] [PATCH 10/12] pkg-infra: add possiblity to check downloaded files against known hashes Yann E. MORIN
2014-07-02 21:11 ` [Buildroot] [PATCH 11/12] manual: add documentation about packages' hashes Yann E. MORIN
2014-07-02 21:11 ` [Buildroot] [PATCH 12/12] package/ca-certificates: add tarball's hashes Yann E. MORIN

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=8738ejbfj3.fsf@dell.be.48ers.dk \
    --to=jacmet@uclibc.org \
    --cc=buildroot@busybox.net \
    /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