Commit c3bf16f8 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

zsh: security bump to version 5.0.7



Fixes shellshock-alike exploits.

Install binary to /bin as all shells should be and add hash file.

[Peter: drop /bin/sh handling as we're going to handle it globally]
Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 9a0990c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8,4 +8,4 @@ config BR2_PACKAGE_ZSH
	  ksh, and tcsh were incorporated into zsh; many original features
	  were added.

	  http://zsh.sourceforge.net/
	  http://www.zsh.org/

package/zsh/zsh.hash

0 → 100644
+2 −0
Original line number Diff line number Diff line
# From http://www.zsh.org/pub/MD5SUM
md5	76726ff50309e628de670476e0508b3a	zsh-5.0.7.tar.gz
+10 −3
Original line number Diff line number Diff line
@@ -4,10 +4,17 @@
#
################################################################################

ZSH_VERSION = 5.0.6
ZSH_SITE = http://downloads.sourceforge.net/project/zsh/zsh/$(ZSH_VERSION)
ZSH_VERSION = 5.0.7
ZSH_SITE = http://www.zsh.org/pub
ZSH_DEPENDENCIES = ncurses
ZSH_CONF_OPTS = --bindir=/bin
ZSH_LICENSE = MIT-like
ZSH_LICENSE_FILES = LICENCE
ZSH_DEPENDENCIES = ncurses

# Remove versioned zsh-x.y.z binary taking up space
define ZSH_TARGET_INSTALL_FIXUPS
	rm -f $(TARGET_DIR)/bin/zsh-$(ZSH_VERSION)
endef
ZSH_POST_INSTALL_TARGET_HOOKS += ZSH_TARGET_INSTALL_FIXUPS

$(eval $(autotools-package))