From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QF6yU-0003x4-KL for garchives@archives.gentoo.org; Wed, 27 Apr 2011 15:48:22 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 903421C037; Wed, 27 Apr 2011 15:48:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6091A1C037 for ; Wed, 27 Apr 2011 15:48:13 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BF74E1B4075 for ; Wed, 27 Apr 2011 15:48:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1F3BF80505 for ; Wed, 27 Apr 2011 15:48:12 +0000 (UTC) From: "Andreas K. Huettel" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Huettel" Message-ID: <6d3ccf3ecb265b4afa17666aa2dd27c02ed101bb.dilfridge@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: Documentation/maintainers/ X-VCS-Repository: proj/kde X-VCS-Files: Documentation/maintainers/gen-keywordlist X-VCS-Directories: Documentation/maintainers/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Huettel X-VCS-Revision: 6d3ccf3ecb265b4afa17666aa2dd27c02ed101bb Date: Wed, 27 Apr 2011 15:48:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 82e08cb5641af0d2fc820b9294f3432c commit: 6d3ccf3ecb265b4afa17666aa2dd27c02ed101bb Author: Andreas K. Huettel physik uni-r <= DOT> de> AuthorDate: Wed Apr 27 15:47:22 2011 +0000 Commit: Andreas K. Huettel gentoo org> CommitDate: Wed Apr 27 15:47:22 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/kde.git;a=3Dc= ommit;h=3D6d3ccf3e [maintainers] added helper script --- Documentation/maintainers/gen-keywordlist | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/Documentation/maintainers/gen-keywordlist b/Documentation/ma= intainers/gen-keywordlist new file mode 100755 index 0000000..3a8175f --- /dev/null +++ b/Documentation/maintainers/gen-keywordlist @@ -0,0 +1,14 @@ +for pkg in $(cat $1 |grep -v "^#"|sed -e 's:^=3D::'); do=20 + + category=3D$(echo $pkg|sed -e 's:/.*$::') + p=3D$(echo $pkg|sed -e 's:.*/::') + + ebuild=3D$(find /usr/portage/${category} -name ${p}.ebuild) + + # echo Cat ${category}, P ${p}, ebuild ${ebuild} + + kw=3D"$(grep KEYWORDS ${ebuild} | sed -e 's:^.*KEYWORDS=3D"::' -e 's:"= .*$::')" + + echo "$pkg $kw" + +done