commit: 43514180101ad6267a7c514ff925af9023b3cd1a
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 22 16:48:13 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jun 22 18:01:31 2020 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=43514180
Documentation: bump-from-set.sh: Add pkgcheck support
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
Documentation/maintainers/bump-from-set.sh | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/Documentation/maintainers/bump-from-set.sh
b/Documentation/maintainers/bump-from-set.sh
index 3ee29bdc4b..b849c11dfa 100755
--- a/Documentation/maintainers/bump-from-set.sh
+++ b/Documentation/maintainers/bump-from-set.sh
@@ -7,6 +7,7 @@
# Optional:
# dev-vcs/git
# app-portage/mgorny-dev-scripts
+# dev-util/pkgcheck
: ${PORTDIR:="$(pwd)"}
@@ -93,4 +94,10 @@ if [[ -d "${PORTDIR}/.git" ]] && hash git 2>/dev/null &&
hash pkgcommit 2>/dev/n
popd > /dev/null
done
+
+ if hash pkgcheck 2>/dev/null; then
+ pushd "${PORTDIR}" > /dev/null
+ pkgcheck scan --commits
+ popd > /dev/null
+ fi
fi