--- Begin Message ---
Subject: |
oath-toolkit FTBFS on 32-bit big-endian hppa platform |
Date: |
Mon, 29 Apr 2024 14:32:31 +0200 |
User-agent: |
Mozilla Thunderbird |
Source: oath-toolkit
Version: 2.6.11
Tags: ftbfs, patch
X-Debbugs-Cc: deller@debian.org
User: debian-arm@lists.debian.org
Usertags: time-t
As can be seen here:
https://buildd.debian.org/status/fetch.php?pkg=oath-toolkit&arch=hppa&ver=2.6.11-2.1&stamp=1713624192&raw=0
oath-toolkit testsuite fails on hppa like this:
FAIL: oathtool --verbose --totp --now @0 00
expected:
Start time: 1970-01-01 00:00:00 UTC (0)
Current time: 1970-01-01 00:00:00 UTC (0)
got:
Start time: 1970-01-01 00:00:00 UTC (2130640639)
Current time: 1970-01-01 00:00:00 UTC (35)
The failure stems from the fact that hppa is a 32-bit big-endian platform,
and which is the reason as well, why it does not fail on 32-bit little endian
platforms.
(Although this is not an issue on arm, I nevertheless added the usertag since
this bug in timet related)
The C-code is similar to this:
printf ("Current time: %ld\n", tim);
where tim is of type "time_t".
time_t can be 32- or 64-bit, depending on compile flags.
On Debian we now did for 32-bit platforms the time64 transition, which
made that value become a 64-bit entity.
So, the "%ld" printf format which defines 32-bit values on hppa does not
fit to the 64-bit tim value stored on the stack. Additionally hppa has
alignment requirements for 64-bit values which are put on the stack, which
is why a wrong value is printed in the testcase.
Solution is either to apply the attached patch, or to make printf
use "%ld" for 32-bit time_t and "%lld" for 64-bit time_t, which needs
to be checked at compile-time.
oathtool.c.patch
Description: Text Data
--- End Message ---
--- Begin Message ---
Subject: |
Bug#1070056: fixed in oath-toolkit 2.6.11-3 |
Date: |
Tue, 30 Apr 2024 11:54:36 +0000 |
Source: oath-toolkit
Source-Version: 2.6.11-3
Done: Simon Josefsson <simon@josefsson.org>
We believe that the bug you reported is fixed in the latest version of
oath-toolkit, which is due to be installed in the Debian FTP archive.
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 1070056@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Simon Josefsson <simon@josefsson.org> (supplier of updated oath-toolkit 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 ftpmaster@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Tue, 30 Apr 2024 13:13:06 +0200
Source: oath-toolkit
Architecture: source
Version: 2.6.11-3
Distribution: unstable
Urgency: medium
Maintainer: OATH Toolkit Team <oath-toolkit-help@nongnu.org>
Changed-By: Simon Josefsson <simon@josefsson.org>
Closes: 1070056
Changes:
oath-toolkit (2.6.11-3) unstable; urgency=medium
.
[ Helge Deller ]
* Fix 32-bit big-endian oathtool bug. Closes: #1070056.
.
[ Simon Josefsson ]
* Add upstream patch for spurious make -j build failures.
* Add Build-Depends: help2man.
Checksums-Sha1:
b2463944aa1919beb03b3fede721e0cf16ad6260 2140 oath-toolkit_2.6.11-3.dsc
842200850688758b853c6f934f4e5fb75a17b2a3 15688
oath-toolkit_2.6.11-3.debian.tar.xz
f022eb8c99f41f00d8f983a3c5611cd8169f5070 9748
oath-toolkit_2.6.11-3_amd64.buildinfo
Checksums-Sha256:
14935d016c4a3c165cc147267a511827f5f631b633b4461e5d1210ae675530c5 2140
oath-toolkit_2.6.11-3.dsc
98bf77dc407bf26af52ad677d32c5ae7f467e9a9b21d8e9336b677b13ef9c115 15688
oath-toolkit_2.6.11-3.debian.tar.xz
4a75674146c1f2510f9425fd5e1299f36699845441b6efe1af86493af563b0c7 9748
oath-toolkit_2.6.11-3_amd64.buildinfo
Files:
cab0b6cf3add5c3b1b2f459411b4989c 2140 devel optional oath-toolkit_2.6.11-3.dsc
5cc015111b6e94aca16127b444968a54 15688 devel optional
oath-toolkit_2.6.11-3.debian.tar.xz
1e009d4e6464cf72eb443be063ff70e3 9748 devel optional
oath-toolkit_2.6.11-3_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iIoEARYIADIWIQSjzJyHC50xCrrUzy9RcisI/kdFogUCZjDYWBQcc2ltb25Aam9z
ZWZzc29uLm9yZwAKCRBRcisI/kdFoj+YAP9vQfXBfk7iAkZDXAKyiwfe0I2AIMCg
aobuth8PqtkZJQEAlu/G0nfruuhl45Bouig04w0CyVDjjwbvYzNVZrlIHgk=
=r+mh
-----END PGP SIGNATURE-----
pgpPXbdqPGTa1.pgp
Description: PGP signature
--- End Message ---