Some more code additions and cleanups in bldpkg
This commit is contained in:
parent
434610595c
commit
5ae4ac2d86
1 changed files with 52 additions and 47 deletions
99
bldpkg
99
bldpkg
|
@ -29,8 +29,6 @@
|
||||||
# Exit on any error
|
# Exit on any error
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# All variable names are to be in upper-case, function names in lower-case.
|
|
||||||
|
|
||||||
# Time when the build commenced. Note: elapsed time is logged by the runtime function way below. This output goes
|
# Time when the build commenced. Note: elapsed time is logged by the runtime function way below. This output goes
|
||||||
# into package build summary.
|
# into package build summary.
|
||||||
commencedate="$(date '+%a, %d %b %Y, %T')"
|
commencedate="$(date '+%a, %d %b %Y, %T')"
|
||||||
|
@ -40,34 +38,25 @@ srcdir="$PWD"
|
||||||
|
|
||||||
# Get relative directory name from SRCDIR
|
# Get relative directory name from SRCDIR
|
||||||
srcdirpath="$(basename $srcdir)"
|
srcdirpath="$(basename $srcdir)"
|
||||||
|
buildfile="$srcdirpath.SMBuild"
|
||||||
sourcebuildfile() {
|
|
||||||
file=$1
|
|
||||||
if [ -f "$file" ] ; then
|
|
||||||
source "$file"
|
|
||||||
elif [ -f "$srcdirpath.SMBuild" ] ; then
|
|
||||||
source "$srcdirpath.SMBuild"
|
|
||||||
else
|
|
||||||
echo "[ERROR] Could not find $srcdirpath build file to source from!"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
debugmode() {
|
debugmode() {
|
||||||
set -ex
|
set -x
|
||||||
sourcebuildfile $1
|
source "$buildfile"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Generate sha512sums in the build file
|
# Generate sha512sums in the build file
|
||||||
genchecksum() {
|
genchecksum() {
|
||||||
echo "[INFO] Discarding old sha512sums from $srcdirpath.SMBuild"
|
echo "[INFO] Discarding old sha512sums from $buildfile"
|
||||||
|
tempbuildfile="$buildfile"
|
||||||
sed -E -i \
|
sed -E -i \
|
||||||
-e '/^sha512sums=".*"$/d' \
|
-e '/^sha512sums=".*"$/d' \
|
||||||
-e '/^sha512sums="/,/"$/d' \
|
-e '/^sha512sums="/,/"$/d' \
|
||||||
-e "/^sha512sums='.*'\$/d" \
|
-e "/^sha512sums='.*'\$/d" \
|
||||||
"$srcdirpath".SMBuild
|
"$buildfile"
|
||||||
|
|
||||||
echo "[INFO] Adding new sha512sums in $srcdirpath.SMBuild"
|
echo "[INFO] Adding new sha512sums in $tempbuildfile"
|
||||||
printf 'sha512sums="\n' >> "$srcdirpath.SMBuild"
|
printf 'sha512sums="\n' >> "$tempbuildfile"
|
||||||
|
|
||||||
# File types
|
# File types
|
||||||
files=( *.tar.* *.zip *.t?z *.patch *.diff *.c *.h )
|
files=( *.tar.* *.zip *.t?z *.patch *.diff *.c *.h )
|
||||||
|
@ -75,13 +64,13 @@ genchecksum() {
|
||||||
# Checksum digest to be used along with arguments
|
# Checksum digest to be used along with arguments
|
||||||
checksumbinary="sha512sum"
|
checksumbinary="sha512sum"
|
||||||
|
|
||||||
for buildfile in ${files[@]} ; do
|
for file in ${files[@]} ; do
|
||||||
if [ -f "$buildfile" ] ; then
|
if [ -f "$file" ] ; then
|
||||||
$checksumbinary $buildfile >> "$srcdirpath.SMBuild"
|
$checksumbinary $file >> "$tempbuildfile"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
printf '"' >> "$srcdirpath.SMBuild"
|
printf '"' >> "$tempbuildfile"
|
||||||
echo "[INFO] You may now run bldpkg again"
|
echo "[INFO] You may now run bldpkg again"
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
@ -90,38 +79,52 @@ help() {
|
||||||
cat << EOF
|
cat << EOF
|
||||||
Bash script for building SMLinux-compatible packages from source.
|
Bash script for building SMLinux-compatible packages from source.
|
||||||
|
|
||||||
This script takes only one parameter. Unmatched parameters are ignored.
|
This script takes only one parameter.
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
-g | g | gen : Generate sha512 checksums of all tarballs and patches and put them into the package build file
|
-d : Invoke bash shell debug mode
|
||||||
|
|
||||||
-h | h | help : Show this message
|
-h : Show this message
|
||||||
|
|
||||||
-d | d | debug : Invoke bash shell debug mode
|
-g : Generate SHA512 checksums of all tarballs and patches and insert them into the package build file
|
||||||
|
|
||||||
If no arguments are provided, this script attempts to build a package provided the package build file and the parent directory name matches.
|
If no arguments are provided, this script attempts to build a package provided the package build file and the parent directory name matches.
|
||||||
EOF
|
EOF
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
if [ "$#" -gt 1 ] ; then
|
while getopts ':dhg' option; do
|
||||||
help
|
case "$option" in
|
||||||
|
d)
|
||||||
|
debugmode
|
||||||
|
;;
|
||||||
|
h)
|
||||||
|
help
|
||||||
|
;;
|
||||||
|
g)
|
||||||
|
genchecksum
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
help
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
# If no argument is given, attempt to source the build file matching the parent directory name
|
||||||
|
if [ "$OPTIND" -eq 1 ] ; then
|
||||||
|
if [ -f "$buildfile" ] ; then
|
||||||
|
source "$buildfile"
|
||||||
|
else
|
||||||
|
echo "[ERROR] Could not find $srcdirpath build file to source from!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$1" in
|
# Determine whether we are using bash version 4 and later
|
||||||
-g|g|gen)
|
if [ "${BASH_VERSINFO[0]}" -lt 4 ] ; then
|
||||||
genchecksum
|
echo "[ERROR] You need to upgrade your bash shell to a minimum of 4.0 or higher"
|
||||||
;;
|
exit 1
|
||||||
-h|h|help)
|
fi
|
||||||
help
|
|
||||||
;;
|
|
||||||
-d|d|debug)
|
|
||||||
debugmode
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
sourcebuildfile $1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Validate the build file. If any of the following variables are not set in the build file, abort.
|
# Validate the build file. If any of the following variables are not set in the build file, abort.
|
||||||
for buildvariables in app version build homepage desc requires ; do
|
for buildvariables in app version build homepage desc requires ; do
|
||||||
|
@ -164,7 +167,7 @@ if [ "$(echo "$desc" | wc -c)" -gt 100 ] ; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check if build() function exists in the build file
|
# Check if build() function exists in the build file
|
||||||
if [[ ! "$(grep '^build()' "$srcdirpath".SMBuild)" ]] ; then
|
if [[ ! "$(grep '^build()' "$buildfile")" ]] ; then
|
||||||
echo "[ERROR] build() function does not exist in your build file."
|
echo "[ERROR] build() function does not exist in your build file."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
@ -176,8 +179,8 @@ sleep 0.5
|
||||||
# Only verify source checksums if skipchecksum is not set in the build file
|
# Only verify source checksums if skipchecksum is not set in the build file
|
||||||
if [ -z "$skipchecksum" ] ; then
|
if [ -z "$skipchecksum" ] ; then
|
||||||
if [ -z "$sha512sums" ] ; then
|
if [ -z "$sha512sums" ] ; then
|
||||||
echo "[ERROR] SHA512 checksums don't exist in $srcdirpath.SMBuild !"
|
echo "[ERROR] SHA512 checksums don't exist in $buildfile !"
|
||||||
echo "[ERROR] Please run 'bldpkg genchecksum' to add them"
|
echo "[ERROR] Please run 'bldpkg -g' to add them"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -868,7 +871,7 @@ mkfinalpkg() {
|
||||||
find "$pkg" ! -type d -name "*.la" -exec rm -v {} \;
|
find "$pkg" ! -type d -name "*.la" -exec rm -v {} \;
|
||||||
|
|
||||||
# Provide a copy of the package build file so that users know the build options that went into compiling the package
|
# Provide a copy of the package build file so that users know the build options that went into compiling the package
|
||||||
install -Dm 644 "$srcdir/$app.SMBuild" "$pkgdocs/$app.SMBuild"
|
install -Dm 644 "$srcdir/$buildfile" "$pkgdocs/$app.SMBuild"
|
||||||
|
|
||||||
# Now strip the binaries and shared libraries
|
# Now strip the binaries and shared libraries
|
||||||
if [ -z "$debug" ] && [ "$debug" != "1" ]; then
|
if [ -z "$debug" ] && [ "$debug" != "1" ]; then
|
||||||
|
@ -1260,6 +1263,8 @@ interruptoutput() {
|
||||||
echo ""
|
echo ""
|
||||||
echo "[INFO] Caught Keyboard Interrupt"
|
echo "[INFO] Caught Keyboard Interrupt"
|
||||||
wasinterrupted="1"
|
wasinterrupted="1"
|
||||||
|
# Restore terminal colours
|
||||||
|
echo -e "$colourd"
|
||||||
# If installprompt and extractprompt are set and the prompt is invoked after a successful build, hitting
|
# If installprompt and extractprompt are set and the prompt is invoked after a successful build, hitting
|
||||||
# ctrl-C will only set the above sm variable repeatedly and won't return user to the shell because
|
# ctrl-C will only set the above sm variable repeatedly and won't return user to the shell because
|
||||||
# of the interrupt (SIGINT) trap set way below. Putting exit 0 is a decent way to get out of that prompt
|
# of the interrupt (SIGINT) trap set way below. Putting exit 0 is a decent way to get out of that prompt
|
||||||
|
|
Loading…
Reference in a new issue