All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/5] dash: bump to version 0.5.8-1
Date: Wed, 08 Oct 2014 19:27:09 +0200	[thread overview]
Message-ID: <87eguieaky.fsf@dell.be.48ers.dk> (raw)
In-Reply-To: <1412774389-11297-1-git-send-email-gustavo@zacarias.com.ar> (Gustavo Zacarias's message of "Wed, 8 Oct 2014 10:19:45 -0300")

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Add hash file, make the /bin/sh -> dash symlink and build after busybox and
 > use $(INSTALL) instead of cp for proper mode handling.

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
 > ---
 >  ...r-helpers.patch => dash-0001-no-config.h-for-helpers.patch} |  0
 >  package/dash/dash.hash                                         |  3 +++
 >  package/dash/dash.mk                                           | 10 +++++++---
 >  3 files changed, 10 insertions(+), 3 deletions(-)
 >  rename package/dash/{dash-0.5.7-no-config.h-for-helpers.patch => dash-0001-no-config.h-for-helpers.patch} (100%)
 >  create mode 100644 package/dash/dash.hash

 > diff --git a/package/dash/dash-0.5.7-no-config.h-for-helpers.patch b/package/dash/dash-0001-no-config.h-for-helpers.patch
 > similarity index 100%
 > rename from package/dash/dash-0.5.7-no-config.h-for-helpers.patch
 > rename to package/dash/dash-0001-no-config.h-for-helpers.patch
 > diff --git a/package/dash/dash.hash b/package/dash/dash.hash
 > new file mode 100644
 > index 0000000..0198cd8
 > --- /dev/null
 > +++ b/package/dash/dash.hash
 > @@ -0,0 +1,3 @@
 > +# From http://ftp.debian.org/debian/pool/main/d/dash/dash_0.5.8-1.dsc
 > +sha256	c6db3a237747b02d20382a761397563d813b306c020ae28ce25a1c3915fac60f	dash_0.5.8.orig.tar.gz
 > +sha256	d751769cc1ef8b825a177e782f1cd3e35bde7c268107fa4febf8d235e12c64d9	dash_0.5.8-1.diff.gz
 > diff --git a/package/dash/dash.mk b/package/dash/dash.mk
 > index 5bc0835..cc71337 100644
 > --- a/package/dash/dash.mk
 > +++ b/package/dash/dash.mk
 > @@ -4,15 +4,19 @@
 >  #
 >  ################################################################################
 
 > -DASH_VERSION = 0.5.7
 > +DASH_VERSION = 0.5.8
 >  DASH_SOURCE = dash_$(DASH_VERSION).orig.tar.gz
 >  DASH_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/d/dash
 > -DASH_PATCH = dash_$(DASH_VERSION)-3.diff.gz
 > +DASH_PATCH = dash_$(DASH_VERSION)-1.diff.gz
 > +# Build after since dash is better than busybox shells
 > +DASH_DEPENDENCIES = $(if $(BR2_PACKAGE_BUSYBOX),busybox)
 >  DASH_LICENSE = BSD-3c, GPLv2+ (mksignames.c)
 >  DASH_LICENSE_FILES = COPYING
 
 > +# Make /bin/sh -> dash (no other shell, better than busybox shells)
 >  define DASH_INSTALL_TARGET_CMDS
 > -	cp -a $(@D)/src/dash $(TARGET_DIR)/bin/dash
 > +	$(INSTALL) -m 0755 $(@D)/src/dash $(TARGET_DIR)/bin/dash
 > +	ln -sf dash $(TARGET_DIR)/bin/sh

So what about bash? Which one should "win"? bash?

-- 
Bye, Peter Korsgaard

  parent reply	other threads:[~2014-10-08 17:27 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-08 13:19 [Buildroot] [PATCH 1/5] dash: bump to version 0.5.8-1 Gustavo Zacarias
2014-10-08 13:19 ` [Buildroot] [PATCH 2/5] zsh: security bump to version 5.0.7 Gustavo Zacarias
     [not found]   ` <87a956eadv.fsf@dell.be.48ers.dk>
2014-10-08 17:36     ` Gustavo Zacarias
2014-10-08 18:42       ` Peter Korsgaard
2014-10-12 10:50   ` Peter Korsgaard
2014-10-08 13:19 ` [Buildroot] [PATCH 3/5] bash: minor install tweaks Gustavo Zacarias
2014-10-08 17:32   ` Peter Korsgaard
2014-10-08 13:19 ` [Buildroot] [PATCH 4/5] procps-ng: bump to version 3.3.10 Gustavo Zacarias
2014-10-08 17:32   ` Peter Korsgaard
2014-10-08 13:19 ` [Buildroot] [PATCH 5/5] sysklogd: security bump to version 1.5.1 Gustavo Zacarias
2014-10-08 17:36   ` Peter Korsgaard
2014-10-08 17:27 ` Peter Korsgaard [this message]
2014-10-08 17:29   ` [Buildroot] [PATCH 1/5] dash: bump to version 0.5.8-1 Gustavo Zacarias
2014-10-08 18:05     ` Peter Korsgaard
2014-10-08 18:21       ` Gustavo Zacarias
2014-10-08 18:46         ` Peter Korsgaard
2014-10-08 19:16           ` Gustavo Zacarias
2014-10-11 14:28             ` Arnout Vandecappelle
2014-10-12 10:50 ` Peter Korsgaard

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=87eguieaky.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 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.