Changes to bldpkg:

* Removed unnecessary code related to creation and use of temporary summary file in bldpkg
* Moved totaltime code inside showsummary if/else check
* Fixed comments
This commit is contained in:
PktSurf 2023-05-07 14:37:11 +05:30
parent f1f548ecd6
commit 258fdc4b56

26
bldpkg
View file

@ -693,14 +693,12 @@ findelffiles() {
buildfilecleanup() {
# Discard all temporary files
rm "$parenttmp/BUILDING"
# Autobuild discards $tempfile automatically, so only discard $tempfile if $autobuildtemp is unset
if [[ -z $autobuildtemp ]] ; then
rm "$tempfile"
fi
}
prepbuildoutput() {
# Start of the showsummary if/else check
if [[ $showsummary = 1 ]]; then
# Get the build completion time and store it in a variable
finishdate=$(date '+%a, %d %b %Y, %T')
@ -714,9 +712,6 @@ prepbuildoutput() {
totaltime=$(runtime $SECONDS)
fi
# Start of the showsummary if/else check
if [[ $showsummary = 1 ]]; then
# Stick to 8/16 colours, those are supported on most terminals
if [[ $colours = 1 ]]; then
colourscheck=$(tput colors 2>/dev/null)
@ -738,8 +733,8 @@ prepbuildoutput() {
# Determine the build type
if [[ -n $autobuild ]]; then
# We are using Tadgy's autobuild system
buildsys="SSB Autobuild"
# We are using the autobuild system
buildsys="Autobuild"
else
# We compiled the package manually
buildsys="Manual"
@ -821,7 +816,7 @@ prepbuildoutput() {
# Finally prepare the summary
# If we have $compiletimeb set, then assume the compile went well and output compile and packaging times into tempfile.
# If we have $compiletimeb set, then assume the compile went well and output compile and packaging times inside a variable
if [[ -n $totaltime ]] && [[ -z $packagetimeb ]]; then
ttime="$totaltime"
elif [[ -n $totaltime ]] && [[ -n $packagetimeb ]]; then
@ -835,7 +830,8 @@ prepbuildoutput() {
bsection="None"
fi
cat << EOF > "$tempfile"
# Output the build summary to the user on every build
cat << EOF
$colourc ------------------------------------------------------------------------------- $colourd
$colourc BUILD SUMMARY FOR PACKAGE $colourv'$app'$colourc VERSION $colourv'$version'$colourc TAG $colourv'$build'
$colourc ------------------------------------------------------------------------------- $colourd
@ -854,9 +850,6 @@ $colourc Build Type: $colourd $buildsys & $bldtype
$colourc ------------------------------------------------------------------------------- $colourd
EOF
# Output the build summary to the user on every build
cat "$tempfile"
fi
# Completion of the showsummary if/else check
@ -1141,9 +1134,6 @@ if inarray "${tmp}" "${protecteddirectories[@]}" ; then
err "'tmp' VARIABLE IS SET TO '$tmp' WHICH IS A PROTECTED DIRECTORY! EXITING!"
fi
# Define a temporary file for printing summary
tempfile=$(mktemp "$parenttmp/SMBUILD.XXXXXX")
# https://unix.stackexchange.com/questions/462392/bash-the-function-is-executed-twice
# https://stackoverflow.com/questions/9256644/identifying-received-signal-name-in-bash/9256709
# We use two traps to identify the signals, EXIT and INT.