Your message dated Thu, 14 Jun 2012 02:50:47 +0000
with message-id <[email protected]>
and subject line Bug#603792: fixed in mythtv-status 0.10.0-1
has caused the Debian Bug report #603792,
regarding mythtv-status: throws perl warnings with Date::Manip version 6
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
603792: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603792
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: mythtv-status
Version: 0.9.3-1
Severity: normal
Tags: patch
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
When using Date::Manip version 6 (in which the interface has changed),
mythtv-status throws the following errors:
> Use of uninitialized value in numeric gt (>) at /usr/bin/mythtv-status
> line 867.
> Use of uninitialized value in numeric gt (>) at /usr/bin/mythtv-status
> line 867.
> Use of uninitialized value in numeric gt (>) at /usr/bin/mythtv-status
> line 867.
> Use of uninitialized value in numeric gt (>) at /usr/bin/mythtv-status
> line 867.
> Use of uninitialized value $str in substitution (s///) at
> /usr/bin/mythtv-status line 387.
> Use of uninitialized value $str in substitution (s///) at
> /usr/bin/mythtv-status line 388.
> Use of uninitialized value $str in substitution (s///) at
> /usr/bin/mythtv-status line 389.
> Use of uninitialized value $seconds in numeric le (<=) at
> /usr/bin/mythtv-status line 391.
> Use of uninitialized value $str in concatenation (.) or string at
> /usr/bin/mythtv-status line 393.
Applying the attached patch switches the backend to compatibility mode
and clears the errors. It should not be considered a true fix as D::M
notes that version-5-mode won't be around forever.
- -- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.34 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages mythtv-status depends on:
ii debconf [debconf-2.0] 1.5.36 Debian configuration management sy
ii libconfig-auto-perl 0.20-2 Magical config file parser
ii libdate-manip-perl 6.14-1 module for manipulating dates
ii libmime-tools-perl 5.428-1 Perl5 modules for MIME-compliant m
ii libwww-perl 5.837-1 simple and consistent interface to
ii libxml-libxml-perl 1.70.ds-1 Perl interface to the libxml2 libr
ii perl 5.10.1-16 Larry Wall's Practical Extraction
Versions of packages mythtv-status recommends:
ii libmythtv-perl 0.24-0.2 A personal video recorder applicat
ii libnet-upnp-perl 1.4.2-1 Perl extensions for UPnP
Versions of packages mythtv-status suggests:
ii molly-guard 0.4.4-2 protects machines from accidental
- -- debconf information excluded
- -- debsums errors found:
debsums: changed file /usr/bin/mythtv-status (from mythtv-status package)
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iQIcBAEBCgAGBQJM46aOAAoJEKB7YbRsd8TG4QQQAKY5QIe0CwydQlekDOiu7Pxq
j8JqzdkIvHOnH9MYmXgP5EeRQdeaw7UDgAv8aFCYp/YvWzwpQtdLjjmaP3oDQqoz
kPsMtBUds+sz4+30sJrrsHR5yAj4IzZe+roUVtKvUNl9CqDUyqwU+Ipfw67ZYAM2
z3LHXBRXV42MHi1/gd1hw4xeauvB+XS4Qb2dBNc0NGbcEkISuf3lU1zwpA9A8FDf
9Jv2wSLP60YjGwXy5835fE2zyuRZtOZCEOiy2OxfOeBeZ3JAwBNNCOTvXftjqGpq
wMDCiNCp/OOEu6j6aIe4dHawwn6VwFzOBo2k5+J/pAZUbsg1fhjh5odq7LzZX1r4
s62oJHq/w7v7Epzd6GxUZzV3czP8JCcNs7MgsPARGPBRO4QpFW3H597s+HJsfu+A
bEy6YagHIYtNropxGjzP7N7F1+XfBLzoXi/lRPYN7A98QG/cUCb2E+6juvcmguB7
15xxqI5iiDhFhrUG3Xq/Si0hLx+GQCcH8WUfc5dUwBRGC2SiPY5pOq15O03F3Ss+
uhik73M432t4SU/gFAp3H/sn9v07M5a9JBMLVv2/a1vrA49cSoLkYtk4RH3hKjta
55WmBo1Zl6R3xCSSGQzfxa6q67/yhItwM1NAPb2ihdKCZKKFouUBPcWADIXKqyCK
siPUKdU1HFS1s19K0nNd
=kXof
-----END PGP SIGNATURE-----
--- /usr/bin/mythtv-status.orig 2010-11-17 09:52:08.043031500 +0000
+++ /usr/bin/mythtv-status.new 2010-11-17 09:36:51.347027492 +0000
@@ -10,6 +10,9 @@
use LWP::UserAgent;
use XML::LibXML;
+#BEGIN {
+# $Date::Manip::Backend = 'DM5';
+#}
use Date::Manip;
use Getopt::Long;
use Text::Wrap;
@@ -864,7 +867,7 @@
for my $key (@{ $block->{'human_readable_sizes'}}) {
for my $unit (@size_thresholds) {
if (defined $unit->{'threshold'}) {
- if ($vars->{$key} > $unit->{'threshold'}) {
+ if (defined($vars->{$key}) and $vars->{$key} > $unit->{'threshold'})
{
$vars->{$key} = sprintf("%.1f", $vars->{$key} /
$unit->{'conversion'});
$vars->{"${key}_unit"} = $unit->{'unit'};
--- End Message ---
--- Begin Message ---
Source: mythtv-status
Source-Version: 0.10.0-1
We believe that the bug you reported is fixed in the latest version of
mythtv-status, which is due to be installed in the Debian FTP archive:
mythtv-status_0.10.0-1.debian.tar.gz
to main/m/mythtv-status/mythtv-status_0.10.0-1.debian.tar.gz
mythtv-status_0.10.0-1.dsc
to main/m/mythtv-status/mythtv-status_0.10.0-1.dsc
mythtv-status_0.10.0-1_all.deb
to main/m/mythtv-status/mythtv-status_0.10.0-1_all.deb
mythtv-status_0.10.0.orig.tar.gz
to main/m/mythtv-status/mythtv-status_0.10.0.orig.tar.gz
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.
Andrew Ruthven <[email protected]> (supplier of updated mythtv-status 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.8
Date: Thu, 14 Jun 2012 12:45:37 +1200
Source: mythtv-status
Binary: mythtv-status
Architecture: source all
Version: 0.10.0-1
Distribution: unstable
Urgency: low
Maintainer: Andrew Ruthven <[email protected]>
Changed-By: Andrew Ruthven <[email protected]>
Description:
mythtv-status - Show the status of a MythTV backend
Closes: 603792 656224 675450
Changes:
mythtv-status (0.10.0-1) unstable; urgency=low
.
* New upstream release.
* Make sure we clean up /etc/default/mythtv-status on purge (Closes: #656224)
* Dutch debconf translation from Jeroen Schot (Closes: #675450)
* Bump Standards-Version to 3.9.3.
* Add build-indep and build-arch to debian/rules.
* Add a watch file.
.
mythtv-status (0.9.6-1) unstable; urgency=low
.
* New upstream release.
.
mythtv-status (0.9.5-1) unstable; urgency=low
.
* New upstream release.
* Set the Date::Manip mode to version 5 now (Closes: #603792)
.
mythtv-status (0.9.4-1) unstable; urgency=low
.
* New upstream release.
* Bump Standards-Version to 3.9.1.
Checksums-Sha1:
ee29eb6bd25c166a9dbdd0f904428530aef33f79 1296 mythtv-status_0.10.0-1.dsc
4bad308a47079080490d1882baf68d0593473ba0 30870 mythtv-status_0.10.0.orig.tar.gz
9bbc6468a81a695780f7d62eb266d8b6d707928d 18934
mythtv-status_0.10.0-1.debian.tar.gz
63b0a60b4f1c9527d8e5525622abe222856a1b14 36724 mythtv-status_0.10.0-1_all.deb
Checksums-Sha256:
4f57484f3c079820a4f67af065a0426e3b453aed81f18ed302553b9ed2de7952 1296
mythtv-status_0.10.0-1.dsc
4829c79dfe2038a7128e1b20e0060f8b65b95da8e4a066e26c931ba8200fd144 30870
mythtv-status_0.10.0.orig.tar.gz
23ee65c971551da232d9c81f614ffb3a33c8b97f5d62f761b1fd212f34f0f3e7 18934
mythtv-status_0.10.0-1.debian.tar.gz
5f2485326cc42284d7079634aa302afaadfaa75e20ead496605342b6e76c7dfd 36724
mythtv-status_0.10.0-1_all.deb
Files:
bb9eda14074dfe0b528e9e8645892db4 1296 misc extra mythtv-status_0.10.0-1.dsc
23c24c351187e04e43a23ecdad34af99 30870 misc extra
mythtv-status_0.10.0.orig.tar.gz
ba848872ce5c3409eec1f7a75bdbcbeb 18934 misc extra
mythtv-status_0.10.0-1.debian.tar.gz
eb6f7ccdfd8fe571f2ac66ac8814a622 36724 misc extra
mythtv-status_0.10.0-1_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iD8DBQFP2UgX0obODAxit5ERAnOlAJ9lTTMqGgxIqXW1r9mybdn7Ff3bMgCfYTl3
bnZ6g0rQtL2mNryZNS5Rz+4=
=9dr1
-----END PGP SIGNATURE-----
--- End Message ---