Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: cpanspec doesn't escape "/" in --filter-requires leading to bad sed statements
https://bugzilla.redhat.com/show_bug.cgi?id=544738
Summary: cpanspec doesn't escape "/" in --filter-requires
leading to bad sed statements
Product: Fedora
Version: 12
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: low
Component: cpanspec
AssignedTo: steve(a)silug.org
ReportedBy: bugzilla(a)kosowsky.org
QAContact: extras-qa(a)fedoraproject.org
CC: steve(a)silug.org, fedora-perl-devel-list(a)redhat.com
Classification: Fedora
Description of problem:
cpanspec translates each "--filter-requires some_string" into a corresponding
sed statement in the corresponding perl-<module>-requires.sh of form:
-e '/^some-string$/d'
However, when some_string is a path which then contains a slash "/", this
causes the sed statement to mess up.
In particular, one of the fuse modules I was compiling had some example perl
scripts which began with the line "#/usr/bin/perl." This caused the build to
then require "/usr/bin/perl" which I wanted to eliminate. When I added
"--filter-requires /usr/bin/perl", it caused *all* the sed statements to fail
with the error:
sed: -e expression #1, char 4: unknown command: `u'
Either the documentation should warn that "/" must be escaped or *better*, the
script should automatically escape the forward slashes since the user has no
reason to think that "/" is a special character (and indeed, sed could have
used just about any character to demarcate the s program)
--
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.
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=914969
Bug ID: 914969
Summary: Bogus dependency
Product: Fedora
Version: rawhide
Component: perl-Net-SFTP-Foreign
Severity: unspecified
Priority: unspecified
Reporter: kevin(a)scrye.com
It's too bad this was not caught during review. You have:
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:real_version`"; echo
$real_version))
but this should be:
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
per:
https://fedoraproject.org/wiki/Packaging:Perl#Versioned_MODULE_COMPAT_Requi…
This results in a bogus dep of:
perl(:MODULE_COMPAT_UNKNOWN)
which makes it uninstallable. ;(
Please fix. ;)
--
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug https://bugzilla.redhat.com/token.cgi?t=fsr2rLfk1N&a=cc_unsubscribe
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: perl-Bio-Graphics-2.25-1.fc17.noarch requires non-existing perl(Bio::DB::BigWig)
https://bugzilla.redhat.com/show_bug.cgi?id=745537
Summary: perl-Bio-Graphics-2.25-1.fc17.noarch requires
non-existing perl(Bio::DB::BigWig)
Product: Fedora
Version: rawhide
Platform: Unspecified
OS/Version: Unspecified
Status: NEW
Severity: unspecified
Priority: unspecified
Component: perl-Bio-Graphics
AssignedTo: alexl(a)users.sourceforge.net
ReportedBy: ppisar(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: alexl(a)users.sourceforge.net,
fedora-perl-devel-list(a)redhat.com
Classification: Fedora
Story Points: ---
Type: ---
perl-Bio-Graphics-2.25-1.fc17.noarch requires perl(Bio::DB::BigWig) which is
not provided by any 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.
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=958821
Bug ID: 958821
Summary: Threaded glob segfaults
Product: Fedora
Version: 18
Component: perl
Severity: unspecified
Priority: unspecified
Assignee: mmaslano(a)redhat.com
Reporter: ppisar(a)redhat.com
QA Contact: extras-qa(a)fedoraproject.org
CC: cweyl(a)alumni.drew.edu, iarnell(a)gmail.com,
jplesnik(a)redhat.com, kasal(a)ucw.cz, lkundrak(a)v3.sk,
mmaslano(a)redhat.com,
perl-devel(a)lists.fedoraproject.org, ppisar(a)redhat.com,
psabata(a)redhat.com, rc040203(a)freenet.de,
tcallawa(a)redhat.com
Category: ---
Since 5.16.0, perl segfaults when using glob in multi-threaded environment.
This has been reported to upstream as
<https://rt.perl.org:443/rt3/Ticket/Display.html?id=117823>. Tests case:
use warnings;
use strict;
use threads;
use threads::shared;
my $nthread = 20;
sub work {
foreach (1..10000) {
my @files = <*.supp>;
}
}
my @threads;
foreach my $i (1..$nthread) {
push @threads, threads->create(\&work);
}
foreach my $t (@threads) {
$t->join();
}
--
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug https://bugzilla.redhat.com/token.cgi?t=Jn3RLKH7AF&a=cc_unsubscribe
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=877072
Bug ID: 877072
Summary: perl-5.16.2: Memory leak in Perl_sv_grow
Product: Fedora
Version: 18
Component: perl
Severity: unspecified
Priority: unspecified
Reporter: ppisar(a)redhat.com
Type: Bug
There is regression between 5.14 an 5.16 in this code:
while (1) {
my $o = bless {}, 'main';
test({});
$o->test;
}
sub test { &test2; }
sub test2 { ref($_[0]) && eval { $_[0]->isa(__PACKAGE__) }; }
Memory started to leak.
Upstream thinks it has been fixed between commits 7e2a0d4 and
39984de.
--
You are receiving this mail because:
You are on the CC list for the bug.
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=923995
Bug ID: 923995
Summary: please bump version to 2.15
Product: Fedora
Version: rawhide
Component: perl-AnyEvent-HTTP
Severity: unspecified
Priority: unspecified
Assignee: fedora(a)famillecollet.com
Reporter: michael+rh(a)stapelberg.de
QA Contact: extras-qa(a)fedoraproject.org
CC: fedora(a)famillecollet.com,
perl-devel(a)lists.fedoraproject.org
The current version of perl-AnyEvent-HTTP is 1.46, which was released
2010-09-06.
The current stable version of AnyEvent::HTTP is 2.15 (released 2012-11-14).
Simply replacing the version number in the spec file resulted in a working
package for me, so this should not be much effort.
It’d be good to have this bumped because newer software relies on features
introduced in AnyEvent::HTTP 1.5: http://kanla.zekjur.net needs the tcp_connect
parameter.
Thanks!
--
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug https://bugzilla.redhat.com/token.cgi?t=QTcI8GjLME&a=cc_unsubscribe
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=438244
Summary: No cpanget man page
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: low
Priority: low
Component: cpanspec
AssignedTo: steve(a)silug.org
ReportedBy: jik(a)kamens.brookline.ma.us
QAContact: extras-qa(a)fedoraproject.org
CC: fedora-perl-devel-list(a)redhat.com
there is no man page for cpanget.
--
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.
https://bugzilla.redhat.com/show_bug.cgi?id=967697
Bug ID: 967697
Summary: provides false perl(B::Uitls)
Product: Fedora
Version: rawhide
Component: perl-Module-Info
Severity: unspecified
Priority: unspecified
Assignee: steve(a)silug.org
Reporter: robinlee.sysu(a)gmail.com
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org, steve(a)silug.org
Description of problem:
This package include /usr/share/perl5/vendor_perl/B/BUtils.pm. But it doesn't
follow common Perl practice. The packege this module file provdies is
'B::Utils' instead of 'B::BUtils'. Though B/BUtils.pm is a fork of B::Utils.
Then RPM's which requires perl(B::Utils) will break. Since yum/rpm may consider
perl-Module-Info could fulfill the dependency. Program that 'use B::Utils'
cannot find B/Utils.pm in perl-Module-Info.
Consider filter the perl(B::Utils) provides. Or link B/Utils.pm to B/BUtils.pm
and make it conflict perl-B-Utils
Version-Release number of selected component (if applicable):
perl-Module-Info-0.32-6.fc18.noarch
How reproducible:
perl -mB::Utils
--
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug https://bugzilla.redhat.com/token.cgi?t=W02G4kB8T1&a=cc_unsubscribe
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: CVE-2011-4115 perl-Parallel-ForkManager: insecure temporary file usage [fedora-all]
https://bugzilla.redhat.com/show_bug.cgi?id=751887
Summary: CVE-2011-4115 perl-Parallel-ForkManager: insecure
temporary file usage [fedora-all]
Product: Fedora
Version: 15
Platform: All
OS/Version: Linux
Status: NEW
Keywords: Security, SecurityTracking
Severity: low
Priority: low
Component: perl-Parallel-ForkManager
AssignedTo: tibbs(a)math.uh.edu
ReportedBy: vdanen(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: tibbs(a)math.uh.edu, fedora-perl-devel-list(a)redhat.com
Blocks: 751886
Classification: Fedora
Story Points: ---
Type: ---
This is an automatically created tracking bug! It was created to ensure
that one or more security vulnerabilities are fixed in affected Fedora
versions.
For comments that are specific to the vulnerability please use bugs filed
against "Security Response" product referenced in the "Blocks" field.
For more information see:
http://fedoraproject.org/wiki/Security/TrackingBugs
When creating a Bodhi update request, please include this bug ID and the
bug IDs of this bug's parent bugs filed against the "Security Response"
product (the top-level CVE bugs). Please mention the CVE IDs being fixed
in the RPM changelog when available.
Bodhi update submission link:
https://admin.fedoraproject.org/updates/new/?type_=security&bugs=751886
Please note: this issue affects multiple supported versions of Fedora.
Only one tracking bug has been filed; please ensure that it is only closed
when all affected versions are fixed.
[bug automatically created by: add-tracking-bugs]
--
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.
Product: Fedora EPEL
https://bugzilla.redhat.com/show_bug.cgi?id=962708
Bug ID: 962708
Summary: CVE-2012-6143 perl-Spoon (Spoon::Cookie): Do not run
Storable::thaw() on arbitrary untrusted user input
[epel-6]
Product: Fedora EPEL
Version: el6
Component: perl-Spoon
Keywords: Security, SecurityTracking
Severity: medium
Priority: medium
Assignee: steve(a)silug.org
Reporter: jlieskov(a)redhat.com
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org, steve(a)silug.org
Blocks: 962705 (CVE-2012-6143)
Category: ---
This is an automatically created tracking bug! It was created to ensure
that one or more security vulnerabilities are fixed in affected versions
of Fedora EPEL.
For comments that are specific to the vulnerability please use bugs filed
against the "Security Response" product referenced in the "Blocks" field.
For more information see:
http://fedoraproject.org/wiki/Security/TrackingBugs
When creating a Bodhi update request, please use the bodhi submission link
noted in the next comment(s). This will include the bug IDs of this
tracking bug as well as the relevant top-level CVE bugs.
Please also mention the CVE IDs being fixed in the RPM changelog and the
Bodhi notes field when available.
epel-6 tracking bug for perl-Spoon: see blocks bug list for full details of the
security issue(s).
[bug automatically created by: add-tracking-bugs]
--
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug https://bugzilla.redhat.com/token.cgi?t=OAeSnqF8OC&a=cc_unsubscribe