Assembling packages for ISO's

2008-09-10 Thread Bryce
Can anyone think of a more succinct means to drag out all the latest rpms based on a tag? I could only came up with this horror. mkdir pool; cd pool TAG=f9-bryced koji list-pkgs --tag=${TAG} --quiet | cut -f 1 -d " " | xargs koji latest-pkg ${TAG} --quiet | cut -f1 -d " " | xargs -n1 koji downloa

Re: Assembling packages for ISO's

2008-09-10 Thread Jon Stanley
On Wed, Sep 10, 2008 at 7:33 AM, Bryce <[EMAIL PROTECTED]> wrote: > mkdir pool; cd pool > TAG=f9-bryced > koji list-pkgs --tag=${TAG} --quiet | cut -f 1 -d " " | xargs koji latest-pkg > ${TAG} --quiet | cut -f1 -d " " | xargs -n1 koji download-build --arch=i386 > --arch=i686 --arch=noarch Maybe

Re: Assembling packages for ISO's

2008-09-10 Thread Bryce
Jon Stanley wrote: > On Wed, Sep 10, 2008 at 7:33 AM, Bryce <[EMAIL PROTECTED]> wrote: > > >> mkdir pool; cd pool >> TAG=f9-bryced >> koji list-pkgs --tag=${TAG} --quiet | cut -f 1 -d " " | xargs koji >> latest-pkg ${TAG} --quiet | cut -f1 -d " " | xargs -n1 koji download-build >> --arch=i386