Your message dated Fri, 30 Jul 2004 14:09:17 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#262078: qa.debian.org: Minor restructuring of 
parse-wnpp.pl's comments
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 29 Jul 2004 17:07:40 +0000
>From [EMAIL PROTECTED] Thu Jul 29 10:07:40 2004
Return-path: <[EMAIL PROTECTED]>
Received: from mail-relay-3.warwick.ac.uk [137.205.128.9] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1BqENY-0000MT-00; Thu, 29 Jul 2004 10:07:40 -0700
Received: from localhost (localhost [127.0.0.1])
        by mail-relay-3.csv.warwick.ac.uk (8.12.11/8.12.9) with ESMTP id 
i6TH7c83027271
        for <[EMAIL PROTECTED]>; Thu, 29 Jul 2004 18:07:39 +0100 (BST)
Received: from mail-relay-3.csv.warwick.ac.uk ([127.0.0.1])
 by localhost (harebell [127.0.0.1]) (amavisd-new, port 10024) with LMTP
 id 28708-219-3 for <[EMAIL PROTECTED]>;
 Thu, 29 Jul 2004 18:07:38 +0100 (BST)
Received: from mail.csv.warwick.ac.uk ([EMAIL PROTECTED] [137.205.128.10])
        by mail-relay-3.csv.warwick.ac.uk (8.12.11/8.12.9) with ESMTP id 
i6TH7Oi0027175
        for <[EMAIL PROTECTED]>; Thu, 29 Jul 2004 18:07:24 +0100 (BST)
Received: from zircon ([EMAIL PROTECTED] [137.205.192.26])
        by mail.csv.warwick.ac.uk (8.12.9/8.12.10) with ESMTP id i6TH70Tv008658;
        Thu, 29 Jul 2004 18:07:00 +0100 (BST)
Received: by zircon (Postfix, from userid 1000)
        id 3F159104C7A; Thu, 29 Jul 2004 18:07:00 +0100 (BST)
Content-Type: multipart/mixed; boundary="===============0649522804=="
MIME-Version: 1.0
From: Euan MacGregor <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: qa.debian.org: Minor restructuring of parse-wnpp.pl's comments
X-Mailer: reportbug 2.63
Date: Thu, 29 Jul 2004 18:07:00 +0100
Message-Id: <[EMAIL PROTECTED]>
X-Virus-Scanned: by amavisd-new
X-Virus-Scanned: by amavisd-new at warwick.ac.uk
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

This is a multi-part MIME message sent by reportbug.

--===============0649522804==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: qa.debian.org
Severity: minor
Tags: patch

The main change is reformatting the description of the output format into a
(IMO clearer) list as well as refer to where type_of_wnpp_entry is validated.

Thanks,

Euan.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-rc1
Locale: LANG=ja_JP.UTF8, LC_CTYPE=ja_JP.UTF8

--===============0649522804==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="parse_wnpp_cleanup.diff"

Index: www/bin/parse-wnpp.pl
===================================================================
RCS file: /cvs/qa/pts/www/bin/parse-wnpp.pl,v
retrieving revision 1.2
diff -u -r1.2 parse-wnpp.pl
--- www/bin/parse-wnpp.pl       26 Mar 2004 06:28:57 -0000      1.2
+++ www/bin/parse-wnpp.pl       29 Jul 2004 16:56:13 -0000
@@ -2,14 +2,15 @@
 # parse-wnpp -- utility to extract information from the wnpp web page
 #
 # On stdin, parse-wnpp takes the web page <http://bugs.debian.org/wnpp>
-# and on stdout, it creates a list of entries of the form
+# and on stdout, it creates a list of entries of the form:
 #
 # package_name type_of_wnpp_entry bug_number age
 #
-# Here "package_name" is the name of the package that appears in the
-# wnpp web-page, "type_of_wnpp_entry" can be "ITA", "O", "RFA", "ITP",
-# #RFP", "bug_number" is the number in the bug tracking system of this bug
-# against wnpp, "age" is a string describing how old this bug is.
+# package_name: the name of the package that appears in the wnpp page
+# type_of_wnpp_entry: "ITA", "O", "RFA", "ITP", "RFP" or "RFH" are considerred
+# valid by www/xsl/pts.xsl.
+# bug_number: the corresponding bug against wnpp in the bug tracking system.
+# age: a string describing how old this bug is.
 #
 # Copyright (c) 2003 Peter van Rossum <[EMAIL PROTECTED]>.  This
 # utility is being distributed under the Gnu General Public License
@@ -37,7 +38,7 @@
     $package = "";
     $title = "";     # We're not using this
   }
-  
+
   if (/#([0-9]*):\s*([A-Z]*)\s*:\s*([^\s\<]+)(\s+-+|\s*:)?\s*(\S.*)?$/) {
     $number = $1;
     $type = $2;

--===============0649522804==--

---------------------------------------
Received: (at 262078-done) by bugs.debian.org; 30 Jul 2004 12:39:34 +0000
>From [EMAIL PROTECTED] Fri Jul 30 05:39:34 2004
Return-path: <[EMAIL PROTECTED]>
Received: from gluck.debian.org [192.25.206.10] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1BqWWW-0006hf-01; Fri, 30 Jul 2004 05:30:08 -0700
Received: from a1-2.ppp10.hrnet.fr (arrakis.home.ouaza.com) [212.94.201.10] 
        by gluck.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1BqWHg-0000r2-00; Fri, 30 Jul 2004 06:14:49 -0600
Received: from localhost (localhost [127.0.0.1])
        by arrakis.home.ouaza.com (Postfix) with ESMTP id 7FBBFEB461;
        Fri, 30 Jul 2004 14:09:17 +0200 (CEST)
Received: from arrakis.home.ouaza.com ([127.0.0.1])
        by localhost (arrakis [127.0.0.1]) (amavisd-new, port 10024)
        with LMTP id 13516-02-2; Fri, 30 Jul 2004 14:09:17 +0200 (CEST)
Received: by arrakis.home.ouaza.com (Postfix, from userid 1000)
        id 6BCA3EB43D; Fri, 30 Jul 2004 14:09:17 +0200 (CEST)
Date: Fri, 30 Jul 2004 14:09:17 +0200
From: Raphael Hertzog <[EMAIL PROTECTED]>
To: Euan MacGregor <[EMAIL PROTECTED]>,
        [EMAIL PROTECTED]
Subject: Re: Bug#262078: qa.debian.org: Minor restructuring of parse-wnpp.pl's 
comments
Message-ID: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-15
Content-Disposition: inline
In-Reply-To: <[EMAIL PROTECTED]>
User-Agent: Mutt/1.5.6+20040523i
X-Virus-Scanned: by amavisd-new-20030616-p9 (Debian) at home.ouaza.com
Content-Transfer-Encoding: quoted-printable
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Quoting Euan MacGregor:
> Package: qa.debian.org
> Severity: minor
> Tags: patch
>=20
> The main change is reformatting the description of the output format in=
to a
> (IMO clearer) list as well as refer to where type_of_wnpp_entry is vali=
dated.

Applied.

Cheers,
--=20
Rapha=EBl Hertzog -+- http://www.ouaza.com
Formation Linux et logiciel libre : http://www.logidee.com
Earn money with free software: http://www.geniustrader.org

Reply via email to