From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 0/12 v7] Some download-related changes (branch yem/check-downloads)
Date: Tue, 10 Jun 2014 22:08:31 +0200 [thread overview]
Message-ID: <20140610200831.GC3561@free.fr> (raw)
In-Reply-To: <CAAXf6LWP75NohFWXmHU4o4xh4jnDJZqe6_9+rpyN1+zeumnqrw@mail.gmail.com>
Thomas DS, All,
On 2014-06-10 21:44 +0200, Thomas De Schampheleire spake thusly:
> On Sun, Jun 8, 2014 at 10:43 PM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> [..]
> > Yann E. MORIN (12):
> > Makefile: add BR2_DL_DIR to EXTRA_ENV
> > pkg-infra: also set PKGDIR for the download step
> > pkg-infra: move the git download helper to a script
> > pkg-infra: move the svn download helper to a script
> > pkg-infra: move the cvs download helper to a script
> > pkg-infra: move the hg download helper to a script
> > pkg-infra: move the wget download helper to a script
> > pkg-infra: move the bzr download helper to a script
> > pkg-infra: don't use DL_DIR as scratchpad for temporary downloads
> > pkg-infra: add possiblity to check downloaded files against known hashes
> > manual: add documentation about packages' hashes
> > package/ca-certificates: add tarball's hashes
> >
> > docs/manual/adding-packages-directory.txt | 66 ++++++++++++++++++++++
> > package/Makefile.in | 1 +
> > package/ca-certificates/ca-certificates.hash | 3 +
> > package/pkg-download.mk | 83 ++++++++++++----------------
> > package/pkg-generic.mk | 1 +
> > support/download/bzr | 34 ++++++++++++
> > support/download/check-hash | 77 ++++++++++++++++++++++++++
> > support/download/cvs | 40 ++++++++++++++
> > support/download/git | 50 +++++++++++++++++
> > support/download/hg | 38 +++++++++++++
> > support/download/svn | 37 +++++++++++++
> > support/download/wget | 32 +++++++++++
> > 12 files changed, 413 insertions(+), 49 deletions(-)
> > create mode 100644 package/ca-certificates/ca-certificates.hash
> > create mode 100755 support/download/bzr
> > create mode 100755 support/download/check-hash
> > create mode 100755 support/download/cvs
> > create mode 100755 support/download/git
> > create mode 100755 support/download/hg
> > create mode 100755 support/download/svn
> > create mode 100755 support/download/wget
>
> Is there any particular reason why the scp and localfiles method was
> not split to a separate file like the others?
> One could think this is because they are oneliners, but so is the bzr method...
There's no real reason. Initially, the series was to check the download
hashes; it then spiraled out to englobe the helper scripts, but still
with the ultimate goal of checking the hashes.
So I was, like, is there a reason to check hashes of locally or
scp-retrieved packages? My own answer was, no, there's no reason.
But I don;t mind converting them, of course. It's just it was not the
initial goal of the series, so I overlookjed them.
But in retrospect, we should convert them, if at least to handle the
multiple downloads in parallel and avoiding two builds to step on each
others' feet...
I'll do.
PS. Thanks for the other review, too, I'll fix. :-)
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
next prev parent reply other threads:[~2014-06-10 20:08 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-08 20:43 [Buildroot] [PATCH 0/12 v7] Some download-related changes (branch yem/check-downloads) Yann E. MORIN
2014-06-08 20:43 ` [Buildroot] [PATCH 01/12] Makefile: add BR2_DL_DIR to EXTRA_ENV Yann E. MORIN
2014-06-08 20:43 ` [Buildroot] [PATCH 02/12] pkg-infra: also set PKGDIR for the download step Yann E. MORIN
2014-06-08 20:43 ` [Buildroot] [PATCH 03/12] pkg-infra: move the git download helper to a script Yann E. MORIN
2014-06-08 20:43 ` [Buildroot] [PATCH 04/12] pkg-infra: move the svn " Yann E. MORIN
2014-06-08 20:43 ` [Buildroot] [PATCH 05/12] pkg-infra: move the cvs " Yann E. MORIN
2014-06-08 20:43 ` [Buildroot] [PATCH 06/12] pkg-infra: move the hg " Yann E. MORIN
2014-06-12 6:50 ` Thomas De Schampheleire
2014-06-08 20:43 ` [Buildroot] [PATCH 07/12] pkg-infra: move the wget " Yann E. MORIN
2014-06-08 20:43 ` [Buildroot] [PATCH 08/12] pkg-infra: move the bzr " Yann E. MORIN
2014-06-08 20:43 ` [Buildroot] [PATCH 09/12] pkg-infra: don't use DL_DIR as scratchpad for temporary downloads Yann E. MORIN
2014-06-12 6:53 ` Thomas De Schampheleire
2014-06-08 20:43 ` [Buildroot] [PATCH 10/12] pkg-infra: add possiblity to check downloaded files against known hashes Yann E. MORIN
2014-06-10 19:42 ` Thomas De Schampheleire
2014-06-08 20:43 ` [Buildroot] [PATCH 11/12] manual: add documentation about packages' hashes Yann E. MORIN
2014-06-08 20:43 ` [Buildroot] [PATCH 12/12] package/ca-certificates: add tarball's hashes Yann E. MORIN
2014-06-10 19:44 ` [Buildroot] [PATCH 0/12 v7] Some download-related changes (branch yem/check-downloads) Thomas De Schampheleire
2014-06-10 20:08 ` Yann E. MORIN [this message]
2014-06-10 21:41 ` Yann E. MORIN
2014-06-13 17:09 ` 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=20140610200831.GC3561@free.fr \
--to=yann.morin.1998@free.fr \
--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