-> Set various defaults in bldpkg.conf

->Added SM_CHECKDEPENDENCIES variable in bldpkg.conf and related code in bldpkg to toggle whether to
  check for build/runtime dependencies
This commit is contained in:
SMLinux 2022-02-05 09:14:52 +05:30
parent 1ac50d765d
commit ed95528e8f
2 changed files with 32 additions and 25 deletions

12
bldpkg
View file

@ -508,10 +508,12 @@ else
exit 1
fi
# Do a preliminary package dependency check
echo "Parsing $APP 's dependency list..."
for PACKAGEDEP in $REQUIRES; do
# Do a preliminary package dependency check if SM_CHECKDEPENDENCIES is set to 1 in bldpkg.conf
if [ "$SM_CHECKDEPENDENCIES" == "1" ] ; then
echo "Parsing $APP 's dependency list..."
for PACKAGEDEP in $REQUIRES; do
DEPCOUNT="$(find /doc -name $PACKAGEDEP.SMBuild | wc -l)"
# If count is 1, we are ok
if [ "$DEPCOUNT" == "1" ] ; then
@ -525,7 +527,9 @@ for PACKAGEDEP in $REQUIRES; do
echo "Warning! Found multiple versions of $PACKAGEDEP !"
sleep 0.5
fi
done
done
fi
# If $SM_NOAUTOCONFSITE is unset in an individual package build file, export CONFIG_SITE variable into the build
# environment for a package's configure script to pickup. Most autoconf-compatible configure scripts will

View file

@ -1,4 +1,4 @@
# /etc/bldpkg.conf
# /etc/buildvars.conf
# Part of the SMLinux distribution
# This file allows you to define paths and variable values and prepares a
@ -31,11 +31,11 @@ SM_EXTRACTPROMPT=0
# Whether to use distcc for distributed compilations. 0 to disable, 1 to
# enable.
SM_GLOBALDISTCC=1
SM_GLOBALDISTCC=0
# Whether to use ccache for faster consecutive rebuilds. Set 0 to disable,
# 1 to enable.
SM_GLOBALCCACHE=1
SM_GLOBALCCACHE=0
# Whether to use sccache for faster consecutive builds. Set 0 to disable,
# 1 to enable.
@ -77,11 +77,11 @@ DISTCC_IO_TIMEOUT="1800"
# distcc manual for complete info. Must be defined in /etc/hosts unless they
# are an IP. Tip: Distcc by default will use only 2 cores on the local
# machine.
DISTCC_HOSTS="--randomize localhost/3 mx/3,lzo"
DISTCC_HOSTS="--randomize localhost/3 host0/2,lzo"
# Add sum total of the above CPU cores/threads or add your own count
# prepended with "-j".
SM_CPUTHREADS="-j6"
SM_CPUTHREADS="-j5"
# Declare a parent temporary directory
SM_PARENTTMP="/tmp"
@ -117,7 +117,7 @@ SM_PRESERVEBUILDDIR=1
SM_PRESERVEPACKAGEDIR=1
# Whether to show build summary. Set to 1 to enable, 0 to disable.
SM_SHOWSUMMARY=1
SM_SHOWSUMMARY=0
# Whether to show colours in the build summary. Set 1 to enable, 0 to
# disable. Also, only show colours if the build is invoked manually and not
@ -126,7 +126,7 @@ SM_SHOWSUMMARY=1
[ -z "$SM_COLOURS" ] && SM_COLOURS=1
# Define whether to check for swap. 1 to enable, 0 to disable.
SM_SWAPCHECK=1
SM_SWAPCHECK=0
# If above variable is set to 1, define minimum swap size required for huge
# compiles in KiB
@ -162,6 +162,9 @@ SM_CONFIGSITE="/etc/config.cache"
# handled by the mkchecksums script.
SM_VERIFYCHECKSUMS=0
# Whether to check for build/runtime dependencies
SM_CHECKDEPENDENCIES=0
# This array lists the packages whose sources will not be extracted and
# compiled inside tmpfs, if tmpfs is <= 2GB. If your tmpfs is >= 2GB, empty
# out this entire list.
@ -188,5 +191,5 @@ SM_PROTECTEDDIRECTORIES=( "/bin" "/boot" "/dev" "/etc" "/home" "/include" \
# Whether to output application build status in HTML format. Set 1 to enable,
# 0 to disable.
SM_HTMLOUTPUT=1
SM_HTMLOUTPUT=0