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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 47590158094 for ; Tue, 19 Jul 2022 14:24:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BA96E0C37; Tue, 19 Jul 2022 14:24:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 56F6CE0C37 for ; Tue, 19 Jul 2022 14:24:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 29AD7340E69 for ; Tue, 19 Jul 2022 14:24:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C8317F for ; Tue, 19 Jul 2022 14:24:36 +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: <1658240258.ee04916dd4d7a2d36f8037e4192a624e9de47935.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: ee04916dd4d7a2d36f8037e4192a624e9de47935 X-VCS-Branch: master Date: Tue, 19 Jul 2022 14:24:36 +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: ecd703b8-116f-407d-8e1f-78b7f0654e2f X-Archives-Hash: 69f61c87270e6b1a30292196ddb16819 commit: ee04916dd4d7a2d36f8037e4192a624e9de47935 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Jul 19 14:17:38 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jul 19 14:17:38 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=ee04916d Documentation: maintainers: bump-from-set.sh: Do pkgcommit -> pkgdev here too Signed-off-by: Andreas Sturmlechner gentoo.org> Documentation/maintainers/bump-from-set.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Documentation/maintainers/bump-from-set.sh b/Documentation/maintainers/bump-from-set.sh index a1af16541c..410d991d27 100755 --- a/Documentation/maintainers/bump-from-set.sh +++ b/Documentation/maintainers/bump-from-set.sh @@ -6,7 +6,6 @@ # dev-util/pkgdev # Optional: # dev-vcs/git -# app-portage/mgorny-dev-scripts # dev-util/pkgcheck : ${PORTDIR:="$(pwd)"} @@ -85,12 +84,12 @@ for cp in ${packages} ; do popd > /dev/null done -if [[ -d "${PORTDIR}/.git" ]] && hash git 2>/dev/null && hash pkgcommit 2>/dev/null; then +if [[ -d "${PORTDIR}/.git" ]] && hash git 2>/dev/null && hash pkgdev 2>/dev/null; then for cp in ${packages} ; do pushd "${PORTDIR}/${cp}" > /dev/null git add . - pkgcommit -sS . -m "${DESTINATIONVERSION} version bump" + pkgdev commit . -m "${DESTINATIONVERSION} version bump" popd > /dev/null done