2020-12-22 01:44:44 +01: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
|
2021-03-29 13:02:30 +02:00
|
|
|
# the Free Software Foundation, version 3.
|
2020-12-29 21:21:17 +01:00
|
|
|
|
|
|
|
# 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/>.
|
|
|
|
|
2021-04-18 02:02:15 +02:00
|
|
|
# Original author: Maciej Barć <xgqt@riseup.net>
|
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-12-22 01:44:44 +01:00
|
|
|
trap 'exit 128' INT
|
|
|
|
export PATH
|
|
|
|
|
|
|
|
|
|
|
|
main() {
|
|
|
|
[ -f Manifest ] && rm -v Manifest
|
|
|
|
repoman --verbose manifest
|
|
|
|
|
|
|
|
repoman --verbose -Idx full
|
2020-12-24 23:09:05 +01:00
|
|
|
pkgcheck --verbose scan
|
2020-12-22 01:44:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
case ${1}
|
|
|
|
in
|
|
|
|
-h | -help | --help )
|
2021-06-04 10:19:26 +02:00
|
|
|
printf "%s\n" \
|
|
|
|
"Usage: ${0}" \
|
|
|
|
"Performed in this script:" \
|
|
|
|
"1. remove Manifest file" \
|
|
|
|
"2. regen Manifest with 'repoman manifest'" \
|
|
|
|
"3. Check with 'repoman -Idx full'" \
|
|
|
|
"4. Check with 'pkgcheck scan'"
|
2020-12-22 01:44:44 +01:00
|
|
|
;;
|
|
|
|
* )
|
|
|
|
main
|
|
|
|
;;
|
|
|
|
esac
|