commit: 8c85629e0501e1c451a8f8981c9a84e705b0b735
Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sat Nov 12 22:30:50 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sat Nov 12 23:29:54 2016 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=8c85629e
Documentation: bump-from-set.sh: Trace sets recursively
Documentation/maintainers/bump-from-set.sh | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Documentation/maintainers/bump-from-set.sh
b/Documentation/maintainers/bump-from-set.sh
index 199af2a..f109233 100755
--- a/Documentation/maintainers/bump-from-set.sh
+++ b/Documentation/maintainers/bump-from-set.sh
@@ -10,6 +10,10 @@ get_package_list_from_set() {
for entry in $(grep -v ^[#@] "${PORTDIR}/sets/${set}") ; do
echo $(qatom ${entry} | cut -d " " -f 1-2 | tr " " "/")
done
+
+ for entry in $(grep ^@ "${PORTDIR}/sets/${set}") ; do
+ get_package_list_from_set ${entry/@/}
+ done
}
get_main_tree_keyword() {