[Bug 1937653] New: Upgrade perl-HTTP-OAI to 4.11
by bugzilla@redhat.com
https://bugzilla.redhat.com/show_bug.cgi?id=1937653
Bug ID: 1937653
Summary: Upgrade perl-HTTP-OAI to 4.11
Product: Fedora
Version: rawhide
Status: NEW
Component: perl-HTTP-OAI
Assignee: vanoudt(a)gmail.com
Reporter: jplesnik(a)redhat.com
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org, vanoudt(a)gmail.com
Target Milestone: ---
Classification: Fedora
Latest Fedora delivers 4.10 version. Upstream released 4.11. When you have free
time, please upgrade it.
--
You are receiving this mail because:
You are on the CC list for the bug.
6 days, 15 hours
[Bug 2041430] New: [RFC] Drop support for mod_perl in F36+/EL9+
by bugzilla@redhat.com
https://bugzilla.redhat.com/show_bug.cgi?id=2041430
Bug ID: 2041430
Summary: [RFC] Drop support for mod_perl in F36+/EL9+
Product: Fedora
Version: rawhide
Status: NEW
Component: perl-Plack
Assignee: rc040203(a)freenet.de
Reporter: xavier(a)bachelot.org
QA Contact: extras-qa(a)fedoraproject.org
CC: emmanuel(a)seyman.fr, jose.p.oliveira.oss(a)gmail.com,
perl-devel(a)lists.fedoraproject.org, ppisar(a)redhat.com,
rc040203(a)freenet.de, xavier(a)bachelot.org
Target Milestone: ---
Classification: Fedora
Hi Ralf,
As you know, I'll take care of building perl-Plack in EPEL 9. One of the
dependency is mod_perl, which won't make it to EPEL 9 and is marked as
abandoned/unsupported for Fedora in the specfile.
I'd like to suggest the following tuning to the rawhide branch specfile.
It disables mod_perl support for both el9+, but I thought it might make sense
to also disable it in F36+. I'd like to get this or a variation of this in
rawhide so one can keep a non-diverging history in the epel9 branch.
I'll submit a proper PR once you gave me your thoughts on this approach.
"""
# Build with mod_perl support for Apache HTTP server version 2.
# Abandoned/Unsupported in Fedora.
+%if 0%{?rhel} >= 9 || 0%{?fedora} >= 36
+%bcond_with perl_Plack_enables_httpd2
+%else
%bcond_without perl_Plack_enables_httpd2
+%endif
# Recommends IPv6 support to HTTP::Server::PSGI embedded web server
%bcond_without perl_Plack_enables_ipv6
"""
Regards,
Xavier
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2041430
2 weeks
[Bug 1975700] New: start_server (or Server::Starter) should depend
on Net::Server::SS::PreFork
by bugzilla@redhat.com
https://bugzilla.redhat.com/show_bug.cgi?id=1975700
Bug ID: 1975700
Summary: start_server (or Server::Starter) should depend on
Net::Server::SS::PreFork
Product: Fedora
Version: 34
Status: NEW
Component: perl-Server-Starter
Severity: low
Assignee: rc040203(a)freenet.de
Reporter: kas(a)fi.muni.cz
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org,
rc040203(a)freenet.de
Target Milestone: ---
Classification: Fedora
Description of problem:
The start_server script uses Net::Server::SS::PreFork personality of
Net::Server, so it should explicitly depend on it.
Version-Release number of selected component (if applicable):
perl-Server-Starter-0.35-5.fc34.noarch
perl-Server-Starter-start_server-0.35-5.fc34.noarch
How reproducible:
Steps to Reproduce:
1. yum -y install perl-Server-Starter-start_server perl-Starman
2. cat > app.psgi <<'EOF'
#!/usr/bin/perl
use strict;
my $app = sub {
my $env = shift;
return [
'200',
[ 'Content-Type' => 'text/plain' ],
[ "Hello World\n" ], # or IO::Handle-like object
];
};
EOF
3. start_server --port 0.0.0.0:5000 -- starman --workers 4 app.psgi
Actual results:
start_server (pid:5091) starting now...
starting new worker 5092
Can't locate Net/Server/SS/PreFork.pm in @INC (you may need to install the
Net::Server::SS::PreFork module) (@INC contains: /usr/local/lib64/perl5/5.32
/usr/local/share/perl5/5.32 /usr/lib64/perl5/vendor_perl
/usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) at
/usr/share/perl5/vendor_perl/Plack/Handler/Starman.pm line 14.
new worker 5092 seems to have failed to start, exit status:512
Expected results:
starman should be up and running
Additional info:
The dependency on Net::Server::SS::PreFork is described here:
https://metacpan.org/pod/Server::Starter
--
You are receiving this mail because:
You are on the CC list for the bug.
2 weeks