Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package apache2 for openSUSE:Factory checked in at 2022-01-11 21:17:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/apache2 (Old) and /work/SRC/openSUSE:Factory/.apache2.new.1892 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "apache2" Tue Jan 11 21:17:23 2022 rev:190 rq:945511 version:2.4.52 Changes: -------- --- /work/SRC/openSUSE:Factory/apache2/apache2.changes 2021-12-21 18:40:31.157867791 +0100 +++ /work/SRC/openSUSE:Factory/.apache2.new.1892/apache2.changes 2022-01-11 21:20:43.897020527 +0100 @@ -1,0 +2,6 @@ +Mon Jan 10 18:12:38 UTC 2022 - Dominique Leuenberger <dims...@opensuse.org> + +- Add apache2-perl-io-socket.patch: t/ssl/ocsp.t: Handle new error + message raised by IO-Socket-SSL 2.073. + +------------------------------------------------------------------- New: ---- apache2-perl-io-socket.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ apache2.spec ++++++ --- /var/tmp/diff_new_pack.UBjd58/_old 2022-01-11 21:20:44.981021290 +0100 +++ /var/tmp/diff_new_pack.UBjd58/_new 2022-01-11 21:20:44.985021293 +0100 @@ -1,7 +1,7 @@ # # spec file # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -200,6 +200,8 @@ Patch101: apache-test-turn-off-variables-in-ssl-var-lookup.patch # PATCH: reverted logic, DirectorySlash NotFound is available in trunk onlyyet Patch102: apache-test-DirectorySlash-NotFound-logic.patch +# https://svn.apache.org/viewvc?view=revision&revision=1896889 +Patch103: apache2-perl-io-socket.patch BuildRequires: apache-rpm-macros-control #Since 2.4.7 the event MPM requires apr 1.5.0 or later. BuildRequires: apr-devel >= 1.5.0 @@ -329,6 +331,9 @@ %patch100 -p1 %patch101 -p1 %patch102 -p1 +(cd httpd-framework +%patch103 -p4 +) # # BUILD ++++++ apache2-perl-io-socket.patch ++++++ --- httpd/test/framework/trunk/t/ssl/ocsp.t 2022/01/10 15:44:45 1896888 +++ httpd/test/framework/trunk/t/ssl/ocsp.t 2022/01/10 18:08:12 1896889 @@ -32,13 +32,21 @@ sok { $r = GET $url, cert => undef; my $message = $r->content() || ''; my $warning = $r->header('Client-Warning') || ''; + print "warning: $warning\n"; + print "message: $message"; + print "response:\n"; print $r->as_string; $r->code == 500 && $warning =~ 'Internal response' && - $message =~ /alert handshake failure|read failed/; + $message =~ /alert handshake failure|read failed|closed connection without sending any data/; }; sok { $r = GET $url, cert => 'client_ok'; + my $warning = $r->header('Client-Warning') || ''; + my $message = $r->content() || ''; + print "warning: $warning\n"; + print "message: $message"; + print "response:\n"; print $r->as_string; $r->code == 200; }; @@ -47,7 +55,10 @@ sok { $r = GET $url, cert => 'client_revoked'; my $message = $r->content() || ''; my $warning = $r->header('Client-Warning') || ''; + print "warning: $warning\n"; + print "message: $message"; + print "response:\n"; print $r->as_string; $r->code == 500 && $warning =~ 'Internal response' && - $message =~ /alert certificate revoked|read failed/; + $message =~ /alert handshake failure|read failed|closed connection without sending any data/; };