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 5164C1387B1 for ; Mon, 6 Jan 2014 01:25:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A254E0A63; Mon, 6 Jan 2014 01:25:23 +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 D7CDAE0A63 for ; Mon, 6 Jan 2014 01:25:22 +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 0B37533F6B6 for ; Mon, 6 Jan 2014 01:25:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8C47AE5533 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.8d033c72b0a1687134d1089a44cb22a7109094d6.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: 8d033c72b0a1687134d1089a44cb22a7109094d6 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: 3975af95-eb11-47e6-b215-9afd8874cc5e X-Archives-Hash: 77858ee3a37dc7ef7fa5cdd6caaca4ec commit: 8d033c72b0a1687134d1089a44cb22a7109094d6 Author: Chris Reffett gentoo org> AuthorDate: Sun Jan 5 23:20:18 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=8d033c72 [Documentation/maintainers/bump_new_revision.sh] Make it not match 4.4.11 == pykde4-4.11 by escaping the . --- 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 4da839b..c273b6b 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} | grep -v 4.4.11 | grep ${SLOT} | 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}