Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Branch perl-Test-MinimumVersion for EPEL 5
https://bugzilla.redhat.com/show_bug.cgi?id=463124
Summary: Branch perl-Test-MinimumVersion for EPEL 5
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: medium
Component: perl-Test-MinimumVersion
AssignedTo: ianburrell(a)gmail.com
ReportedBy: ianburrell(a)gmail.com
QAContact: extras-qa(a)fedoraproject.org
CC: fedora-perl-devel-list(a)redhat.com
Estimated Hours: 0.0
Classification: Fedora
Package Change Request
======================
Package Name: perl-Test-MinimumVersion
New Branches: EL-5
Updated EPEL Owners: iburrell
--
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.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug report.
https://bugzilla.redhat.com/show_bug.cgi?id=456019
Summary: Can we have libpTk.a built shared within perl-Tk ?
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: low
Priority: low
Component: perl-Tk
AssignedTo: andreas.bierfert(a)lowlatency.de
ReportedBy: kwizart(a)gmail.com
QAContact: extras-qa(a)fedoraproject.org
CC: fedora-perl-devel-list(a)redhat.com
Description of problem: libpTk.a is built statically within perl-Tk package.
This file isn't provided, so any dependency that what to extend the widget for
perl-Tk will need to build again this static library.
I would be better to have a shared built instead (if doable)
Version-Release number of selected component (if applicable): current perl-Tk
How reproducible:
always
Steps to Reproduce:
1. built a perl-Tk dependency that extend the widget capability
(case study perl-Tk-TableMatrix, see #444745)
2. by default it will build the libpTk.a again
3. Each Shared Objet widget will pick from libpTk.a as needed, raising the size
of the resulting .so (if not having duplicate code).
Actual results:
-llibpTk is using libpTk.a
Expected results:
-llibpTk should use libpTk.so
Additional info:
The related licenses files should probably be added to the package.
--
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, or are watching someone who is.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug report.
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=247476
Summary: Changed upstream...
Product: Fedora
Version: f7
Platform: All
OS/Version: Linux
Status: NEW
Severity: low
Priority: low
Component: perl-Mail-SPF-Query
AssignedTo: steve(a)silug.org
ReportedBy: lmb(a)biosci.ki.se
QAContact: extras-qa(a)fedoraproject.org
CC: fedora-perl-devel-list(a)redhat.com
Description of problem:
Shouldn't this package be updated/replaced with perl-Mail-SPF 2.005??
Note the missing query in the name.
Version-Release number of selected component (if applicable):
1.999.1-3.fc7
How reproducible:
Steps to Reproduce:
1.
2.
3.
Actual results:
Expected results:
Additional info:
--
Configure bugmail: https://bugzilla.redhat.com/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug report.
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=237421
Summary: Bad cpuTime retrieved from Sys::Virt::Domain->get_info
Product: Fedora Extras
Version: fc6
Platform: i686
OS/Version: Linux
Status: NEW
Severity: medium
Priority: medium
Component: perl-Sys-Virt
AssignedTo: steve(a)silug.org
ReportedBy: g+fedora(a)pkg.fr
QAContact: extras-qa(a)fedoraproject.org
CC: berrange@redhat.com,fedora-perl-devel-list@redhat.com
Description of problem:
I tried the API on a AMD Athlon(tm) XP 3000+, I got bad values with some
negative one for the cpuTime of a domain.
Version-Release number of selected component (if applicable):
perl-Sys-Virt-0.1.1
How reproducible:
every time
Steps to Reproduce:
1. Run a server with some xen domains
2. Try the example included in the package:
/usr/share/doc/perl-Sys-Virt-0.1.1/examples/dump-info.pl
3. Observe the "cpuTime" values
Actual results:
False
Expected results:
Good
Additional info:
I search the sources and I found this value is in fact unsigned long long value
in libvirt library to represent nanoseconds (cf
http://libvirt.org/html/libvirt-libvirt.html#virDomainInfo) I didn't try on a
64 bits arch but I think the it could work on it.
I managed to obtain the expected results by patching the sources: I edit Virt.xs
from the source and changed the line 359 from:
hv_store (RETVAL, "cpuTime", 7, newSViv(info.cpuTime), 0);
to
hv_store (RETVAL, "cpuTime", 7, newSVnv(info.cpuTime), 0);
So the unsigned long long is read as a float scalar and not an integer scalar.
--
Configure bugmail: https://bugzilla.redhat.com/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug report.
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=199736
Summary: perl C compiler Can't locate object method "IVX" via
package "B::NV"
Product: Fedora Core
Version: fc5
Platform: i386
OS/Version: Linux
Status: NEW
Severity: normal
Priority: normal
Component: perl
AssignedTo: jvdias(a)redhat.com
ReportedBy: timliim(a)lucent.com
QAContact: dkl(a)redhat.com
CC: fedora-perl-devel-list(a)redhat.com
Description of problem:
When compile perl script into C code, modules complained
Can't locate object method "IVX" via package "B::NV"
Version-Release number of selected component (if applicable):
$ rpm -qf /usr/lib/perl5/5.8.8/i386-linux-thread-multi/B/C.pm
perl-5.8.8-5
How reproducible:
always.
Steps to Reproduce:
1. create a file tw.pl with this content:
#!/usr/bin/perl -w
use strict;
package mx;
sub new {}
#sub x { my $m = 5.1; }
1;
2. compile with this line
time perl -MO=C tw.pl > t.c
Actual results:
Got error msg
Can't locate object method "IVX" via package "B::NV" at
/usr/lib/perl5/5.8.8/i386-linux-thread-multi/B/C.pm line 650.
CHECK failed--call queue aborted.
Expected results:
Compiling ok, produce a compilable .c file:
Additional info:
--
Configure bugmail: https://bugzilla.redhat.com/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug report.
https://bugzilla.redhat.com/show_bug.cgi?id=447006
Summary: BR Test::CPAN::Meta
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: low
Priority: low
Component: perl-Module-Install
AssignedTo: steve(a)silug.org
ReportedBy: steve(a)silug.org
QAContact: extras-qa(a)fedoraproject.org
CC: fedora-perl-devel-list(a)redhat.com
t/97_meta...........
skipped
all skipped: Test::CPAN::Meta 0.07 not available for testing
--
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, or are watching someone who is.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Close tag missing in XML output of optionally empty tags
https://bugzilla.redhat.com/show_bug.cgi?id=525587
Summary: Close tag missing in XML output of optionally empty
tags
Product: Fedora
Version: 10
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: low
Component: perl-HTML-Tree
AssignedTo: tcallawa(a)redhat.com
ReportedBy: jfearn(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: tcallawa(a)redhat.com, fedora-perl-devel-list(a)redhat.com
Blocks: 524832
Classification: Fedora
Target Release: ---
Created an attachment (id=362580)
--> (https://bugzilla.redhat.com/attachment.cgi?id=362580)
test script exhibiting bug
Description of problem:
HTML::Element::as_XML() has a bug where tags added to empty_element_map but
which contain data are missing their close tag when generating XML.
Version-Release number of selected component (if applicable):
3.23-4
How reproducible:
Always
Steps to Reproduce:
1. Run attached script
Actual results:
Not mapped to empty element (correct)
<a href="http://example.com/"></a>
Mapped to empty element, no extra content (correct)
<a href="http://example.com/" />
Mapped to empty element, extra content (missing close tag)
<a href="http://example.com/">Extra content
Expected results:
Not mapped to empty element (correct)
<a href="http://example.com/"></a>
Mapped to empty element, no extra content (correct)
<a href="http://example.com/" />
Mapped to empty element, extra content (correct)
<a href="http://example.com/">Extra content</a>
Additional info:
I opened an upstream bug with a patch
https://rt.cpan.org/Ticket/Display.html?id=49932 however it may take a while
for a new version to come out.
Since HTML::Element is the base class for XML::Element this bug affects all XML
systems where tags can be optionally empty and people wish to use the short
circuit form for the empty tags.
--
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.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: FTBFS perl-MooseX-Getopt-0.18-1.fc12
https://bugzilla.redhat.com/show_bug.cgi?id=511635
Summary: FTBFS perl-MooseX-Getopt-0.18-1.fc12
Product: Fedora
Version: rawhide
Platform: All
URL: http://linux.dell.com/files/fedora/FixBuildRequires/mo
ck-results/
OS/Version: Linux
Status: NEW
Severity: high
Priority: high
Component: perl-MooseX-Getopt
AssignedTo: cweyl(a)alumni.drew.edu
ReportedBy: ftbfs(a)fedoraproject.org
QAContact: extras-qa(a)fedoraproject.org
CC: cweyl(a)alumni.drew.edu,
fedora-perl-devel-list(a)redhat.com
Blocks: 511348
Classification: Fedora
perl-MooseX-Getopt-0.18-1.fc12.src.rpm Failed To Build From Source against the
rawhide tree. See http://fedoraproject.org/wiki/FTBFS for more information.
--
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.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: FTBFS perl-Sys-Virt-0.2.0-2.fc11
https://bugzilla.redhat.com/show_bug.cgi?id=511446
Summary: FTBFS perl-Sys-Virt-0.2.0-2.fc11
Product: Fedora
Version: rawhide
Platform: i386
URL: http://linux.dell.com/files/fedora/FixBuildRequires/mo
ck-results/
OS/Version: Linux
Status: NEW
Severity: high
Priority: high
Component: perl-Sys-Virt
AssignedTo: steve(a)silug.org
ReportedBy: ftbfs(a)fedoraproject.org
QAContact: extras-qa(a)fedoraproject.org
CC: steve(a)silug.org, berrange(a)redhat.com,
fedora-perl-devel-list(a)redhat.com
Blocks: 511348
Classification: Fedora
perl-Sys-Virt-0.2.0-2.fc11.src.rpm Failed To Build From Source against the
rawhide tree. See http://fedoraproject.org/wiki/FTBFS for more information.
--
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.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: perl-Glib Requires a development package: perl(ExtUtils::MakeMaker)
https://bugzilla.redhat.com/show_bug.cgi?id=509419
Summary: perl-Glib Requires a development package:
perl(ExtUtils::MakeMaker)
Product: Fedora
Version: 11
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: low
Component: perl-Glib
AssignedTo: tcallawa(a)redhat.com
ReportedBy: kwizart(a)gmail.com
QAContact: extras-qa(a)fedoraproject.org
CC: tcallawa(a)redhat.com, fedora-perl-devel-list(a)redhat.com
Classification: Fedora
Description of problem:
perl-Glib Requires a development package: perl(ExtUtils::MakeMaker)
Version-Release number of selected component (if applicable):
perl-Glib-1.201-2.fc11.i586
How reproducible:
always
Actual results:
There is a need to sort out suches dependencies, specially as this last brings
much other ones , including perl-devel and others perl-Test-* tools.
--
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.