bash: apply all patches for current version and bump to 3.2.039.
--HG-- extra : convert_revision : 71bad58aac0268656be9ce48bace60ba8f573ea4
This commit is contained in:
parent
1e0ee707b4
commit
c1146599ee
@ -1,13 +1,13 @@
|
|||||||
# Template build file for 'bash'.
|
# Template build file for 'bash'.
|
||||||
pkgname=bash
|
pkgname=bash
|
||||||
version=3.2
|
# This matches current version + latest patchlevel
|
||||||
distfiles="http://ftp.gnu.org/pub/gnu/bash/$pkgname-$version.tar.gz"
|
bash_distver=3.2
|
||||||
|
version=$bash_distver.039
|
||||||
|
wrksrc=$pkgname-$bash_distver
|
||||||
|
distfiles="http://ftp.gnu.org/pub/gnu/bash/$pkgname-$bash_distver.tar.gz"
|
||||||
|
LD_LIBRARY_PATH="$XBPS_MASTERDIR/usr/lib"
|
||||||
build_style=gnu_configure
|
build_style=gnu_configure
|
||||||
configure_args="--enable-readline --enable-progcomp
|
configure_args="--without-bash-malloc --with-curses
|
||||||
--enable-process-substitution --enable-job-control --enable-history
|
|
||||||
--enable-help-builtin --enable-extended-glob --enable-dparen-arithmetic
|
|
||||||
--enable-directory-stack --enable-debugger --enable-cond-regexp
|
|
||||||
--enable-alias --enable-brace-expansion --enable-array-variables
|
|
||||||
--bindir=$XBPS_DESTDIR/$pkgname-$version/bin"
|
--bindir=$XBPS_DESTDIR/$pkgname-$version/bin"
|
||||||
short_desc="The GNU Bourne Again Shell"
|
short_desc="The GNU Bourne Again Shell"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
@ -28,6 +28,22 @@ base_chroot=yes
|
|||||||
build_depends="bison-2.3 ncurses-5.6"
|
build_depends="bison-2.3 ncurses-5.6"
|
||||||
run_depends="glibc-2.8 ncurses-5.3"
|
run_depends="glibc-2.8 ncurses-5.3"
|
||||||
|
|
||||||
|
pre_configure()
|
||||||
|
{
|
||||||
|
# Apply all patches for current (3.2) version.
|
||||||
|
local lpatch="039"
|
||||||
|
local URL="http://ftp.gnu.org/gnu/bash/bash-$version-patches"
|
||||||
|
|
||||||
|
for p in $(seq -w 001 $lpatch); do
|
||||||
|
if [ ! -f "$XBPS_SRCDISTDIR/bash32-$p" ]; then
|
||||||
|
msg_normal "Fetching $pkgname-$version patch: bash32-$p."
|
||||||
|
cd $XBPS_SRCDISTDIR && $fetch_cmd $URL/bash32-$p || bye 1
|
||||||
|
fi
|
||||||
|
msg_normal "Applying patch: bash32-$p."
|
||||||
|
cd $wrksrc && patch -s -p0 < $XBPS_SRCDISTDIR/bash32-$p || bye 1
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
post_install()
|
post_install()
|
||||||
{
|
{
|
||||||
# Make /bin/bash -> /bin/sh symlink.
|
# Make /bin/bash -> /bin/sh symlink.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user