2006-04-06 21:35:22 +02:00
|
|
|
check_version() {
|
|
|
|
: <<inline_doc
|
2006-10-02 21:32:06 +02:00
|
|
|
Tests for a minimum version level. Compares to version numbers and forces an
|
2006-04-06 21:35:22 +02:00
|
|
|
exit if minimum level not met.
|
|
|
|
NOTE: This test will fail on versions containing alpha chars. ie. jpeg 6b
|
2006-10-02 21:32:06 +02:00
|
|
|
|
2006-04-06 21:35:22 +02:00
|
|
|
usage: check_version "2.6.2" "`uname -r`" "KERNEL"
|
|
|
|
check_version "3.0" "$BASH_VERSION" "BASH"
|
|
|
|
check_version "3.0" "`gcc -dumpversion`" "GCC"
|
|
|
|
|
|
|
|
input vars: $1=min acceptable version
|
|
|
|
$2=version to check
|
|
|
|
$3=app name
|
|
|
|
externals: --
|
|
|
|
modifies: --
|
|
|
|
returns: nothing
|
|
|
|
on error: write text to console and dies
|
|
|
|
on success: write text to console and returns
|
|
|
|
inline_doc
|
|
|
|
|
|
|
|
declare -i major minor revision change
|
|
|
|
declare -i ref_major ref_minor ref_revision ref_change
|
2021-12-13 16:03:46 +01:00
|
|
|
declare -r spaceSTR=" "
|
|
|
|
declare -r spaceSTR1=" "
|
2006-04-06 21:35:22 +02:00
|
|
|
|
2012-02-02 00:29:37 +01:00
|
|
|
shopt -s extglob #needed for ${x##*(0)} below
|
|
|
|
|
2006-04-06 21:35:22 +02:00
|
|
|
ref_version=$1
|
|
|
|
tst_version=$2
|
|
|
|
TXT=$3
|
|
|
|
|
|
|
|
# This saves us the save/restore hassle of the system IFS value
|
|
|
|
local IFS
|
|
|
|
|
|
|
|
write_error_and_die() {
|
2013-12-15 11:10:25 +01:00
|
|
|
echo -e "\n\t\t$TXT is missing or version -->${tst_version}<-- is too old.
|
2006-04-06 21:35:22 +02:00
|
|
|
This script requires ${ref_version} or greater\n"
|
2007-07-24 22:21:18 +02:00
|
|
|
# Ask the user instead of bomb, to make happy that packages which version
|
|
|
|
# ouput don't follow our expectations
|
2013-12-15 11:10:25 +01:00
|
|
|
echo "If you are sure that you have installed a proper version of ${BOLD}$TXT${OFF}"
|
2007-07-24 22:21:18 +02:00
|
|
|
echo "but jhalfs has failed to detect it, press 'c' and 'ENTER' keys to continue,"
|
|
|
|
echo -n "otherwise press 'ENTER' key to stop jhalfs. "
|
|
|
|
read ANSWER
|
|
|
|
if [ x$ANSWER != "xc" ] ; then
|
|
|
|
echo "${nl_}Please, install a proper $TXT version.${nl_}"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
minor=$ref_minor
|
|
|
|
revision=$ref_revision
|
|
|
|
fi
|
2006-04-06 21:35:22 +02:00
|
|
|
}
|
|
|
|
|
2019-04-24 17:01:26 +02:00
|
|
|
echo -ne "${TXT}${spaceSTR:${#TXT}} ${L_arrow}${BOLD}${tst_version}${OFF}${R_arrow}"
|
2006-10-02 21:32:06 +02:00
|
|
|
|
2013-09-21 20:52:02 +02:00
|
|
|
IFS=".-(pab" # Split up w.x.y.z as well as w.x.y-rc (catch release candidates)
|
2012-02-02 00:29:37 +01:00
|
|
|
set -- $ref_version # set positional parameters to minimum ver values
|
2006-04-06 21:35:22 +02:00
|
|
|
ref_major=$1; ref_minor=$2; ref_revision=$3
|
|
|
|
#
|
2012-02-02 00:29:37 +01:00
|
|
|
set -- $tst_version # Set positional parameters to test version values
|
|
|
|
# Values beginning with zero are taken as octal, so that for example
|
|
|
|
# 2.07.08 gives an error because 08 cannot be octal. The ## stuff supresses
|
2012-03-29 10:20:43 +02:00
|
|
|
# leading zero's
|
2012-02-02 00:29:37 +01:00
|
|
|
major=${1##*(0)}; minor=${2##*(0)}; revision=${3##*(0)}
|
2006-04-06 21:35:22 +02:00
|
|
|
#
|
|
|
|
# Compare against minimum acceptable version..
|
2013-04-04 23:13:02 +02:00
|
|
|
(( major > ref_major )) &&
|
2021-12-13 16:03:46 +01:00
|
|
|
echo " ${spaceSTR1:${#tst_version}}${GREEN}OK${OFF} (Min version: ${ref_version})" &&
|
2013-04-04 23:13:02 +02:00
|
|
|
return
|
2006-04-06 21:35:22 +02:00
|
|
|
(( major < ref_major )) && write_error_and_die
|
|
|
|
# major=ref_major
|
|
|
|
(( minor < ref_minor )) && write_error_and_die
|
2013-04-04 23:13:02 +02:00
|
|
|
(( minor > ref_minor )) &&
|
2021-12-13 16:03:46 +01:00
|
|
|
echo " ${spaceSTR1:${#tst_version}}${GREEN}OK${OFF} (Min version: ${ref_version})" &&
|
2013-04-04 23:13:02 +02:00
|
|
|
return
|
2006-04-06 21:35:22 +02:00
|
|
|
# minor=ref_minor
|
2013-04-04 23:13:02 +02:00
|
|
|
(( revision >= ref_revision )) &&
|
2021-12-13 16:03:46 +01:00
|
|
|
echo " ${spaceSTR1:${#tst_version}}${GREEN}OK${OFF} (Min version: ${ref_version})" &&
|
2013-04-04 23:13:02 +02:00
|
|
|
return
|
2006-04-06 21:35:22 +02:00
|
|
|
|
|
|
|
# oops.. write error msg and die
|
|
|
|
write_error_and_die
|
|
|
|
}
|
2006-10-02 21:32:06 +02:00
|
|
|
|
|
|
|
#----------------------------#
|
|
|
|
check_prerequisites() { #
|
|
|
|
#----------------------------#
|
|
|
|
|
2016-05-20 13:46:49 +02:00
|
|
|
HOSTREQS=$(find $BOOK -name hostreqs.xml)
|
2013-09-14 12:13:04 +02:00
|
|
|
|
2016-05-20 13:46:49 +02:00
|
|
|
eval $(xsltproc $COMMON_DIR/hostreqs.xsl $HOSTREQS)
|
2007-12-14 21:30:09 +01:00
|
|
|
# Avoid translation of version strings
|
|
|
|
local LC_ALL=C
|
|
|
|
export LC_ALL
|
|
|
|
|
2022-03-01 21:09:30 +01:00
|
|
|
# LFS prerequisites
|
2013-12-27 08:38:30 +01:00
|
|
|
if [ -n "$MIN_Linux_VER" ]; then
|
|
|
|
check_version "$MIN_Linux_VER" "`uname -r`" "KERNEL"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Bash_VER" ]; then
|
|
|
|
check_version "$MIN_Bash_VER" "$BASH_VERSION" "BASH"
|
|
|
|
fi
|
2013-04-05 17:12:13 +02:00
|
|
|
if [ ! -z $MIN_GCC_VER ]; then
|
2019-03-11 15:25:09 +01:00
|
|
|
check_version "$MIN_GCC_VER" "`gcc -dumpfullversion -dumpversion`" "GCC"
|
|
|
|
check_version "$MIN_GCC_VER" "`g++ -dumpfullversion -dumpversion`" "G++"
|
2013-04-05 17:12:13 +02:00
|
|
|
elif [ ! -z $MIN_Gcc_VER ]; then
|
2019-03-11 15:25:09 +01:00
|
|
|
check_version "$MIN_Gcc_VER" "`gcc -dumpfullversion -dumpversion`" "GCC"
|
2013-04-05 17:12:13 +02:00
|
|
|
fi
|
2013-12-27 08:38:30 +01:00
|
|
|
if [ -n "$MIN_Glibc_VER" ]; then
|
|
|
|
check_version "$MIN_Glibc_VER" "$(ldd --version | head -n1 | awk '{print $NF}')" "GLIBC"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Binutils_VER" ]; then
|
|
|
|
check_version "$MIN_Binutils_VER" "$(ld --version | head -n1 | awk '{print $NF}')" "BINUTILS"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Tar_VER" ]; then
|
|
|
|
check_version "$MIN_Tar_VER" "$(tar --version | head -n1 | cut -d" " -f4)" "TAR"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Bzip2_VER" ]; then
|
2007-06-20 00:14:22 +02:00
|
|
|
bzip2Ver="$(bzip2 --version 2>&1 < /dev/null | head -n1 | cut -d" " -f8)"
|
2013-12-27 08:38:30 +01:00
|
|
|
check_version "$MIN_Bzip2_VER" "${bzip2Ver%%,*}" "BZIP2"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Bison_VER" ]; then
|
|
|
|
check_version "$MIN_Bison_VER" "$(bison --version | head -n1 | cut -d" " -f4)" "BISON"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Coreutils_VER" ]; then
|
|
|
|
check_version "$MIN_Coreutils_VER" "$(chown --version | head -n1 | cut -d" " -f4)" "COREUTILS"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Diffutils_VER" ]; then
|
|
|
|
check_version "$MIN_Diffutils_VER" "$(diff --version | head -n1 | cut -d" " -f4)" "DIFF"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Findutils_VER" ]; then
|
|
|
|
check_version "$MIN_Findutils_VER" "$(find --version | head -n1 | cut -d" " -f4)" "FIND"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Gawk_VER" ]; then
|
|
|
|
check_version "$MIN_Gawk_VER" "$(gawk --version | head -n1 | awk -F'[ ,]+' '{print $3}')" "GAWK"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Grep_VER" ]; then
|
|
|
|
check_version "$MIN_Grep_VER" "$(grep --version | head -n1 | awk '{print $NF}')" "GREP"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Gzip_VER" ]; then
|
|
|
|
check_version "$MIN_Gzip_VER" "$(gzip --version 2>&1 | head -n1 | cut -d" " -f2)" "GZIP"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_M4_VER" ]; then
|
|
|
|
check_version "$MIN_M4_VER" "$(m4 --version 2>&1 | head -n1 | awk '{print $NF}')" "M4"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Make_VER" ]; then
|
|
|
|
check_version "$MIN_Make_VER" "$(make --version | head -n1 | cut -d " " -f3 | cut -c1-4)" "MAKE"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Patch_VER" ]; then
|
|
|
|
check_version "$MIN_Patch_VER" "$(patch --version | head -n1 | sed 's/.*patch //')" "PATCH"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Perl_VER" ]; then
|
|
|
|
check_version "$MIN_Perl_VER" "$(perl -V:version | cut -f2 -d\')" "PERL"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Sed_VER" ]; then
|
|
|
|
check_version "$MIN_Sed_VER" "$(sed --version | head -n1 | cut -d" " -f4)" "SED"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Texinfo_VER" ]; then
|
|
|
|
check_version "$MIN_Texinfo_VER" "$(makeinfo --version | head -n1 | awk '{ print$NF }')" "TEXINFO"
|
|
|
|
fi
|
|
|
|
if [ -n "$MIN_Xz_VER" ]; then
|
|
|
|
check_version "$MIN_Xz_VER" "$(xz --version | head -n1 | cut -d" " -f4)" "XZ"
|
|
|
|
fi
|
2019-02-15 15:11:36 +01:00
|
|
|
if [ -n "$MIN_Python_VER" ]; then
|
2019-02-15 17:06:46 +01:00
|
|
|
check_version "$MIN_Python_VER" "3.$(python3 -c"import sys; print(sys.version_info.minor,'.',sys.version_info.micro,sep='')")" "PYTHON"
|
2019-02-15 15:11:36 +01:00
|
|
|
fi
|
2013-12-15 11:10:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#----------------------------#
|
|
|
|
check_alfs_tools() { #
|
|
|
|
#----------------------------#
|
|
|
|
: << inline_doc
|
|
|
|
Those tools are needed for the proper operation of jhalfs
|
|
|
|
inline_doc
|
|
|
|
|
|
|
|
# Avoid translation of version strings
|
|
|
|
local LC_ALL=C
|
|
|
|
export LC_ALL
|
|
|
|
|
2006-10-02 21:32:06 +02:00
|
|
|
# Check for minimum sudo version
|
|
|
|
SUDO_LOC="$(whereis -b sudo | cut -d" " -f2)"
|
|
|
|
if [ -x $SUDO_LOC ]; then
|
|
|
|
sudoVer="$(sudo -V | head -n1 | cut -d" " -f3)"
|
2013-12-15 11:10:25 +01:00
|
|
|
check_version "1.7.0" "${sudoVer}" "SUDO"
|
2006-10-02 21:32:06 +02:00
|
|
|
else
|
|
|
|
echo "${nl_}\"${RED}sudo${OFF}\" ${BOLD}must be installed on your system for jhalfs to run"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-12-15 11:10:25 +01:00
|
|
|
# Check for wget presence (using a dummy version)
|
2013-02-19 19:00:22 +01:00
|
|
|
WGET_LOC="$(whereis -b wget | cut -d" " -f2)"
|
|
|
|
if [ -x $WGET_LOC ]; then
|
|
|
|
wgetVer="$(wget --version | head -n1 | cut -d" " -f3)"
|
2014-10-31 11:08:40 +01:00
|
|
|
if echo "$wgetVer" | grep -q '^[[:digit:]]'; then
|
|
|
|
check_version "1.0.0" "${wgetVer}" "WGET"
|
|
|
|
else echo Wget detected, but no version found. Continuing anyway.
|
|
|
|
fi
|
2013-02-19 19:00:22 +01:00
|
|
|
else
|
|
|
|
echo "${nl_}\"${RED}wget${OFF}\" ${BOLD}must be installed on your system for jhalfs to run"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-12-15 11:10:25 +01:00
|
|
|
# Before checking libxml2 and libxslt version information, ensure tools
|
|
|
|
# needed from those packages are actually available. Avoids a small
|
|
|
|
# cosmetic bug of book version information not being retrieved if
|
|
|
|
# xmllint is unavailable, especially when on recent non-LFS hosts.
|
2013-03-19 02:01:30 +01:00
|
|
|
|
|
|
|
XMLLINT_LOC="$(whereis -b xmllint | cut -d" " -f2)"
|
|
|
|
XSLTPROC_LOC="$(whereis -b xsltproc | cut -d" " -f2)"
|
2018-01-13 10:08:56 +01:00
|
|
|
|
2013-03-19 02:01:30 +01:00
|
|
|
if [ ! -x $XMLLINT_LOC ]; then
|
|
|
|
echo "${nl_}\"${RED}xmllint${OFF}\" ${BOLD}must be installed on your system for jhalfs to run"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -x $XSLTPROC_LOC ]; then
|
|
|
|
|
2013-12-15 11:10:25 +01:00
|
|
|
# Check for minimum libxml2 and libxslt versions
|
|
|
|
xsltprocVer=$(xsltproc -V | head -n1 )
|
|
|
|
libxmlVer=$(echo $xsltprocVer | cut -d " " -f3)
|
|
|
|
libxsltVer=$(echo $xsltprocVer | cut -d " " -f5)
|
2006-10-02 21:32:06 +02:00
|
|
|
|
2013-12-15 11:10:25 +01:00
|
|
|
# Version numbers are packed strings not xx.yy.zz format.
|
|
|
|
check_version "2.06.20" "${libxmlVer:0:1}.${libxmlVer:1:2}.${libxmlVer:3:2}" "LIBXML2"
|
|
|
|
check_version "1.01.14" "${libxsltVer:0:1}.${libxsltVer:1:2}.${libxsltVer:3:2}" "LIBXSLT"
|
2018-01-13 10:08:56 +01:00
|
|
|
|
2013-03-19 02:01:30 +01:00
|
|
|
else
|
|
|
|
echo "${nl_}\"${RED}xsltproc${OFF}\" ${BOLD}must be installed on your system for jhalfs to run"
|
|
|
|
exit 1
|
|
|
|
fi
|
2013-12-15 11:10:25 +01:00
|
|
|
|
2021-12-13 16:05:39 +01:00
|
|
|
# Now that we do profiling, we need the docbook DTD, and the docbook XSL
|
|
|
|
# stylesheets.
|
2013-12-15 11:10:25 +01:00
|
|
|
# Minimal docbook-xml code for testing
|
|
|
|
XML_FILE="<?xml version='1.0' encoding='ISO-8859-1'?>
|
2021-12-13 16:05:39 +01:00
|
|
|
<?xml-stylesheet type='text/xsl' href='http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl'?>
|
2007-04-13 21:26:35 +02:00
|
|
|
<!DOCTYPE article PUBLIC '-//OASIS//DTD DocBook XML V4.5//EN'
|
|
|
|
'http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd'>
|
2006-10-02 21:32:06 +02:00
|
|
|
<article>
|
|
|
|
<title>Test file</title>
|
|
|
|
<sect1>
|
|
|
|
<title>Some title</title>
|
|
|
|
<para>Some text</para>
|
|
|
|
</sect1>
|
|
|
|
</article>"
|
|
|
|
|
2021-12-13 16:05:39 +01:00
|
|
|
if echo $XML_FILE | xmllint -nonet -noout -postvalid - 2>/dev/null ; then
|
2013-12-15 11:10:25 +01:00
|
|
|
check_version "4.5" "4.5" "DocBook XML DTD"
|
|
|
|
else
|
2021-12-13 16:05:39 +01:00
|
|
|
echo "Error: you need the Docbook XML DTD for running jhalfs"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if echo $XML_FILE | xsltproc -nonet -noout - 2>/dev/null ; then
|
|
|
|
check_version "current" "current" "DocBook XSL stylesheets"
|
|
|
|
else
|
|
|
|
echo "Error: you need the Docbook XSL stylesheets for running jhalfs"
|
|
|
|
exit 1
|
2013-12-15 11:10:25 +01:00
|
|
|
fi
|
2008-10-21 01:33:54 +02:00
|
|
|
}
|