diff options
author | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2020-05-07 12:10:55 +0100 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2020-05-07 12:10:55 +0100 |
commit | 08f57a8d88e4ec4f2705bfd2c69abda752f03907 (patch) | |
tree | 8f6e0e58ddb1b26395f6f41a7c56acaaf269d96b | |
parent | d827f8bf908b605cbbc4034f801de4f6daf99e4f (diff) | |
download | midipix_build-08f57a8d88e4ec4f2705bfd2c69abda752f03907.tar.bz2 midipix_build-08f57a8d88e4ec4f2705bfd2c69abda752f03907.tar.xz |
build.sh:buildp_dispatch_pkg_state(): include percentage and package counts in `finish_pkg' informational.
subr/ex_pkg_dispatch.subr:exp_pkg_dispatch_group(): include package counts in `finish_pkg' message.
-rwxr-xr-x | build.sh | 2 | ||||
-rw-r--r-- | subr/ex_pkg_dispatch.subr | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -75,7 +75,7 @@ buildp_dispatch_pkg_state() { if [ "${ARG_VERBOSE:-0}" -ge 2 ]; then cat "${BUILD_WORKDIR}/${_pkg_name}_stderrout.log"; fi; - rtl_log_msg info_end "Finished \`%s' build." "${_pkg_name}"; ;; + rtl_log_msg info_end "[% 3d%%] [%03d/%03d] Finished \`%s' build." "$(((100*${4} + ${5}/2)/${5}))" "${4}" "${5}" "${_pkg_name}"; ;; start_pkg_child) if [ "${PKG_NO_LOG_VARS:-0}" -eq 0 ]; then rtl_log_env_vars "build" $(rtl_get_vars_fast "^PKG_"); diff --git a/subr/ex_pkg_dispatch.subr b/subr/ex_pkg_dispatch.subr index 669357cd..edba315c 100644 --- a/subr/ex_pkg_dispatch.subr +++ b/subr/ex_pkg_dispatch.subr @@ -68,7 +68,7 @@ exp_pkg_dispatch_group() { case "${_pipe_msg%% *}" in done) _pkg_name="${_pipe_msg#done * }"; : $((EXP_PKG_DISPATCH_NJOBS-=1)); EX_PKG_FINISHED="$(rtl_lconcat "${EX_PKG_FINISHED}" "${_pkg_name}")"; - "${_dispatch_fn}" finish_pkg ${_pipe_msg#done }; + "${_dispatch_fn}" finish_pkg ${_pipe_msg#done } "${EXP_PKG_DISPATCH_COUNT}" "${EXP_PKG_DISPATCH_COUNT_MAX}"; EX_PKG_NAMES="$(rtl_lfilter "${EX_PKG_NAMES}" "${_pkg_name}")"; EX_PKG_DISPATCH_WAIT="$(rtl_lfilter "${EX_PKG_DISPATCH_WAIT}" "${_pkg_name}")"; if [ -n "${EX_PKG_NAMES}" ] && [ "${_rc}" -eq 0 ]; then |