Introducing bugs.qa.debian.org

2003-01-19 Thread Colin Watson
Hi,

bugs.qa.debian.org has been created, with the general remit of hosting
QA-related services that need direct access to the debbugs database on
master. It currently features replacements for base.debian.net and
standard.debian.net, which were due to lose hosting; these replacements
end up using bugs.debian.org for most of their detailed displays, which
I think is the way it should be.

The 'qa' group on master has write access to it. If you feel like adding
anything else to bugs.qa within the remit above, please do. Better web
design would be a good start.

While I'm here: there are currently 23 RC bugs in base (17 discounting
pending and sid), and 22 RC bugs in standard (18 discounting pending and
sid).

Cheers,

-- 
Colin Watson  [EMAIL PROTECTED]



debian-installer bugs page

2003-01-19 Thread Matt Kraai
Howdy,

There is a nice page of bugs in the base system[1].  It would be
helpful to have a similar page for the bugs in debian-installer.
Could someone please create this, or point me in the right
direction?

Matt

1. http://bugs.qa.debian.org/cgi-bin/base.cgi



Re: debian-installer bugs page

2003-01-19 Thread Colin Watson
On Sun, Jan 19, 2003 at 05:52:15PM -0800, Matt Kraai wrote:
> There is a nice page of bugs in the base system[1].  It would be
> helpful to have a similar page for the bugs in debian-installer.
> Could someone please create this, or point me in the right
> direction?
> 
> Matt
> 
> 1. http://bugs.qa.debian.org/cgi-bin/base.cgi

OK, please tell me how to list the packages that form part of
debian-installer and I'll do it.

-- 
Colin Watson  [EMAIL PROTECTED]



Re: debian-installer bugs page

2003-01-19 Thread Petter Reinholdtsen
[Matt Kraai]
> There is a nice page of bugs in the base system[1].  It would be
> helpful to have a similar page for the bugs in debian-installer.
> Could someone please create this, or point me in the right
> direction?

Not quite the same, but I use
http://qa.debian.org/[EMAIL PROTECTED]>
to get a overview of the current status.



Re: debian-installer bugs page

2003-01-19 Thread Matt Kraai
On Sun, Jan 19, 2003 at 06:07:42PM +, Colin Watson wrote:
> On Sun, Jan 19, 2003 at 05:52:15PM -0800, Matt Kraai wrote:
> > There is a nice page of bugs in the base system[1].  It would be
> > helpful to have a similar page for the bugs in debian-installer.
> > Could someone please create this, or point me in the right
> > direction?
> > 
> > Matt
> > 
> > 1. http://bugs.qa.debian.org/cgi-bin/base.cgi
> 
> OK, please tell me how to list the packages that form part of
> debian-installer

wget 
http://ftp.us.debian.org/debian/dists/sid/main/debian-installer/binary-i386/Packages
 | sed -n 's/^Package: .*$/\1/p'

>  and I'll do it.

Thanks.

Matt



Re: debian-installer bugs page

2003-01-19 Thread Martin Sjögren
sön 2003-01-19 klockan 19.07 skrev Colin Watson:
> On Sun, Jan 19, 2003 at 05:52:15PM -0800, Matt Kraai wrote:
> > There is a nice page of bugs in the base system[1].  It would be
> > helpful to have a similar page for the bugs in debian-installer.
> > Could someone please create this, or point me in the right
> > direction?
> > 
> > Matt
> > 
> > 1. http://bugs.qa.debian.org/cgi-bin/base.cgi
> 
> OK, please tell me how to list the packages that form part of
> debian-installer and I'll do it.

What's wrong with the stuff in /org/bugs.qa.debian.org/data/lists? No
way to keep it up to date? I mean, there is a /cgi-bin/d-i.cgi that
currently gives Internal Server Error because it isn't executable...


/Martin


signature.asc
Description: Detta är en digitalt signerad	meddelandedel


Re: debian-installer bugs page

2003-01-19 Thread Colin Watson
On Sun, Jan 19, 2003 at 06:07:42PM +, Colin Watson wrote:
> On Sun, Jan 19, 2003 at 05:52:15PM -0800, Matt Kraai wrote:
> > There is a nice page of bugs in the base system[1].  It would be
> > helpful to have a similar page for the bugs in debian-installer.
> > Could someone please create this, or point me in the right
> > direction?
> > 
> > Matt
> > 
> > 1. http://bugs.qa.debian.org/cgi-bin/base.cgi
> 
> OK, please tell me how to list the packages that form part of
> debian-installer and I'll do it.

Actually, forget that, I worked it out.
http://bugs.qa.debian.org/cgi-bin/debian-installer.cgi should do the
job.

The list works by source package; glibc is included because it has udebs
on some architectures.

Cheers,

-- 
Colin Watson  [EMAIL PROTECTED]



Re: debian-installer bugs page

2003-01-19 Thread Colin Watson
On Sun, Jan 19, 2003 at 07:26:39PM +0100, Martin Sj?gren wrote:
> s?n 2003-01-19 klockan 19.07 skrev Colin Watson:
> > OK, please tell me how to list the packages that form part of
> > debian-installer and I'll do it.
> 
> What's wrong with the stuff in /org/bugs.qa.debian.org/data/lists? No
> way to keep it up to date? I mean, there is a /cgi-bin/d-i.cgi that
> currently gives Internal Server Error because it isn't executable...

You caught me in the middle of setting it up, that's all.

-- 
Colin Watson  [EMAIL PROTECTED]



Re: debian-installer bugs page

2003-01-19 Thread Colin Watson
On Sun, Jan 19, 2003 at 06:29:11PM -0800, Matt Kraai wrote:
> On Sun, Jan 19, 2003 at 06:07:42PM +, Colin Watson wrote:
> > OK, please tell me how to list the packages that form part of
> > debian-installer
> 
> wget 
> http://ftp.us.debian.org/debian/dists/sid/main/debian-installer/binary-i386/Packages
>  | sed -n 's/^Package: .*$/\1/p'

I ended up with:

zcat /org/ftp.debian.org/ftp/dists/sid/main/debian-installer/*/Packages.gz \
| grep-dctrl -rsPackage,Source . \
| perl -l -000 -ne 'if (/^Source: (.+)/m) { print $1 } elsif (/^Package: 
(.+)/m) { print $1 }' \
| sort -u > /org/bugs.qa.debian.org/data/lists/debian-installer

... because I need the source packages. This seems to work.

-- 
Colin Watson  [EMAIL PROTECTED]