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 4E38215800F for ; Tue, 7 Feb 2023 10:45:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 879C5E0536; Tue, 7 Feb 2023 10:45:46 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6B30BE0536 for ; Tue, 7 Feb 2023 10:45:46 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 77EE6335D17 for ; Tue, 7 Feb 2023 10:45:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E23B0895 for ; Tue, 7 Feb 2023 10:45:43 +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: <1675766717.a68a87ef541f1c3f0e162b49dd4e4a99ef276577.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: a68a87ef541f1c3f0e162b49dd4e4a99ef276577 X-VCS-Branch: master Date: Tue, 7 Feb 2023 10:45:43 +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: 5df1e9a5-9832-4232-b041-cd954bc7be2a X-Archives-Hash: 53073b64b1b375953bfcc69628956893 commit: a68a87ef541f1c3f0e162b49dd4e4a99ef276577 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Feb 7 10:45:17 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Feb 7 10:45:17 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=a68a87ef Documentation: bump-from-set.sh: Drop ~x86 from "default" KEYWORDS Signed-off-by: Andreas Sturmlechner gentoo.org> Documentation/maintainers/bump-from-set.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/maintainers/bump-from-set.sh b/Documentation/maintainers/bump-from-set.sh index 52771f6092..181ceba131 100755 --- a/Documentation/maintainers/bump-from-set.sh +++ b/Documentation/maintainers/bump-from-set.sh @@ -28,7 +28,7 @@ get_main_tree_keyword() { if [[ -e ${portdir}/${cp} ]] ; then echo $(sed -ne 's/^\s*KEYWORDS="\(.*\)"/\1/p' "$(ls ${portdir}/${cp}/*.ebuild | sort | tail -n 1)") else - echo "~amd64 ~x86" + echo "~amd64" fi }