From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 22DC213835B for ; Mon, 22 Jun 2020 18:21:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4440EE095E; 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 30C35E095E for ; 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 C1BE834F2B8 for ; Mon, 22 Jun 2020 18:21:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C711C2B3 for ; Mon, 22 Jun 2020 18:21:16 +0000 (UTC) From: "Andreas Sturmlechner" 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" Message-ID: <1592848891.43514180101ad6267a7c514ff925af9023b3cd1a.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: Documentation/maintainers/ X-VCS-Repository: proj/kde X-VCS-Files: Documentation/maintainers/bump-from-set.sh X-VCS-Directories: Documentation/maintainers/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 43514180101ad6267a7c514ff925af9023b3cd1a X-VCS-Branch: master Date: Mon, 22 Jun 2020 18:21:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c4a5511c-6cba-4448-af6f-58d856fd2ffc X-Archives-Hash: d5af02cdd0553ba4786667161d579fce commit: 43514180101ad6267a7c514ff925af9023b3cd1a Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Jun 22 16:48:13 2020 +0000 Commit: Andreas Sturmlechner gentoo 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 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