# Watch: https://ftp.gnu.org/gnu/bash
           SPELL=bash
         VERSION=5.3.3
        XVERSION=${VERSION%.*}
       # XVERSION=${VERSION}  # only for 5.3
  SECURITY_PATCH=8
 BASH_PATCHLEVEL=${VERSION##*.}
# BASH_PATCHLEVEL=0 # only for 5.3
          SOURCE=$SPELL-$XVERSION.tar.gz
         SOURCE2=$SOURCE.sig
         SOURCE3=$SPELL-doc-3.2.tar.gz
         SOURCE4=$SOURCE3.sig
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$XVERSION"
   SOURCE_URL[0]=$GNU_URL/$SPELL/$SOURCE
  SOURCE2_URL[0]=${SOURCE_URL[0]}.sig
  SOURCE3_URL[0]=$GNU_URL/$SPELL/$SOURCE3
  SOURCE4_URL[0]=${SOURCE3_URL[0]}.sig
      SOURCE_GPG="gnu.gpg:${SOURCE}.sig:UPSTREAM_KEY"
     SOURCE3_GPG="gnu.gpg:${SOURCE3}.sig:UPSTREAM_KEY"
  SOURCE2_IGNORE=signature
  SOURCE4_IGNORE=signature
     PATCHES_URL="${GNU_URL}/${SPELL}/${SPELL}-${XVERSION}-patches"
for ((i=5; i<=2*BASH_PATCHLEVEL + 3; i+=2)); do
  eval "SOURCE${i}=\${SPELL}\${XVERSION//./}-\$(printf \"%03d\" \$(((i-3)/2)))
        SOURCE${i}_URL[0]=\${PATCHES_URL}/\${SOURCE${i}}
        SOURCE$((i+1))=\${SOURCE${i}}.sig
        SOURCE$((i+1))_URL[0]=\${SOURCE${i}_URL[0]}.sig
        SOURCE${i}_GPG=gnu.gpg:\${SOURCE$((i+1))}:UPSTREAM_KEY
        SOURCE$((i+1))_IGNORE=signature"
done
        WEB_SITE=http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html
         ENTERED=20010922
      LICENSE[0]=GPL2
        KEYWORDS="console"
           SHORT="Bourne Again SHell for the GNU operating system"
cat << EOF
bash - Shell of the GNU operating system.
Bash is an sh-compatible shell that incorporates useful features from
the Korn shell (ksh) and C shell (csh). It is intended to conform to the
IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard.
It offers functional improvements over sh for both programming and
interactive use; these include command line editing, unlimited size
command history, job control, shell functions and aliases, indexed
arrays of unlimited size, and integer arithmetic in any base from two to
sixty-four. In addition, most sh scripts can be run by Bash without
modification.
EOF
