2020-09-12 05:04:13 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
2020-12-29 21:21:17 +01:00
|
|
|
# This file is part of scripts.
|
|
|
|
|
|
|
|
# scripts is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# scripts is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with scripts. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# Original author: Maciej Barć (xgqt@protonmail.com)
|
2020-12-22 01:52:05 +01:00
|
|
|
# Copyright (c) 2020, src_prepare group
|
2020-12-29 21:21:17 +01:00
|
|
|
# Licensed under the GNU GPL v3 License
|
2020-12-22 01:52:05 +01:00
|
|
|
|
2020-09-12 05:04:13 +02:00
|
|
|
# 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
|