From 3b4497b656a7d4bd17628f48a3346c3963f10ed5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6kt=C3=BCrk=20Y=C3=BCksek?= Date: Sat, 7 May 2016 15:13:54 -0400 Subject: [PATCH] maintainer-needed.sh: fix orphaned list generation per GLEP 67 #574220 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Orphaned packages contain no tags. Starting with sys-apps/portage-2.2.28, portageq provides the '--orphaned' option which lists maintainer-needed packages. Gentoo-Bug: https://bugs.gentoo.org/574220 Signed-off-by: Göktürk Yüksek --- maintainer-needed.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainer-needed.sh b/maintainer-needed.sh index b883614..05b5e42 100755 --- a/maintainer-needed.sh +++ b/maintainer-needed.sh @@ -9,7 +9,7 @@ cleanup () { [[ -e ${tmpfile} ]] && rm ${tmpfile} } -portageq --no-filters --maintainer-email=maintainer-needed@gentoo.org -n > ${tmpfile} || { cleanup; exit 1; } +portageq --no-filters --orphaned -n > ${tmpfile} || { cleanup; exit 1; } echo """ -- 2.7.3