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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C23DC139694 for ; Thu, 11 May 2017 19:47:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A5434E0C44; Thu, 11 May 2017 19:47:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7EAEAE0C44 for ; Thu, 11 May 2017 19:47:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 644923416AB for ; Thu, 11 May 2017 19:47:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 026777439 for ; Thu, 11 May 2017 19:47:20 +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: <1494532016.f65558272f4bb36a9ff25a2310af5afc0608f329.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: Documentation/maintainers/new/ X-VCS-Repository: proj/kde X-VCS-Files: Documentation/maintainers/new/lib.sh X-VCS-Directories: Documentation/maintainers/new/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f65558272f4bb36a9ff25a2310af5afc0608f329 X-VCS-Branch: master Date: Thu, 11 May 2017 19:47: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: cfe8bb37-d2a4-4360-b882-76fcb4f2f412 X-Archives-Hash: b207f878b946a4ff1a53a1bee9f82b4d commit: f65558272f4bb36a9ff25a2310af5afc0608f329 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu May 11 19:46:35 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu May 11 19:46:56 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=f6555827 Documentation: lib.sh: get_package_list_from_set: Trace sets recursively Documentation/maintainers/new/lib.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Documentation/maintainers/new/lib.sh b/Documentation/maintainers/new/lib.sh index 9bd9d1f76c..8da2166e67 100755 --- a/Documentation/maintainers/new/lib.sh +++ b/Documentation/maintainers/new/lib.sh @@ -102,6 +102,10 @@ get_package_list_from_set() { for entry in $(grep -v ^[#@] "${SOURCE_REPO}/sets/${set}") ; do echo $(qatom ${entry} | cut -d " " -f 1-2 | tr " " "/") done + + for entry in $(grep ^@ "${SOURCE_REPO}/sets/${set}") ; do + get_package_list_from_set ${entry/@/} + done } # @FUNCTION: mark_unreleased