-> 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:
parent
1ac50d765d
commit
ed95528e8f
2 changed files with 32 additions and 25 deletions
38
bldpkg
38
bldpkg
|
@ -508,24 +508,28 @@ else
|
|||
exit 1
|
||||
fi
|
||||
|
||||
# Do a preliminary package dependency check
|
||||
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
|
||||
echo "Found dependency $PACKAGEDEP"
|
||||
# If count is 0, we exit, because we are in trouble
|
||||
elif [ "$DEPCOUNT" == "0" ] ; then
|
||||
echo "Did not find dependency $PACKAGEDEP ! Aborting!"
|
||||
exit 1
|
||||
# If count is greater than or equal to 2, we are in slightly less trouble
|
||||
elif [ "$DEPCOUNT" -ge "2" ] ; then
|
||||
echo "Warning! Found multiple versions of $PACKAGEDEP !"
|
||||
sleep 0.5
|
||||
fi
|
||||
done
|
||||
# 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
|
||||
echo "Found dependency $PACKAGEDEP"
|
||||
# If count is 0, we exit, because we are in trouble
|
||||
elif [ "$DEPCOUNT" == "0" ] ; then
|
||||
echo "Did not find dependency $PACKAGEDEP ! Aborting!"
|
||||
exit 1
|
||||
# If count is greater than or equal to 2, we are in slightly less trouble
|
||||
elif [ "$DEPCOUNT" -ge "2" ] ; then
|
||||
echo "Warning! Found multiple versions of $PACKAGEDEP !"
|
||||
sleep 0.5
|
||||
fi
|
||||
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
|
||||
|
|
19
bldpkg.conf
19
bldpkg.conf
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue