From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1181757-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 126411382C5 for <garchives@archives.gentoo.org>; Mon, 22 Jun 2020 18:21:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C643DE0961; Mon, 22 Jun 2020 18:21:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B11AAE0961 for <gentoo-commits@lists.gentoo.org>; Mon, 22 Jun 2020 18:21:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A6B534F2BC for <gentoo-commits@lists.gentoo.org>; Mon, 22 Jun 2020 18:21:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC4782B8 for <gentoo-commits@lists.gentoo.org>; Mon, 22 Jun 2020 18:21:16 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" <asturm@gentoo.org> Message-ID: <1592848891.6e70d834274b87c7a9338ddc14922ff9049531ee.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: Documentation/maintainers/new/ X-VCS-Repository: proj/kde X-VCS-Files: Documentation/maintainers/new/set-based-remove.sh X-VCS-Directories: Documentation/maintainers/new/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6e70d834274b87c7a9338ddc14922ff9049531ee X-VCS-Branch: master Date: Mon, 22 Jun 2020 18:21:16 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: efb8358f-e512-4b66-bbd2-ba25c093c3fc X-Archives-Hash: a5377d7623fa9d5281d9be108e4082e5 commit: 6e70d834274b87c7a9338ddc14922ff9049531ee Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Mon Jun 22 16:53:05 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=6e70d834 Documentation: set-based-remove.sh: Add pkgcheck support Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> Documentation/maintainers/new/set-based-remove.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Documentation/maintainers/new/set-based-remove.sh b/Documentation/maintainers/new/set-based-remove.sh index 3be839d566..ff4bd8f0f3 100755 --- a/Documentation/maintainers/new/set-based-remove.sh +++ b/Documentation/maintainers/new/set-based-remove.sh @@ -5,6 +5,7 @@ # Optional: # dev-vcs/git # app-portage/mgorny-dev-scripts +# dev-util/pkgcheck . $(dirname "$0")/lib.sh @@ -62,4 +63,10 @@ if [[ -d "${TARGET_REPO}/.git" ]] && hash git 2>/dev/null && hash pkgcommit 2>/d popd > /dev/null done + + if hash pkgcheck 2>/dev/null; then + pushd "${TARGET_REPO}" > /dev/null + pkgcheck scan --commits + popd > /dev/null + fi fi