Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions keywording/workflow/text.xml
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,17 @@ There are several tools available that can help with this:
tab)
</li>
<li>
Use <c>pkgcheck</c>'s <c>StableRequest</c> check, e.g.
<c>grep -ri "larry@" */*/metadata.xml -l | cut -d'/' -f1-2 | xargs pkgcheck scan -k StableRequest</c>
Use <c>pkgcheck</c>'s <c>StableRequest</c> check, for example via
<ul>
<li>
<c>grep -ri "larry@" */*/metadata.xml -l | cut -d'/' -f1-2 | xargs pkgcheck scan -k StableRequest</c>
(using <c>grep</c> and <c>pkgcheck</c>)
</li>
<li>
<c>pquery --no-version --maintainer larry@gentoo.org | xargs pkgcheck scan -k StableRequest</c>
(using <c>pquery</c> from <c>pkgcore</c> and <c>pkgcheck</c>)
</li>
</ul>
</li>
<li>
Use <c>pkgdev bugs</c> for finding and filing stabilization bugs, e.g.
Expand Down
Loading