Your message dated Mon, 10 Jan 2005 17:32:12 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#281105: fixed in feta 1.4.12
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 Nov 2004 20:53:51 +0000
>From [EMAIL PROTECTED] Sat Nov 13 12:53:51 2004
Return-path: <[EMAIL PROTECTED]>
Received: from mail.tbdnetworks.com (stargazer.tbdnetworks.com) [63.209.25.99]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CT4u7-0003iF-00; Sat, 13 Nov 2004 12:53:51 -0800
Received: from defiant.tbdnetworks.com
([192.168.4.126] helo=defiant ident=postfix)
by stargazer.tbdnetworks.com with esmtp (Exim 4.34)
id 1CT4tc-0003Y5-1Q; Sat, 13 Nov 2004 12:53:20 -0800
Received: by defiant (Postfix, from userid 511)
id 73865138F9; Sat, 13 Nov 2004 12:53:19 -0800 (PST)
Content-Type: multipart/mixed; boundary="===============0907435070=="
MIME-Version: 1.0
From: Norbert Kiesel <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: feta: minor updates to "available"
X-Mailer: reportbug 3.2
Date: Sat, 13 Nov 2004 12:53:19 -0800
Message-Id: <[EMAIL PROTECTED]>
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.
--===============0907435070==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: feta
Version: 1.4.11
Severity: minor
Tags: patch
Hi,
some minor fixes for the "available" plugin:
- print command by default, switch off with -t
- comment fixes
- help update
-- System Information:
Debian Release: 3.1
APT prefers unstable
APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-rc1-bk16
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Versions of packages feta depends on:
ii apt 0.5.27 Advanced front-end for dpkg
ii debconf 1.4.40 Debian configuration management sy
ii grep-dctrl 2.1.7 Grep Debian package information
ii perl 5.8.4-4 Larry Wall's Practical Extraction
ii wget 1.9.1-10 retrieves files from the web
-- no debconf information
--===============0907435070==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="av.patch1"
--- /usr/share/feta/plugins/available 2004-05-05 08:39:55.000000000 -0700
+++ /usr/local/share/feta/plugins/available 2004-11-08 10:14:53.000000000
-0800
@@ -1,5 +1,5 @@
-#!/usr/bin/perl
-# Copyright (c)2002 Norbert Kiesel <[EMAIL PROTECTED]>
+#!/usr/bin/perl -w
+# Copyright (c) 2002-2004 Norbert Kiesel <[EMAIL PROTECTED]>
# Feta plugin for querying available packages.
# A rewrite of the shell script written by Graham Williams and Kayon Toga.
# Licensed under the GNU GPL.
@@ -7,7 +7,8 @@
# option -q => suppress header
# option -e => surround pattern with ^ and $
# option -f => regexp-quote pattern (like "grep -F")
-# option -y, -t, -v => ignored
+# option -t => turn off teaching mode
+# option -y, -V => ignored
use Getopt::Std;
getopts('qytVef', \%opt);
@@ -21,7 +22,9 @@
$pat = join('|', @ARGV);
$pat = "^($pat)\$" if $opt{e};
-open CACHE, "apt-cache dumpavail |";
+my $cache = "apt-cache dumpavail |";
+print "$cache\n" unless $opt{t};
+open CACHE, $cache;
while (<CACHE>) {
chomp;
$pkg = $1, $packages{$1}++ if /^Package: (.+)/;
@@ -38,7 +41,7 @@
print 'Package Available
Installed
================================================================================
-' unless $opt{'q'};
+' unless $opt{q};
foreach $p (sort keys %packages) {
write if $p =~ /$pat/;
@@ -46,6 +49,6 @@
format STDOUT =
@<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<
@<<<<<<<<<<<<<<<<<<<<<<<<<<
-$p, $available{$p}, $installed{$p}
+$p, $available{$p}||'', $installed{$p}||''
.
--===============0907435070==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="av.patch2"
--- /usr/share/feta/help/available 2004-05-05 08:39:55.000000000 -0700
+++ /usr/local/share/feta/help/available 2004-11-08 13:06:13.000000000
-0800
@@ -4,7 +4,8 @@
'available' displays the available versions of packages, and the currently
installed version. It takes a Perl regular expression to match packages.
If you pass the -f option, it quotes all meta characters (like "grep -F").
-If you pass the -e option, it only matches exactly.
+If you pass the -e option, it only matches exactly. The -t option turns
+off teaching mode.
EXAMPLES
--------
--===============0907435070==--
---------------------------------------
Received: (at 281105-close) by bugs.debian.org; 10 Jan 2005 22:38:28 +0000
>From [EMAIL PROTECTED] Mon Jan 10 14:38:27 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Co8B9-0004Jd-00; Mon, 10 Jan 2005 14:38:27 -0800
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Co856-00059u-00; Mon, 10 Jan 2005 17:32:12 -0500
From: Joe Wreschnig <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.54 $
Subject: Bug#281105: fixed in feta 1.4.12
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 10 Jan 2005 17:32:12 -0500
Delivered-To: [EMAIL PROTECTED]
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-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-Spam-Level:
X-CrossAssassin-Score: 2
Source: feta
Source-Version: 1.4.12
We believe that the bug you reported is fixed in the latest version of
feta, which is due to be installed in the Debian FTP archive:
feta_1.4.12.dsc
to pool/main/f/feta/feta_1.4.12.dsc
feta_1.4.12.tar.gz
to pool/main/f/feta/feta_1.4.12.tar.gz
feta_1.4.12_all.deb
to pool/main/f/feta/feta_1.4.12_all.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.
Joe Wreschnig <[EMAIL PROTECTED]> (supplier of updated feta 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: Mon, 10 Jan 2005 16:21:04 -0600
Source: feta
Binary: feta
Architecture: source all
Version: 1.4.12
Distribution: unstable
Urgency: low
Maintainer: Joe Wreschnig <[EMAIL PROTECTED]>
Changed-By: Joe Wreschnig <[EMAIL PROTECTED]>
Description:
feta - simpler interface to APT, dpkg, and other package tools
Closes: 280547 281105 281108
Changes:
feta (1.4.12) unstable; urgency=low
.
* Support for teaching mode in 'available'. (Closes: #281105)
* Include 'distribution' plugin. (Closes: #281108)
(Thanks to Norbert Kiesel for both of the above.)
* Continue prompting for implicit updates, since the APT cache
updates even if Packages files aren't changed. In the future,
bugs without bodies will be closed immediately. (Closes: #280547)
Files:
b62f9214a5dc3395432ee76857cf5f32 488 admin optional feta_1.4.12.dsc
c7e02b8f97c719316d6f1e685dc47dd3 51681 admin optional feta_1.4.12.tar.gz
32f380d5e6f28ad3b3c64c9356df8328 47254 admin optional feta_1.4.12_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)
iD8DBQFB4wCHTFkUq7Drx3cRAm1BAJ0b5uj66G+blbIZn+FNr0/aKmZSVACePJO4
Kj3juuT151+KAt1fyiJ3D3o=
=REvZ
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]