Package: reportbug Version: 4.3 Severity: wishlist Tags: patch The af package is not included in Debian anymore. It only appears in oldstable. We could remove af support from reportbug. Here is a patch to remove af support.
Bye, Carl Chenet -- Package-specific info: ** Environment settings: DEBEMAIL="[email protected]" DEBFULLNAME="Carl Chenet" INTERFACE="text" ** /home/chaica/.reportbugrc: reportbug_version "4.3" mode novice ui text smtphost "smtp.free.fr" -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages reportbug depends on: ii apt 0.7.20.2 Advanced front-end for dpkg ii python 2.5.4-2 An interactive high-level object-o ii python-reportbug 4.3 Python modules for interacting wit reportbug recommends no packages. Versions of packages reportbug suggests: pn debconf-utils <none> (no description available) ii debsums 2.0.44 verification of installed package pn dlocate <none> (no description available) ii exim4 4.69-9 metapackage to ease Exim MTA (v4) ii exim4-daemon-light [mail-tran 4.69-9 lightweight Exim MTA (v4) daemon ii file 5.00-1 Determines file type using "magic" ii gnupg 1.4.9-4 GNU privacy guard - a free PGP rep pn python-gnome2-extras <none> (no description available) pn python-gtk2 <none> (no description available) pn python-urwid <none> (no description available) pn python-vte <none> (no description available) -- no debconf information
>From 8ba73c64297f6bb0223110ee6b807b2eabdb6816 Mon Sep 17 00:00:00 2001 From: Carl Chenet <[email protected]> Date: Fri, 22 May 2009 18:18:44 +0200 Subject: [PATCH] remove af MUA support --- bin/reportbug | 3 --- reportbug/utils.py | 2 -- 2 files changed, 0 insertions(+), 5 deletions(-) diff --git a/bin/reportbug b/bin/reportbug index b48f268..d0904f1 100755 --- a/bin/reportbug +++ b/bin/reportbug @@ -714,9 +714,6 @@ def main(): help='send the report using mutt') parser.add_option('--mirror', action='append', help='add a BTS mirror', dest='mirrors') - parser.add_option('-a', '--af', action='store_const', dest='mua', - const=utils.MUA['af'], - help='send the report using af') parser.add_option('-n', '--mh', '--nmh', action='store_const', dest='mua', help='send the report using mh/nmh', const=utils.MUA['mh']) diff --git a/reportbug/utils.py b/reportbug/utils.py index 877afb9..e54effc 100644 --- a/reportbug/utils.py +++ b/reportbug/utils.py @@ -754,7 +754,6 @@ CONFIG_ARGS = ( MUA = { 'mutt' : 'mutt -H', - 'af' : 'af -EH < ', 'mh' : '/usr/bin/mh/comp -use -file', 'gnus' : 'REPORTBUG=%s emacs -l /usr/share/reportbug/reportbug.el -f tfheen-reportbug-insert-template', } @@ -762,7 +761,6 @@ MUA['nmh'] = MUA['mh'] MUAVERSION = { 'mutt' : 'mutt -v', - 'af' : 'af -v ', 'mh' : '/usr/bin/mh/comp -use -file', 'gnus' : 'emacs --version', } -- 1.5.4.3

