You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please add the following powerful feature in genlop -c:
Beside the single ETA for the current package please add the ETA for all the pending packages.
As one one of the core features of genlop is the ETA calculation based on the emerge.log, another interesting calculation would be the total ETA for all the pending packages, which could also be easily possible.
However I guess that the calculation only based on emerge.log could be quite expensive and running a watch -n1 -cd genlop -c for some 50+ pending packages even more. Therefore a database replacing emerge.log could be required for such things.
Additionally I'm rotating and compressing my logs:
# type genlop
genlop is a function
genlop ()
{
local opts args;
for args in "$@";
do
opts+=("$args");
done;
for logfile in /var/log/emerge.log*;
do
if [[ -r "$logfile" ]]; then
opts+=(-f "$logfile");
fi;
done;
command genlop "${opts[@]}"
}
The text was updated successfully, but these errors were encountered:
Please add the following powerful feature in genlop -c:
Beside the single ETA for the current package please add the ETA for all the pending packages.
As one one of the core features of genlop is the ETA calculation based on the emerge.log, another interesting calculation would be the total ETA for all the pending packages, which could also be easily possible.
However I guess that the calculation only based on emerge.log could be quite expensive and running a
watch -n1 -cd genlop -c
for some 50+ pending packages even more. Therefore a database replacing emerge.log could be required for such things.Additionally I'm rotating and compressing my logs:
The text was updated successfully, but these errors were encountered: