Your message dated Sat, 03 Dec 2005 14:02:22 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#237726: fixed in devscripts 2.9.10
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; 13 Mar 2004 03:06:59 +0000
>From [EMAIL PROTECTED] Fri Mar 12 19:06:59 2004
Return-path: <[EMAIL PROTECTED]>
Received: from dci.doncaster.on.ca (smtp.istop.com) [66.11.168.194]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1B1zUJ-00084z-00; Fri, 12 Mar 2004 19:06:59 -0800
Received: from apocalypse.kuroneko.ca (apocalypse.kuroneko.ca [66.11.160.122])
by smtp.istop.com (Postfix) with ESMTP
id EACF617C439; Fri, 12 Mar 2004 22:06:56 -0500 (EST)
Received: from nightcrawler (nightcrawler.kuroneko.lan [192.168.0.3])
by apocalypse.kuroneko.ca (Postfix) with ESMTP
id E19C37C12F; Fri, 12 Mar 2004 22:06:55 -0500 (EST)
Received: by nightcrawler (Postfix, from userid 1000)
id C43335CAE46; Fri, 12 Mar 2004 22:06:55 -0500 (EST)
Content-Type: multipart/mixed; boundary="===============0387551055=="
MIME-Version: 1.0
From: Eric Dorland <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: bts: patch to allow multiple bugs in reassign/submitter requests
X-Mailer: reportbug 2.52
Date: Fri, 12 Mar 2004 22:06:55 -0500
Message-Id: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_12
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-7.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2004_03_12
X-Spam-Level:
This is a multi-part MIME message sent by reportbug.
--===============0387551055==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: devscripts
Version: 2.7.95.1
Severity: wishlist
Tags: patch
Hi Joey,
Attached is a patch that allows multiple bugs to be specified instead of
just one for a submitter or reassign command. The appropriate # of
reassign or submitter commands are generated.
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.2
Locale: LANG=en_US, LC_CTYPE=en_US
Versions of packages devscripts depends on:
ii debianutils 2.7.2 Miscellaneous utilities specific t
ii dpkg-dev 1.10.20 Package building tools for Debian
ii libc6 2.3.2.ds1-11 GNU C Library: Shared libraries an
ii perl 5.8.3-2 Larry Wall's Practical Extraction
-- no debconf information
--===============0387551055==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="bts.diff"
--- bts.pl.old 2004-03-11 09:41:19.000000000 -0500
+++ bts.pl 2004-03-12 21:45:07.000000000 -0500
@@ -428,7 +428,7 @@
mailbts("retitle $bug to $title", "retitle $bug $title");
}
-=item submitter <bug> <submitter-email>
+=item submitter <bug> [<bug> ...] <submitter-email>
Change the submitter address of a bug, with `!' meaning
`use the address on the current email as the new submitter address'.
@@ -437,21 +437,33 @@
#'
sub bts_submitter {
- my $bug=checkbug(shift) or die "bts submitter: change submitter of what
bug?\n";
- my $submitter=shift or die "bts submitter: change submitter to what?\n";
- mailbts("submitter $bug", "submitter $bug $submitter");
+ @_ or die "bts submitter: change submitter of what bug?\n";
+
+ my $bug;
+ my $submitter=pop or die "bts submitter: change submitter to what?\n";
+
+ foreach (@_) {
+ $bug=checkbug($_) or die "bts submitter: $_ is not a bug\n";
+ mailbts("submitter $bug", "submitter $bug $submitter");
+ }
}
-=item reassign <bug> <package>
+=item reassign <bug> [<bug> ...] <package>
Reassign a bug to a different package.
=cut
sub bts_reassign {
- my $bug=checkbug(shift) or die "bts reassign: reassign what bug?\n";
- my $package=shift or die "bts reassign: reassign \#$bug to what
package?\n";
- mailbts("reassign $bug to $package", "reassign $bug $package");
+ @_ or die "bts reassign: reassign what bug?\n";
+
+ my $bug;
+ my $package=pop or die "bts reassign: reassign to what package?\n";
+
+ foreach (@_) {
+ $bug=checkbug($_) or die "bts reassign: $_ is not a bug\n";
+ mailbts("reassign $bug to $package", "reassign $bug $package");
+ }
}
=item merge <bug> <bug> [<bug> ...]
--===============0387551055==--
---------------------------------------
Received: (at 237726-close) by bugs.debian.org; 3 Dec 2005 22:13:35 +0000
>From [EMAIL PROTECTED] Sat Dec 03 14:13:35 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 4.50)
id 1EifSY-0007LR-3k; Sat, 03 Dec 2005 14:02:22 -0800
From: Julian Gilbey <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.60 $
Subject: Bug#237726: fixed in devscripts 2.9.10
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sat, 03 Dec 2005 14:02:22 -0800
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 4
Source: devscripts
Source-Version: 2.9.10
We believe that the bug you reported is fixed in the latest version of
devscripts, which is due to be installed in the Debian FTP archive:
devscripts_2.9.10.dsc
to pool/main/d/devscripts/devscripts_2.9.10.dsc
devscripts_2.9.10.tar.gz
to pool/main/d/devscripts/devscripts_2.9.10.tar.gz
devscripts_2.9.10_i386.deb
to pool/main/d/devscripts/devscripts_2.9.10_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Julian Gilbey <[EMAIL PROTECTED]> (supplier of updated devscripts package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Sat, 3 Dec 2005 20:24:38 +0000
Source: devscripts
Binary: devscripts
Architecture: source i386
Version: 2.9.10
Distribution: unstable
Urgency: low
Maintainer: Julian Gilbey <[EMAIL PROTECTED]>
Changed-By: Julian Gilbey <[EMAIL PROTECTED]>
Description:
devscripts - Scripts to make the life of a Debian Package maintainer easier
Closes: 232000 237726 246006 326881 339657 340301
Changes:
devscripts (2.9.10) unstable; urgency=low
.
* bts: handle 8-bit encodings in DEBFULLNAME for "From:" field of emails
sent (Closes: #339657)
* bts: submitter and reassign accept multiple bug numbers (Closes:
#237726)
* bts: document "it" for referring to previous bug number
* debchange: provide -m/--maintmaint switch to use the maintainer name
from the most recent changelog entry rather than using the environment
variables (Closes: #232000)
* debcommit: add support for bzr (Closes: #340301)
* debuild: improve examples in manpage (Closes: #326881)
* dpkg-depcheck: completely rewrite symlink handling code to fix bug
where /usr was a symlink (Closes: #246006)
Files:
afaa47564f99155bc7c81657b7dc4f40 685 devel optional devscripts_2.9.10.dsc
c6d7511ec922247696b2f9da14d1c838 337329 devel optional devscripts_2.9.10.tar.gz
d5b455fd3535f4aab3ed34d28f93c68c 293406 devel optional
devscripts_2.9.10_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
iD8DBQFDkgtWDU59w/205FkRAqu0AJ9r4degG5vvYbeweUzYP7Im/WR8jACeOd+8
2TJ+KmA4bv0atc39+D7WWM8=
=lvtT
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]