Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory (perl-IO-Socket-SSL:2.066 and perl-libwww-perl:6.34 update), and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHEA-2020:4724
perl-TimeDate-2.30-13.el8 fails to build from sources because a test stopped passing in year 2020: Executing(%check): /bin/sh -e /var/tmp/rpm-tmp.9R0jGu + umask 022 + cd /home/test/rhel/perl-TimeDate + cd TimeDate-2.30 + make test PERL_DL_NONLAZY=1 "/usr/bin/perl" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/cpanrt.t ... ok [...] t/getdate.t .. Failed 146/146 subtests t/lang.t ..... ok Test Summary Report ------------------- t/getdate.t (Wstat: 0 Tests: 0 Failed: 0) Parse errors: Bad plan. You planned 146 tests but ran 0. Files=5, Tests=362, 0 wallclock secs ( 0.05 usr 0.01 sys + 0.17 cusr 0.03 csys = 0.26 CPU) Result: FAIL This was fixed in upstream 2.31 version with this commit: commit 36d47308a51350905ebbf01020fa88dcc3bbe3e1 Author: Prajith <me> Date: Thu Jan 2 11:51:23 2020 +0530 Update Test t/getdate.t (cherry picked from commit 9c46fc2657dfae756d17a8a25ab8cd6c124f1f7b) Signed-off-by: Nicolas Rochelemagne <rochelemagne> diff --git a/t/getdate.t b/t/getdate.t index 31b577b..82c5850 100644 --- a/t/getdate.t +++ b/t/getdate.t @@ -156,7 +156,7 @@ Jul 22 10:00:00 UTC 2002 ;1027332000 !; require Time::Local; -my $offset = Time::Local::timegm(0,0,0,1,0,70); +my $offset = Time::Local::timegm(0,0,0,1,0,1970); @data = split(/\n/, $data);