scripts/clean: general cleanup

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
This commit is contained in:
Ian Leonard 2018-11-19 04:28:03 +00:00
parent 5c8bbb6fe1
commit 31256d715c

View File

@ -2,44 +2,40 @@
# SPDX-License-Identifier: GPL-2.0-or-later # SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv) # Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
. config/options $1 . config/options "${1}"
clean_package() { clean_package() {
printf "%${BUILD_INDENT}c $(print_color CLR_CLEAN "CLEAN") $1\n" ' '>&$SILENT_OUT build_msg "CLR_CLEAN" "CLEAN" "${1}" "indent"
export BUILD_INDENT=$((${BUILD_INDENT:-1}+$BUILD_INDENT_SIZE))
if [ "$CLEAN_SOURCES" = true ]; then if [ "${CLEAN_SOURCES}" = true ]; then
rm -rf $SOURCES/$1 rm -rf "${SOURCES}/${1}"
return return
fi fi
# Use a wilcard here to remove all versions of the package # Use a wilcard here to remove all versions of the package
for i in $BUILD/$1-*; do for i in "${BUILD}/${1}-"*; do
if [ -d $i -a -f "$i/.libreelec-unpack" ] ; then if [ -d "${i}" -a -f "${i}/.libreelec-unpack" ]; then
. "$i/.libreelec-unpack" . "${i}/.libreelec-unpack"
if [ "$STAMP_PKG_NAME" = "$1" ]; then if [ "${STAMP_PKG_NAME}" = "${1}" ]; then
printf "%${BUILD_INDENT}c $(print_color CLR_WARNING "*") $(print_color CLR_WARNING_DIM "Removing $i ...")\n" ' '>&$SILENT_OUT build_msg "CLR_WARNING" "*" "$(print_color "CLR_WARNING_DIM" "Removing ${i} ...")"
rm -rf $i rm -rf "${i}"
fi fi
else else
# force clean if no stamp found (previous unpack failed) # force clean if no stamp found (previous unpack failed)
printf "%${BUILD_INDENT}c * Removing $i ...\n" ' '>&$SILENT_OUT build_msg "" "" "* Removing ${i} ..."
rm -rf $i rm -rf "${i}"
fi fi
done done
rm -f $STAMPS/$1/build_* rm -f "${STAMPS}/${1}/build_"*
} }
if [ "$1" = "--all" ]; then if [ "${1}" = "--all" -a -n "${2}" ]; then
if [ ! -z "$2" ]; then for build_dir in $(ls -1d "${ROOT}/build."*); do
for build_dir in $(ls -1d ${ROOT}/build.*); do load_build_config "${build_dir}" && "${SCRIPTS}/clean" "${2}"
load_build_config "${build_dir}" && ./scripts/clean $2
done done
fi elif [ -n "${1}" ]; then
else clean_package "${1}"
if [ ! -z "$1" ]; then
clean_package $1
fi
fi fi