https://bugzilla.redhat.com/show_bug.cgi?id=1231104
Bug ID: 1231104
Summary: perl-B-Hooks-OP-Check-EntersubForCV-0.09-11.fc23:
FTBFS with Perl 5.22
Product: Fedora
Version: rawhide
Component: perl-B-Hooks-OP-Check-EntersubForCV
Assignee: psabata(a)redhat.com
Reporter: jplesnik(a)redhat.com
QA Contact: extras-qa(a)fedoraproject.org
CC: iarnell(a)gmail.com, perl-devel(a)lists.fedoraproject.org,
psabata(a)redhat.com
External Bug ID: CPAN 94945
External Bug ID: CPAN 94945
Created attachment 1037926
--> https://bugzilla.redhat.com/attachment.cgi?id=1037926&action=edit
Build log
The build of perl-B-Hooks-OP-Check-EntersubForCV failed during Perl 5.22 mass
rebuild with following errors:
+ make test
"/usr/bin/perl" "-Iinc" "-MModule::Install::ExtraTests" "-e"
"Module::Install::ExtraTests::__harness('Test::Harness', 0, 'xt/author', '',
'', 0, 'blib/lib', 'blib/arch')" t/*.t
Subroutine B::OP::parent redefined at /usr/lib/perl5/vendor_perl/B/Utils.pm
line 186.
# Failed test 'simple callback'
# at t/basic.t line 37.
# got: '0'
# expected: '1'
# Failed test 'multiple callbacks'
# at t/basic.t line 65.
# got: '0'
# expected: '2'
# Failed test 'no callback after multiple registrations'
# at t/basic.t line 68.
# got: '0'
# expected: '2'
# Failed test 'multiple callbacks for multiple entersubs'
# at t/basic.t line 78.
# got: '0'
# expected: '4'
# Failed test 'deregistration'
# at t/basic.t line 90.
# got: '0'
# expected: '2'
# Looks like you planned 20 tests but ran 11.
# Looks like you failed 5 tests of 11 run.
t/basic.t ...
Dubious, test returned 5 (wstat 1280, 0x500)
Failed 14/20 subtests
Subroutine B::OP::parent redefined at /usr/lib/perl5/vendor_perl/B/Utils.pm
line 186.
# Failed test at t/import.t line 29.
# got: '0'
# expected: '2'
# Failed test at t/import.t line 33.
# got: '0'
# expected: '2'
# Looks like you planned 9 tests but ran 3.
# Looks like you failed 2 tests of 3 run.
t/import.t ..
--
You are receiving this mail because:
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Please build pcsc-perl for EPEL6
https://bugzilla.redhat.com/show_bug.cgi?id=807793
Summary: Please build pcsc-perl for EPEL6
Product: Fedora
Version: rawhide
Platform: Unspecified
OS/Version: Unspecified
Status: NEW
Severity: unspecified
Priority: unspecified
Component: pcsc-perl
AssignedTo: tmraz(a)redhat.com
ReportedBy: mjeanson(a)rlnx.com
QAContact: extras-qa(a)fedoraproject.org
CC: tmraz(a)redhat.com, fedora-perl-devel-list(a)redhat.com
Classification: Fedora
Story Points: ---
Type: ---
Regression: ---
Mount Type: ---
Documentation: ---
Hi,
I was hoping that you could build pcsc-perl for EPEL6.
I just tried a scratch build of the fc17 version and it builds without
modification within EPEL6.
http://koji.fedoraproject.org/koji/taskinfo?taskID=3940535
Thanks,
Michael
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1285807
Bug ID: 1285807
Summary: Opening About Slic3r dialog window crashes slic3r
Product: Fedora
Version: 23
Component: slic3r
Assignee: mhroncok(a)redhat.com
Reporter: tomg(a)ipass.net
QA Contact: extras-qa(a)fedoraproject.org
CC: mhroncok(a)redhat.com,
perl-devel(a)lists.fedoraproject.org
Description of problem:
Opening the About Slic3r dialog window crashes slic3r everytime
Version-Release number of selected component (if applicable):
slic3r-1.2.9-3.fc23.x86_64
How reproducible:
Everytime
Steps to Reproduce:
1. Start program
2. Select About Slic3r from the Help pulldown menu (Help -> About Slic3r)
3.
Actual results:
App crashes instantly
Expected results:
Should see the about dialog window.
Additional info:
Output from the terminal
$ slic3r
(slic3r:3135): Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate
widget with width -5 and height 17
(slic3r:3135): Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate
widget with width -5 and height 17
(slic3r:3135): Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate
widget with width -5 and height 17
Error while autoloading 'Wx::wxCLOSE' at
/usr/share/perl5/vendor_perl/Slic3r/GUI/AboutDialog.pm line 69.
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1273668
Bug ID: 1273668
Summary: to_string() appends 'undef' to array attribute
Product: Fedora EPEL
Version: epel7
Component: perl-Exception-Base
Severity: low
Assignee: paul(a)city-fan.org
Reporter: jim(a)apnic.net
QA Contact: extras-qa(a)fedoraproject.org
CC: paul(a)city-fan.org, perl-devel(a)lists.fedoraproject.org
Description of problem:
Invoking to_string has the side effect of appending 'undef' to an array
attribute.
Version-Release number of selected component (if applicable):
perl-Exception-Base-0.2500-1.el7.noarch.rpm
perl v5.16.3
How reproducible:
Always
Steps to Reproduce:
Can reproduce with this perl script:
#!/bin/perl
use warnings;
use strict;
use Data::Dumper;
use Exception::Base
'MyException', => {
message => 'Validation error',
has => [ qw(class errors) ],
string_attributes => [ 'message', 'class', 'errors' ]
};
eval {
MyException->throw(
class => __PACKAGE__,
errors => ["error 1", "error 2", "error 3"]
);
};
my $exception = $@;
print( Dumper($exception->errors()) . "\n");
$exception->to_string();
print( Dumper($exception->errors()) . "\n");
Actual results:
Can see an additional 'undef' in the array returned after invoking to_string();
Expected results:
The returned array should be the same as when thrown.
Additional info:
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1322418
Bug ID: 1322418
Summary: perl-Crypt-ECB-2.15 is available
Product: Fedora
Version: rawhide
Component: perl-Crypt-ECB
Keywords: FutureFeature, Triaged
Assignee: ddick(a)cpan.org
Reporter: upstream-release-monitoring(a)fedoraproject.org
QA Contact: extras-qa(a)fedoraproject.org
CC: ddick(a)cpan.org, perl-devel(a)lists.fedoraproject.org
Latest upstream release: 2.15
Current version/release in rawhide: 1.45-4.fc24
URL: http://search.cpan.org/dist/Crypt-ECB/
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/10253/
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1327917
Bug ID: 1327917
Summary: perl-Net-Stomp-0.57 is available
Product: Fedora
Version: rawhide
Component: perl-Net-Stomp
Keywords: FutureFeature, Triaged
Assignee: lkundrak(a)v3.sk
Reporter: upstream-release-monitoring(a)fedoraproject.org
QA Contact: extras-qa(a)fedoraproject.org
CC: filip(a)andresovi.net, lkundrak(a)v3.sk,
perl-devel(a)lists.fedoraproject.org, scenek(a)gmail.com
Latest upstream release: 0.57
Current version/release in rawhide: 0.56-2.fc24
URL: http://search.cpan.org/dist/Net-Stomp/
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/3166/
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1324887
Bug ID: 1324887
Summary: perl-Starlet-0.29-1.fc25 FTBFS: t/11multi-sockets.t
fails
Product: Fedora
Version: rawhide
Component: perl-Starlet
Assignee: rc040203(a)freenet.de
Reporter: ppisar(a)redhat.com
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org,
rc040203(a)freenet.de
perl-Starlet-0.29-1.fc25 fails to build in F25:
t/10unix_domain_socket.t ... ok
failed to listen:Address already in use at t/11multi-sockets.t line 16.
t/11multi-sockets.t ........
Dubious, test returned 98 (wstat 25088, 0x6200)
No subtests run
Difference between working and failing build root:
perl-Test-TCP 2.14-3.fc24 > 2.15-1.fc25
perl-version 5:0.99.15-1.fc25 > 5:0.99.16-1.fc25
perl-Module-CoreList 1:5.20160121-1.fc24 > 1:5.20160320-1.fc25
perl-podlators 4.06-2.fc24 > 4.07-1.fc25
systemtap-sdt-devel 3.0-0.20160314git... > 3.0-0.20160321git...
systemd-libs 229-7.fc25 > 229-8.fc25
systemd 229-7.fc25 > 229-8.fc25
device-mapper 1.02.120-4.fc25 > 1.02.120-5.fc25
device-mapper-libs 1.02.120-4.fc25 > 1.02.120-5.fc25
perl-generators 1.07-3.fc24 > 1.08-1.fc25
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1230219
Bug ID: 1230219
Summary: perl-Plack-1.0036 is available
Product: Fedora
Version: rawhide
Component: perl-Plack
Assignee: rc040203(a)freenet.de
Reporter: rc040203(a)freenet.de
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org,
rc040203(a)freenet.de
Upstream released Plack-1.0036
Unfortunately this update introduced a couple dependencies on further
perl-modules which are not yet available in Fedora.
--
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=1241821
Bug ID: 1241821
Summary: Please update to >= 1.300011 to let bugzilla 5.0 run.
Product: Fedora EPEL
Version: epel7
Component: perl-Email-Send
Assignee: tcallawa(a)redhat.com
Reporter: frank-buettner(a)gmx.net
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org,
tcallawa(a)redhat.com
Description of problem:
The new bugzilla generation 5 need version 1.300011 of it, but only 2.199 is
available.
Version-Release number of selected component (if applicable):
perl-Email-Send-2.199-2.el7.noarch
See https://www.bugzilla.org/releases/5.0/release-notes.html#v50_feat for more.
--
You are receiving this mail because:
You are on the CC list for the bug.