From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id EF707138247 for ; Mon, 6 Jan 2014 01:25:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62DC6E0A6B; Mon, 6 Jan 2014 01:25:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F3173E0A6B for ; Mon, 6 Jan 2014 01:25:23 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2797133F6B6 for ; Mon, 6 Jan 2014 01:25:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 60BF2E54C1 for ; Mon, 6 Jan 2014 01:25:20 +0000 (UTC) From: "Chris Reffett" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Chris Reffett" Message-ID: <1388971432.393c2c22c44470fd351a19569b4e86206cdfeafe.creffett@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: Documentation/maintainers/ X-VCS-Repository: proj/kde X-VCS-Files: Documentation/maintainers/bump_new_revision.sh X-VCS-Directories: Documentation/maintainers/ X-VCS-Committer: creffett X-VCS-Committer-Name: Chris Reffett X-VCS-Revision: 393c2c22c44470fd351a19569b4e86206cdfeafe X-VCS-Branch: master Date: Mon, 6 Jan 2014 01:25:20 +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-Archives-Salt: 22a08030-199e-4631-8461-f57af7515d41 X-Archives-Hash: a43276ec9041ab9e491e07a66486e629 commit: 393c2c22c44470fd351a19569b4e86206cdfeafe Author: Chris Reffett gentoo org> AuthorDate: Sun Jan 5 22:01:36 2014 +0000 Commit: Chris Reffett gentoo org> CommitDate: Mon Jan 6 01:23:52 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=393c2c22 [Documentation/maintainers/bump_new_revision.sh] Add workaround (grep for ${SLOT} to prevent picking up keywords for the wrong slot, add hack (grep -v 4.4.11) to prevent it from picking up keywords from oldpim --- Documentation/maintainers/bump_new_revision.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/maintainers/bump_new_revision.sh b/Documentation/maintainers/bump_new_revision.sh index 01210d0..4da839b 100755 --- a/Documentation/maintainers/bump_new_revision.sh +++ b/Documentation/maintainers/bump_new_revision.sh @@ -117,7 +117,7 @@ update_keywords() { elif (( version_patch < 50 )); then # Patch version is < 50 - stable release, try to obtain keywords from tree if pushd "$(portageq portdir)/${2}" &> /dev/null; then - KEYWORDS=$(ls -1r *-4*.ebuild | grep -v ${BUMP_VERSION} | head -n 1 | xargs sed -ne 's/^KEYWORDS="\(.*\)"/\1/p') + KEYWORDS=$(ls -1r *-4*.ebuild | grep -v ${BUMP_VERSION} | grep -v 4.4.11 | grep ${SLOT} | head -n 1 | xargs sed -ne 's/^KEYWORDS="\(.*\)"/\1/p') [[ -z ${KEYWORDS} ]] && KEYWORDS=${MINIMAL_KEYWORDS} else KEYWORDS=${MINIMAL_KEYWORDS}