
* Stephan Kulow <coolo@suse.de> [2013-08-01 18:04]:
On 01.08.2013 17:55, Robert Schweikert wrote:
On 08/01/2013 05:12 AM, Stephan Kulow wrote:
On 31.07.2013 14:20, Robert Schweikert wrote:
There's a FATE request (#314959) for OBS to provide the info I am after I can't see such a feature on feature.opensuse.org unfortunately.
Hmm that sucks, I guess I need to refrain from using the fat client in the future.
#316218
features.opensuse.org
A snippet from my script to generate reminder mails:
list=`osc api /search/package/?match='@project="openSUSE:Factory"' | grep "<devel project=" | sed -e 's,.*project=",,; s,".*,,' | sort -u` ( for i in $list ; do echo "query $i" >&2 osc meta prj $i osc api /search/package/?match='@project="$i"' done | grep '<person.*role="maintainer"' ) | sed -e 's,.*userid=",,; s,".*,,'
Out of curiousity I've thrown together a shell script that is a bit less fragile than the above and spits out a tab seperated list with four fields per row in the form: project package package maintainers project maintainers As the above script, it needs <projects>*2+1 queries (currently 146*2+1=293) which is still far more efficient than one query per package. -- Guido Berhoerster