https://bugzilla.redhat.com/show_bug.cgi?id=1547165
Bug ID: 1547165
Summary: perl-ExtUtils-CBuilder should require gcc
Product: Fedora
Version: rawhide
Component: perl-ExtUtils-CBuilder
Assignee: ppisar(a)redhat.com
Reporter: paul(a)city-fan.org
QA Contact: extras-qa(a)fedoraproject.org
CC: jose.p.oliveira.oss(a)gmail.com, jplesnik(a)redhat.com,
perl-devel(a)lists.fedoraproject.org, ppisar(a)redhat.com,
steve(a)silug.org, tcallawa(a)redhat.com
In view of the likely upcoming removal of gcc from the default buildroot, it
would make sense to add gcc as a dependency of perl-ExtUtils-CBuilder, given
that the entire purpose of the module is to compile the C portions of perl
modules.
This would fix a significant of number of perl modules that FTBFS without gcc
in the default buildroot, as can be seen by looking at the logs from the failed
builds:
https://ignatenkobrain.fedorapeople.org/gcc-removal.txt
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1475784
Bug ID: 1475784
Summary: Useless dependency on perl(Email::Address)
Product: Fedora
Version: rawhide
Component: perl-Email-MessageID
Assignee: tcallawa(a)redhat.com
Reporter: ppisar(a)redhat.com
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org,
tcallawa(a)redhat.com
perl-Email-MessageID does not need Email::Address since 1.403 version. The
module is not used anywhere in the code and Changes reads:
1.403 2013-08-13 09:11:47 America/New_York
[This might break your code]
no longer a subclass of Email::Address!
I recommend to remove the build- and run-time dependency on Email::Address.
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1585352
Bug ID: 1585352
Summary: perl-Locale-Codes-3.57 is available
Product: Fedora
Version: rawhide
Component: perl-Locale-Codes
Keywords: FutureFeature, Triaged
Assignee: ppisar(a)redhat.com
Reporter: upstream-release-monitoring(a)fedoraproject.org
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org, ppisar(a)redhat.com
Latest upstream release: 3.57
Current version/release in rawhide: 3.56-1.fc29
URL: http://search.cpan.org/dist/Locale-Codes/
Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy
More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring
Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.
Based on the information from anitya:
https://release-monitoring.org/project/3033/
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1456817
Bug ID: 1456817
Summary: Use of uninitialized value $fh in pattern match (m//)
at /usr/share/perl5/vendor_perl/Proc/PID/File.pm line
286.
Product: Fedora
Version: 25
Component: perl-Proc-PID-File
Severity: low
Assignee: marianne(a)tuxette.fr
Reporter: edgar.hoch(a)ims.uni-stuttgart.de
QA Contact: extras-qa(a)fedoraproject.org
CC: marianne(a)tuxette.fr,
perl-devel(a)lists.fedoraproject.org
Created attachment 1283443
--> https://bugzilla.redhat.com/attachment.cgi?id=1283443&action=edit
Perl test program for Proc::PID::File
Description of problem:
When calling the attached perl program I get the following error messages:
Use of uninitialized value $fh in pattern match (m//) at
/usr/share/perl5/vendor_perl/Proc/PID/File.pm line 286.
Use of uninitialized value $fh in pattern match (m//) at
/usr/share/perl5/vendor_perl/Proc/PID/File.pm line 286.
The problem seems to be that sub alive calls sub read without a parameter.
Version-Release number of selected component (if applicable):
perl-Proc-PID-File-1.28-1.fc25.noarch
How reproducible:
Always.
Steps to Reproduce:
1. Call the atteched perl program.
Actual results:
Error message:
Use of uninitialized value $fh in pattern match (m//) at
/usr/share/perl5/vendor_perl/Proc/PID/File.pm line 286.
Use of uninitialized value $fh in pattern match (m//) at
/usr/share/perl5/vendor_perl/Proc/PID/File.pm line 286.
Expected results:
Nothing (no error, no output)
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1532250
Bug ID: 1532250
Summary: perl-Net-SSLeay fails to connect to some SSL servers
Product: Fedora
Version: 27
Component: perl-Net-SSLeay
Assignee: paul(a)city-fan.org
Reporter: mal(a)gromco.com
QA Contact: extras-qa(a)fedoraproject.org
CC: jose.p.oliveira.oss(a)gmail.com, kasal(a)ucw.cz,
paul(a)city-fan.org, perl-devel(a)lists.fedoraproject.org
In F26 F27 compiled
perl-Net-SSLeay-1.82-1.fc26.x86_64
fails to connect to some SSL servers, , but to the other can connect OK
Below is a test case and two examples.
www.google.com perl-Net-SSLeay connects OK
www.halstead.com perl-Net-SSLeay fails.
Code example xu.pl is below.
This works OK
perl -w xu.pl 'www.google.com'
And this one fails, and without any meaningful diag
perl -w xu.pl www.halstead.com
P.S. strange thing that this works OK
my($page) = Net::SSLeay::get_https('www.halstead.com', 443, '/');
------- sample code xu.pl ----
use strict;
require Net::SSLeay;
require IO::Socket::SSL;
#require IO::Socket::SSL qw(debug9);
$Net::SSLeay::trace = 3;
$Net::SSLeay::linux_debug =3 ;
# simple client
my $cl = IO::Socket::SSL->new($ARGV[0].":443");
print{*STDERR} "CL=",$cl,"\n";
print $cl "GET / HTTP/1.0\r\n\r\n";
print <$cl>;
----- end sample code -------------
This works OK
perl -w xu.pl 'www.google.com'
And this one fails, and without any Net::SSLeay diag, only SSL.pm
perl -w xu.pl www.halstead.com
Name "Net::SSLeay::trace" used only once: possible typo at xu.pl line 6.
Name "Net::SSLeay::linux_debug" used only once: possible typo at xu.pl line 7.
DEBUG: .../IO/Socket/SSL.pm:2764: new ctx 24108480
DEBUG: .../IO/Socket/SSL.pm:616: socket not yet connected
DEBUG: .../IO/Socket/SSL.pm:618: socket connected
DEBUG: .../IO/Socket/SSL.pm:641: ssl handshake not started
DEBUG: .../IO/Socket/SSL.pm:674: using SNI with hostname www.halstead.com
DEBUG: .../IO/Socket/SSL.pm:709: request OCSP stapling
DEBUG: .../IO/Socket/SSL.pm:743: call Net::SSLeay::connect
DEBUG: .../IO/Socket/SSL.pm:746: done Net::SSLeay::connect -> -1
DEBUG: .../IO/Socket/SSL.pm:749: local error: SSL connect attempt failed
DEBUG: .../IO/Socket/SSL.pm:752: fatal SSL error: SSL connect attempt failed
DEBUG: ...erl5/IO/Socket.pm:49: ignoring less severe local error
'IO::Socket::IP configuration failed', keep 'SSL connect attempt failed'
DEBUG: .../IO/Socket/SSL.pm:2786: free ctx 24108480 open=24108480
DEBUG: .../IO/Socket/SSL.pm:2790: free ctx 24108480 callback
DEBUG: .../IO/Socket/SSL.pm:2797: OK free ctx 24108480
CL=Use of uninitialized value $cl in print at xu.pl line 11.
Can't use an undefined value as a symbol reference at xu.pl line 12.
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1472172
Bug ID: 1472172
Summary: Please package perl-Web-ID for CentOS 7
Product: Fedora EPEL
Version: epel7
Component: perl-Module-Build
Assignee: paul(a)city-fan.org
Reporter: clem.oudot(a)gmail.com
QA Contact: extras-qa(a)fedoraproject.org
CC: paul(a)city-fan.org, perl-devel(a)lists.fedoraproject.org,
steve(a)silug.org
Seems this Perl module was never packaged, but is a dependency for
LemonLDAP::NG.
If not possible to package, please let me know so I remove if from required
dependencies.
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1594523
Bug ID: 1594523
Summary: perl-BSON-v1.6.6 is available
Product: Fedora
Version: rawhide
Component: perl-BSON
Keywords: FutureFeature, Triaged
Assignee: ppisar(a)redhat.com
Reporter: upstream-release-monitoring(a)fedoraproject.org
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org, ppisar(a)redhat.com
Latest upstream release: v1.6.6
Current version/release in rawhide: 1.6.5-1.fc29
URL: http://search.cpan.org/dist/BSON/
Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy
More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring
Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.
Based on the information from anitya:
https://release-monitoring.org/project/12628/
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1593041
Bug ID: 1593041
Summary: perl-BSON-v1.6.5 is available
Product: Fedora
Version: rawhide
Component: perl-BSON
Keywords: FutureFeature, Triaged
Assignee: ppisar(a)redhat.com
Reporter: upstream-release-monitoring(a)fedoraproject.org
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org, ppisar(a)redhat.com
Latest upstream release: v1.6.5
Current version/release in rawhide: 1.6.4-1.fc29
URL: http://search.cpan.org/dist/BSON/
Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy
More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring
Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.
Based on the information from anitya:
https://release-monitoring.org/project/12628/
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1591047
Bug ID: 1591047
Summary: perl-BSON-v1.6.4 is available
Product: Fedora
Version: rawhide
Component: perl-BSON
Keywords: FutureFeature, Triaged
Assignee: ppisar(a)redhat.com
Reporter: upstream-release-monitoring(a)fedoraproject.org
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org, ppisar(a)redhat.com
Latest upstream release: v1.6.4
Current version/release in rawhide: 1.6.3-1.fc29
URL: http://search.cpan.org/dist/BSON/
Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy
More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring
Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.
Based on the information from anitya:
https://release-monitoring.org/project/12628/
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1582677
Bug ID: 1582677
Summary: perl-BSON-v1.6.3 is available
Product: Fedora
Version: rawhide
Component: perl-BSON
Keywords: FutureFeature, Triaged
Assignee: ppisar(a)redhat.com
Reporter: upstream-release-monitoring(a)fedoraproject.org
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org, ppisar(a)redhat.com
Latest upstream release: v1.6.3
Current version/release in rawhide: 1.6.2-1.fc29
URL: http://search.cpan.org/dist/BSON/
Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy
More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring
Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.
Based on the information from anitya:
https://release-monitoring.org/project/12628/
--
You are receiving this mail because:
You are on the CC list for the bug.