Your message dated Tue, 22 Jul 2008 06:02:02 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#489203: fixed in mencal 2.3-8
has caused the Debian Bug report #489203,
regarding mencal does not account for daylight savings time
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.)
--
489203: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=489203
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: mencal
Version: 2.3-7
Severity: normal
Tags: patch
mencal does not account for daylight savings time when calculating the
variable '$day' in the markdays() subroutine, resulting in fractional
values for '$day', which breaks mencal if the start date and current
date are in different daylight savings time states.
This may actually be due to changed behaviour in POSIX::mktime back in
2007, where mktime now sets isdst=-1 by default, instead of setting
isdst=0 by default.
The included patch fixes this problem simply by ensuring that '$day' is
an integer.
-- System Information:
Debian Release: lenny/sid
APT prefers testing
APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=en_CA.iso8859-1 (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
Versions of packages mencal depends on:
ii perl 5.10.0-11 Larry Wall's Practical Extraction
mencal recommends no packages.
-- no debconf information
--- /usr/bin/mencal 2006-07-29 17:57:14.000000000 -0600
+++ mencal 2008-07-03 15:26:01.000000000 -0600
@@ -184,7 +184,7 @@
sub markdays {
my ($self, $begin, $end, $date, $length) = (shift, shift, shift, shift,
shift);
- my $day = ($date - $begin) / (24 * 3600) + 1;
+ my $day = int(($date - $begin) / (24 * 3600) + 1);
my $limit = $date + $length;
$limit = $end if ($end < $limit);
while ($date < $limit) {
--- End Message ---
--- Begin Message ---
Source: mencal
Source-Version: 2.3-8
We believe that the bug you reported is fixed in the latest version of
mencal, which is due to be installed in the Debian FTP archive:
mencal_2.3-8.diff.gz
to pool/main/m/mencal/mencal_2.3-8.diff.gz
mencal_2.3-8.dsc
to pool/main/m/mencal/mencal_2.3-8.dsc
mencal_2.3-8_all.deb
to pool/main/m/mencal/mencal_2.3-8_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.
Andreas Tille <[EMAIL PROTECTED]> (supplier of updated mencal 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: Mon, 21 Jul 2008 22:27:50 +0200
Source: mencal
Binary: mencal
Architecture: source all
Version: 2.3-8
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team <[EMAIL PROTECTED]>
Changed-By: Andreas Tille <[EMAIL PROTECTED]>
Description:
mencal - A menstruation calendar
Closes: 449949 489203
Changes:
mencal (2.3-8) unstable; urgency=low
.
* New Maintainer Debian-Med Packaging Team
<[EMAIL PROTECTED]>
* Group maintenance by Debian Med Team
* debian/control:
- DM-Upload-Allowed: yes
- Added myself to Uploaders
- Added Homepage
- Addef Vcs fields
- Removed version from debhelper
- New Build-Depends: quilt
* debian/rules:
- quilt to handle patch for executable
- DH_COMPAT=5 -> debian/compat
* Standards-Version: 3.8.0 (no changes needed)
* Fixed watch file (thanks to Raphael Geissert <[EMAIL PROTECTED]>
for alternate suggestion)
Closes: #449949
* Applied patch for daylightsaving (Thanks to Scott Barker
<[EMAIL PROTECTED]>)
Closes: #489203
Checksums-Sha1:
9c5d54f68bb3a6e47280bb21b417c231fd4b1700 1280 mencal_2.3-8.dsc
ac9b2a8bb25dd81686d5b1cbcb2a2863b5600ae1 11286 mencal_2.3-8.diff.gz
155a653102d5a7dcfed9df36c3f263f7bfdcedd4 14920 mencal_2.3-8_all.deb
Checksums-Sha256:
4c8a76344e7276e7358039155a4ab3b48db931b6323aa6a0ff7d8d63472b0d42 1280
mencal_2.3-8.dsc
0501fd380d6f853ab60d4f53142a37cf64e1472dd1e52dd7be9b6531754c3db3 11286
mencal_2.3-8.diff.gz
d6e28af2363709fceae5be013bf9415b8ca385cd1c7eac8633c874eb84f96982 14920
mencal_2.3-8_all.deb
Files:
db30fa5df6c695b37acb3a7c7440ebd8 1280 utils optional mencal_2.3-8.dsc
7b714639d6303311c40205b9ed477f15 11286 utils optional mencal_2.3-8.diff.gz
a0789003ab768d194ef1e9b783a134a0 14920 utils optional mencal_2.3-8_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iD8DBQFIhXPDYDBbMcCf01oRAky2AKC2YLlie78f/LGpL97NmELp2OfG8QCfbPdS
NRWBaROis0xf9CxwmRaK/sA=
=g1GE
-----END PGP SIGNATURE-----
--- End Message ---