Mailing List Archive

[RELEASE CANDIDATE] mod_perl-2.0.12 RC1
Please download, test, and report back on this mod_perl 2.0.12 release
candidate.

https://dist.apache.org/repos/dist/dev/perl/mod_perl-2.0.12-rc1.tar.gz

SHA256:
mod_perl-2.0.12-rc1.tar.gz: 50CF6B06 6BAFF225 78F3BB77 7695F6CC 142D1F68
8E085067 A055EB2B B58425D3

SHA512:
mod_perl-2.0.12-rc1.tar.gz: 320DDC4C 896F68BE C50C54D5 03179D81 B6FFB889
C66BB568 FD5976F4 BD1224BE 617B2DFB E78D6DF0
AC8F9474 93730DD1 763A2A50 E594D407 B36336E4
69ABE24F

Major changes in this release are as follows:

Fix detection of APR's threading support on RHEL 8. [Petr Písa?
<ppisar@redhat.com>]

Fix build for perl >= 5.33.7. [Leon Timmermans <fawaka@gmail.com>]

Fix SIGSEGV crash due to wrong use of perl_parse(). [Charles Pigott
<cpigott@rapitasystems.com>]

Improve installation instructions for AIX. [Rainer Tammer
<rainer.tammer@schulergroup.com>]
Re: [RELEASE CANDIDATE] mod_perl-2.0.12 RC1 [ In reply to ]
Thanks for the release. I will test it on my ubuntu system.


Steve Hay <stevehay@apache.org>?2021?11?7? ????9:49???

> Please download, test, and report back on this mod_perl 2.0.12 release
> candidate.
>
> https://dist.apache.org/repos/dist/dev/perl/mod_perl-2.0.12-rc1.tar.gz
>
> SHA256:
> mod_perl-2.0.12-rc1.tar.gz: 50CF6B06 6BAFF225 78F3BB77 7695F6CC 142D1F68
> 8E085067 A055EB2B B58425D3
>
> SHA512:
> mod_perl-2.0.12-rc1.tar.gz: 320DDC4C 896F68BE C50C54D5 03179D81 B6FFB889
> C66BB568 FD5976F4 BD1224BE 617B2DFB E78D6DF0
> AC8F9474 93730DD1 763A2A50 E594D407 B36336E4
> 69ABE24F
>
> Major changes in this release are as follows:
>
> Fix detection of APR's threading support on RHEL 8. [Petr Písa?
> <ppisar@redhat.com>]
>
> Fix build for perl >= 5.33.7. [Leon Timmermans <fawaka@gmail.com>]
>
> Fix SIGSEGV crash due to wrong use of perl_parse(). [Charles Pigott
> <cpigott@rapitasystems.com>]
>
> Improve installation instructions for AIX. [Rainer Tammer
> <rainer.tammer@schulergroup.com>]
>
Re: [RELEASE CANDIDATE] mod_perl-2.0.12 RC1 [ In reply to ]
On Sun, 7 Nov 2021 13:48:58 +0000
Steve Hay <stevehay@apache.org> wrote:

> Please download, test, and report back on this mod_perl 2.0.12 release
> candidate.
>
> https://dist.apache.org/repos/dist/dev/perl/mod_perl-2.0.12-rc1.tar.gz
>

Hi Steve,

Tested on Debian 10.10 (Buster)

I had to do the following to run the test suite :

Got the error
/usr/bin/ld: cannot find -lperl

Followed this advice
https://stackoverflow.com/questions/335928/ld-cannot-find-an-existing-library

and linked libperl.so to libperl.so.5.28.1 (the current library)

Then got this error :

~..(13)Permission denied: AH00091: apache2: could not open error log file /home/vincent/tmp/mod_perl-2.0.12-rc1/t/logs/error_log.
AH00015: Unable to open logs

So :

/tmp/mod_perl-2.0.12-rc1/t# chgrp vincent logs
~/tmp/mod_perl-2.0.12-rc1/t# chmod g+w logs

Tests runs fine, with this warning for just about all tests :

t/protocol/echo_filter.t ................ [Mon Nov 08 21:03:49.933516 2021] [core:warn] [pid 25091] AH00111: Config variable ${APACHE_RUN_DIR} is not defined
apache2: Syntax error on line 80 of /etc/apache2/httpd.conf: DefaultRuntimeDir must be a valid directory, absolute or relative to ServerRoot


Here is the Test Summary Report

-------------------
t/apache/daemon.t (Wstat: 0 Tests: 2 Failed: 2)
Failed tests: 1-2
t/filter/in_bbs_inject_header.t (Wstat: 0 Tests: 36 Failed: 3)
Failed tests: 22, 26, 30
Files=245, Tests=3505, 758 wallclock secs ( 2.95 usr 1.22 sys + 574.12 cusr 163.00 csys = 741.29 CPU)
Result: FAIL
Failed 2/245 test programs. 5/3505 subtests failed.
[warning] server localhost:8529 shutdown
[warning] port 8529 still in use...
done
[ error] error running tests (please examine t/logs/error_log)
-------------------


Installed packages :

apache2 2.4.38-3+deb10u5 i386 Apache HTTP Server
libapache2-mod-perl2 2.0.10-3 i386 Integration of perl with the Apache2 web server

Machine is an IBM X201

Attached :

t/logs/error_log



--
Bien ? vous, Vincent Veyron

https://marica.fr/
Logiciel de gestion des sinistres assurances, des dossiers contentieux et des contrats pour le service juridique
Re: [RELEASE CANDIDATE] mod_perl-2.0.12 RC1 [ In reply to ]
On Mon, 8 Nov 2021 at 20:34, vincent.veyron@libremen.org
<vincent.veyron@libremen.org> wrote:
>
> On Sun, 7 Nov 2021 13:48:58 +0000
> Steve Hay <stevehay@apache.org> wrote:
>
> > Please download, test, and report back on this mod_perl 2.0.12 release
> > candidate.
> >
> > https://dist.apache.org/repos/dist/dev/perl/mod_perl-2.0.12-rc1.tar.gz
> >
>
> Hi Steve,
>
> Tested on Debian 10.10 (Buster)
>
> I had to do the following to run the test suite :
>
> Got the error
> /usr/bin/ld: cannot find -lperl
>
> Followed this advice
> https://stackoverflow.com/questions/335928/ld-cannot-find-an-existing-library
>
> and linked libperl.so to libperl.so.5.28.1 (the current library)
>
> Then got this error :
>
> ~..(13)Permission denied: AH00091: apache2: could not open error log file /home/vincent/tmp/mod_perl-2.0.12-rc1/t/logs/error_log.
> AH00015: Unable to open logs
>
> So :
>
> /tmp/mod_perl-2.0.12-rc1/t# chgrp vincent logs
> ~/tmp/mod_perl-2.0.12-rc1/t# chmod g+w logs
>
> Tests runs fine, with this warning for just about all tests :
>
> t/protocol/echo_filter.t ................ [Mon Nov 08 21:03:49.933516 2021] [core:warn] [pid 25091] AH00111: Config variable ${APACHE_RUN_DIR} is not defined
> apache2: Syntax error on line 80 of /etc/apache2/httpd.conf: DefaultRuntimeDir must be a valid directory, absolute or relative to ServerRoot
>
>
> Here is the Test Summary Report
>
> -------------------
> t/apache/daemon.t (Wstat: 0 Tests: 2 Failed: 2)
> Failed tests: 1-2
> t/filter/in_bbs_inject_header.t (Wstat: 0 Tests: 36 Failed: 3)
> Failed tests: 22, 26, 30
> Files=245, Tests=3505, 758 wallclock secs ( 2.95 usr 1.22 sys + 574.12 cusr 163.00 csys = 741.29 CPU)
> Result: FAIL

Thanks for testing, and apologies for the slow response.

The t/filter/in_bbs_inject_header.t failure is documented in the
README. I don't recall seeing the t/apache/daemon.t failure before.
Does it happen with the current release version (2.0.11) as well?
Re: [RELEASE CANDIDATE] mod_perl-2.0.12 RC1 [ In reply to ]
On Tue, 23 Nov 2021 08:37:44 +0000
Steve Hay <steve.m.hay@googlemail.com> wrote:

>I don't recall seeing the t/apache/daemon.t failure before.

Steve,

I realized I did not run the tests with 2.0.12 correctly (ran t/TEST without doing 'make test' first)

Here is the result of a re-run :

Test Summary Report
-------------------
t/filter/in_bbs_inject_header.t (Wstat: 0 Tests: 36 Failed: 3)
Failed tests: 22, 26, 30
Files=245, Tests=3505, 723 wallclock secs ( 3.01 usr 1.06 sys + 552.93 cusr 152.53 csys = 709.53 CPU)
Result: FAIL
Failed 1/245 test programs. 3/3505 subtests failed.
[warning] server localhost:8529 shutdown
[warning] port 8529 still in use...
done

So, only the documented bbs_inject_header.t fails

--

Bien ? vous, Vincent Veyron

https://compta.libremen.com
Logiciel libre de comptabilit? g?n?rale en partie double
--
Vincent Veyron <vv.lists@wanadoo.fr>
Re: [RELEASE CANDIDATE] mod_perl-2.0.12 RC1 [ In reply to ]
On Tue, 23 Nov 2021 08:37:44 +0000
Steve Hay <steve.m.hay@googlemail.com> wrote:

>I don't recall seeing the t/apache/daemon.t failure before.

?[repost, it seems my first message did not get through]

Steve,

I realized I did not run the tests with 2.0.12 correctly (ran t/TEST without doing 'make test' first)

Here is the result of a re-run :

Test Summary Report
-------------------
t/filter/in_bbs_inject_header.t (Wstat: 0 Tests: 36 Failed: 3)
Failed tests: 22, 26, 30
Files=245, Tests=3505, 723 wallclock secs ( 3.01 usr 1.06 sys + 552.93 cusr 152.53 csys = 709.53 CPU)
Result: FAIL
Failed 1/245 test programs. 3/3505 subtests failed.
[warning] server localhost:8529 shutdown
[warning] port 8529 still in use...
done

So, only the documented bbs_inject_header.t fails

--

Bien à vous, Vincent Veyron

https://compta.libremen.com
Logiciel libre de comptabilité générale en partie double
--
Vincent Veyron <vv.lists@wanadoo.fr>
Re: [RELEASE CANDIDATE] mod_perl-2.0.12 RC1 [ In reply to ]
I successfully compiled, tested, and ran this without previous workarounds
and patches for arch linux with a makepkg package.

Perl: v5.34.0
Apache: 2.4.51

On Sun, 7 Nov 2021 at 13:49, Steve Hay <stevehay@apache.org> wrote:

> Please download, test, and report back on this mod_perl 2.0.12 release
> candidate.
>
> https://dist.apache.org/repos/dist/dev/perl/mod_perl-2.0.12-rc1.tar.gz
>
> SHA256:
> mod_perl-2.0.12-rc1.tar.gz: 50CF6B06 6BAFF225 78F3BB77 7695F6CC 142D1F68
> 8E085067 A055EB2B B58425D3
>
> SHA512:
> mod_perl-2.0.12-rc1.tar.gz: 320DDC4C 896F68BE C50C54D5 03179D81 B6FFB889
> C66BB568 FD5976F4 BD1224BE 617B2DFB E78D6DF0
> AC8F9474 93730DD1 763A2A50 E594D407 B36336E4
> 69ABE24F
>
> Major changes in this release are as follows:
>
> Fix detection of APR's threading support on RHEL 8. [Petr Písa?
> <ppisar@redhat.com>]
>
> Fix build for perl >= 5.33.7. [Leon Timmermans <fawaka@gmail.com>]
>
> Fix SIGSEGV crash due to wrong use of perl_parse(). [Charles Pigott
> <cpigott@rapitasystems.com>]
>
> Improve installation instructions for AIX. [Rainer Tammer
> <rainer.tammer@schulergroup.com>]
>