wok annotate bash/receipt @ rev 18481

bash: post_install() not [ fails ] when you refuse to make bash default
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Oct 08 04:06:36 2015 +0300 (2015-10-08)
parents 303e73fdfb01
children 338c34110bab
rev   line source
pankso@14 1 # SliTaz package receipt.
pankso@14 2
pankso@14 3 PACKAGE="bash"
devl547@18343 4 VERSION="4.3.42"
pascal@17197 5 BASEVERSION="${VERSION%.*}"
pankso@202 6 CATEGORY="system-tools"
pankso@14 7 SHORT_DESC="The GNU bourne SHell."
pankso@14 8 MAINTAINER="pankso@slitaz.org"
pascal@15201 9 LICENSE="GPL3"
pascal@17197 10 TARBALL="$PACKAGE-$BASEVERSION.tar.gz"
pankso@14 11 WEB_SITE="http://www.gnu.org/software/bash/"
pankso@14 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@17195 13 BASHCHECKURL="https://raw.githubusercontent.com/hannob/bashcheck/master/bashcheck"
pascal@17195 14 BASHCHECK="$(basename $BASHCHECKURL)"
pascal@17197 15 BASHPATCHES="$(for i in $(seq 1 ${VERSION##*.}); do printf "bash${BASEVERSION/./}-%03d " $i; done)"
pascal@17195 16 EXTRA_SOURCE_FILES="$BASHCHECK $BASHPATCHES"
al@18466 17 TAGS="shell"
pankso@14 18
slaxemulator@10407 19 DEPENDS="readline"
pascal@17195 20 BUILD_DEPENDS="readline bison wget texinfo"
pascal@17195 21
pascal@17195 22 patch_bash()
pascal@17195 23 {
pascal@17195 24 for i in $BASHPATCHES ; do
pascal@17195 25 [ -s "$SOURCES_REPOSITORY/$i" ] ||
pascal@17195 26 wget -O "$SOURCES_REPOSITORY/$i" \
pascal@17197 27 http://ftp.gnu.org/gnu/bash/bash-$BASEVERSION-patches/$i
pascal@17195 28 echo "Apply $i ..."
pascal@17195 29 patch -p0 < $SOURCES_REPOSITORY/$i
pascal@17195 30 done
pascal@17195 31 }
slaxemulator@10407 32
gokhlayeh@8171 33 # Rules to compile & install the temporary toolchain.
gokhlayeh@8171 34 cook_tmp_toolchain()
gokhlayeh@8171 35 {
gokhlayeh@8171 36 cd $src
pascal@17195 37 patch_bash
gokhlayeh@8171 38 ./configure --without-bash-malloc &&
gokhlayeh@8171 39 make && make install
gokhlayeh@8171 40 }
gokhlayeh@8171 41
pankso@14 42 # Rules to configure and make the package.
pankso@14 43 compile_rules()
pankso@14 44 {
pankso@14 45 # Patch and then build.
pankso@14 46 cd $src
pascal@17195 47 patch_bash
pankso@10352 48 # Skip tests that can not run while cross-compiling.
pankso@10352 49 cat > config.cache << "EOF"
pankso@10352 50 ac_cv_func_mmap_fixed_mapped=yes
pankso@10352 51 ac_cv_func_strcoll_works=yes
pankso@10352 52 ac_cv_func_working_mktime=yes
pankso@10352 53 bash_cv_func_sigsetjmp=present
pankso@10352 54 bash_cv_getcwd_malloc=yes
pankso@10352 55 bash_cv_job_control_missing=present
pankso@10352 56 bash_cv_printf_a_format=yes
pankso@10352 57 bash_cv_sys_named_pipes=present
pankso@10352 58 bash_cv_ulimit_maxfds=yes
pankso@10352 59 bash_cv_under_sys_siglist=yes
pankso@10352 60 bash_cv_unusable_rtsigs=no
pankso@10352 61 gt_cv_int_divbyzero_sigfpe=yes
pankso@10352 62 EOF
pankso@10344 63 ./configure \
pankso@10352 64 $CONFIGURE_ARGS \
pankso@10352 65 --cache-file=config.cache \
pankso@10344 66 --bindir=/bin \
gokhlayeh@8171 67 --enable-history --enable-alias \
gokhlayeh@8171 68 --disable-nls --without-bash-malloc \
pankso@10344 69 --disable-help-builtin \
pankso@10344 70 --with-installed-readline &&
pascal@1553 71 make &&
gokhlayeh@8171 72 # Bash doesn't care about DESTDIR in environnment variable.
gokhlayeh@8171 73 make DESTDIR=$DESTDIR install
pascal@17195 74 [ -s "$SOURCES_REPOSITORY/$BASHCHECK" ] ||
pascal@17195 75 wget --no-check-certificate -O "$SOURCES_REPOSITORY/$BASHCHECK" $BASHCHECKURL
pascal@17196 76 $DESTDIR/bin/bash $SOURCES_REPOSITORY/$BASHCHECK $DESTDIR/bin/bash | tee bashcheck.log
pascal@17195 77 grep Vulnerable bashcheck.log && echo "ERROR: Vulnerable"
pankso@14 78 }
pankso@14 79
pankso@14 80 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@14 81 genpkg_rules()
pankso@14 82 {
pascal@14999 83 cp -a $install/bin $fs
pankso@14 84 # Config files.
pankso@14 85 #
pankso@14 86 mkdir $fs/etc
pankso@9697 87 cp $stuff/example.bashrc $fs/etc/bashrc
pankso@14 88 }
pankso@14 89
xfred222@13689 90
pankso@14 91 post_install()
pankso@14 92 {
al@18467 93 mkdir -p "$1/etc/skel"; cp -a "$1/etc/bashrc" "$1/etc/skel/.bashrc"
al@18466 94
al@18466 95 # Exit function in non-interactive mode (when user can't answer question)
al@18466 96 tty -s || return
al@18466 97
al@18466 98 echo -n 'Do you want to set Bash to default (y/N) ? : '
al@18466 99 read -t 30 answer
al@18481 100 [ "$answer" != 'y' ] && return
al@18466 101
al@18466 102 echo
al@18466 103 echo 'Setting bash as default shell for all users'
al@18466 104 sed -i 's|:/bin/[ckz]*sh$|:/bin/bash|' "$1/etc/passwd"
al@18466 105
al@18466 106 echo 'Creating ~/.bashrc file for all users'
al@18466 107 for i in $(awk -F: '$7=="/bin/bash"{print $6}' "$1/etc/passwd"); do
al@18466 108 [ -e "$1$i/.bashrc" ] && continue
al@18466 109 cp "$1/etc/bashrc" "$1$i/.bashrc"
al@18466 110 chown $(stat -c%U:%G "$1$i") "$1$i/.bashrc"
al@18466 111 done
pankso@14 112 }
pankso@2156 113
xfred222@13689 114
pankso@2156 115 pre_remove()
pankso@2156 116 {
al@18466 117 echo
al@18466 118 echo 'Setting sh as default shell for all users'
al@18466 119 sed -i 's|:/bin/bash$|:/bin/sh|' "$1/etc/passwd"
al@18466 120 [ -f "$1/etc/skel/.bashrc" ] && rm "$1/etc/skel/.bashrc"
pankso@2156 121 }