config: add start info for package helpers

This commit is contained in:
Luis Guzmán 2025-06-12 18:55:15 -06:00
parent 692365065d
commit bf25cfe3ce

View file

@ -63,6 +63,7 @@ LP_DIFF_FILE="${PACKAGE}_${LP_VERSION}.diff.gz"
LP_DSC_FILE="${PACKAGE}_${LP_VERSION}.dsc" LP_DSC_FILE="${PACKAGE}_${LP_VERSION}.dsc"
fi fi
echo -e "> $PACKAGE helper build started - $(date -R)\n"
if [ -n "$BUILD_UNTIL" ] && (( $(echo "$BUILD_UNTIL $REVISION" | awk '{print ($1 > $2)}') )); then if [ -n "$BUILD_UNTIL" ] && (( $(echo "$BUILD_UNTIL $REVISION" | awk '{print ($1 > $2)}') )); then
echo "Skipping build of helper with BUILD_UNTIL=$BUILD_UNTIL > REVISION=$REVISION" echo "Skipping build of helper with BUILD_UNTIL=$BUILD_UNTIL > REVISION=$REVISION"
exit 0 exit 0
@ -222,7 +223,7 @@ cd ..
mv source $PACKAGE-$FULLVERSION mv source $PACKAGE-$FULLVERSION
dpkg-source -b -I.falsefileextension99 $PACKAGE-$FULLVERSION dpkg-source -b -I.falsefileextension99 $PACKAGE-$FULLVERSION
rm -rf ${LOCAL_APT} rm -rf ${LOCAL_APT}
echo -e "Trisquel source package built! - $(date -R)\n" echo -e "> Trisquel source package built! - $(date -R)\n"
notify_found_distro_match_on_debian_rules notify_found_distro_match_on_debian_rules
} }