bash: update to 4.3 patch level 008.
This commit is contained in:
parent
40662e5e00
commit
f8e45c8de0
1 changed files with 7 additions and 5 deletions
|
@ -1,9 +1,9 @@
|
||||||
# Template build file for 'bash'.
|
# Template build file for 'bash'.
|
||||||
pkgname=bash
|
pkgname=bash
|
||||||
_bash_distver=4.3
|
_bash_distver=4.3
|
||||||
_bash_patchlevel=000
|
_bash_patchlevel=008
|
||||||
version=${_bash_distver}.${_bash_patchlevel}
|
version=${_bash_distver}.${_bash_patchlevel}
|
||||||
revision=3
|
revision=1
|
||||||
wrksrc=${pkgname}-${_bash_distver}
|
wrksrc=${pkgname}-${_bash_distver}
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--without-bash-malloc --with-curses --with-installed-readline"
|
configure_args="--without-bash-malloc --with-curses --with-installed-readline"
|
||||||
|
@ -22,17 +22,19 @@ pre_configure() {
|
||||||
local url="http://ftp.gnu.org/gnu/bash/bash-${_bash_distver}-patches"
|
local url="http://ftp.gnu.org/gnu/bash/bash-${_bash_distver}-patches"
|
||||||
local ver=$(echo ${_bash_distver}|sed "s|\.||g")
|
local ver=$(echo ${_bash_distver}|sed "s|\.||g")
|
||||||
|
|
||||||
|
cd ${XBPS_SRCDISTDIR}/${pkgname}-${version}
|
||||||
if [ "${_bash_patchlevel}" -gt 000 ]; then
|
if [ "${_bash_patchlevel}" -gt 000 ]; then
|
||||||
cd ${XBPS_SRCDISTDIR} || return 1
|
|
||||||
for p in $(seq -w 001 ${_bash_patchlevel}); do
|
for p in $(seq -w 001 ${_bash_patchlevel}); do
|
||||||
[ -f ${XBPS_SRCDISTDIR}/bash${ver}-${p} ] && continue
|
if [ -f bash${ver}-${p} ]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
msg_normal " Fetching ${url}/bash${ver}-$p ...\n"
|
msg_normal " Fetching ${url}/bash${ver}-$p ...\n"
|
||||||
$XBPS_FETCH_CMD ${url}/bash${ver}-$p
|
$XBPS_FETCH_CMD ${url}/bash${ver}-$p
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
cd ${wrksrc}
|
cd ${wrksrc}
|
||||||
for p in $(seq -w 001 ${_bash_patchlevel}); do
|
for p in $(seq -w 001 ${_bash_patchlevel}); do
|
||||||
patch -s -Np0 -i ${XBPS_SRCDISTDIR}/bash${ver}-${p} && \
|
patch -s -Np0 -i ${XBPS_SRCDISTDIR}/${pkgname}-${version}/bash${ver}-${p} && \
|
||||||
msg_normal " Applying patch bash${ver}-$p.\n"
|
msg_normal " Applying patch bash${ver}-$p.\n"
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue