euscan-log: rename from logeuscan
Signed-off-by: Maciej Barć <xgqt@protonmail.com>
This commit is contained in:
33
src/euscan-log
Executable file
33
src/euscan-log
Executable file
@ -0,0 +1,33 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
# Original author: XGQT
|
||||
# Licensed under the ISC License
|
||||
# Copyright (c) 2020, src_prepare group
|
||||
|
||||
# Scan with euscan + log
|
||||
# Requires:
|
||||
# - eix
|
||||
# - euscan
|
||||
|
||||
|
||||
trap 'exit 128' INT
|
||||
export PATH
|
||||
|
||||
|
||||
if [ -z "${1}" ]
|
||||
then
|
||||
echo "No overlay names given"
|
||||
echo "Please give at least one overlay name as a commandline argument"
|
||||
echo "Exiting"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
for overlay in "${@}"
|
||||
do
|
||||
for ebuild in $(EIX_LIMIT=0 eix --only-names --in-overlay "${overlay}")
|
||||
do
|
||||
euscan --nocolor --quiet "${ebuild}" | tee -a "euscan-${overlay}.log"
|
||||
done
|
||||
echo ">>> Done scanning ${overlay}"
|
||||
done
|
Reference in New Issue
Block a user