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.
https://bugzilla.redhat.com/show_bug.cgi?id=979143
Bug ID: 979143
Summary: rpm -q --provides perl has superfluous output
Product: Fedora
Version: 19
Component: perl
Severity: low
Priority: unspecified
Assignee: mmaslano(a)redhat.com
Reporter: pas(a)unh.edu
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
Description of problem:
Giving the command "rpm -q --provides perl" produces two lines for "charnames":
perl(charnames)
perl(charnames) = 1.30
Version-Release number of selected component (if applicable):
perl RPM is perl-5.16.3-265.fc19.x86_64
How reproducible:
Give the command
rpm -q --provides perl, grep for charnames
Steps to Reproduce:
1. Give the command rpm -q --provides perl | grep 'perl(charnames)'
2.
3.
Actual results:
perl(charnames)
perl(charnames) = 1.30
Expected results:
perl(charnames) = 1.30
Additional info:
I suspect this is an RPM packaging problem.
--
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=lrdNxxEn9W&a=cc_unsubscribe
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.
https://bugzilla.redhat.com/show_bug.cgi?id=970604
Bug ID: 970604
Summary: perl-Bio-ASN1-EntrezGene has broken dependencies
because of perl-bioperl removal
Product: Fedora
Version: 19
Component: perl-Bio-ASN1-EntrezGene
Severity: high
Priority: unspecified
Assignee: alexl(a)users.sourceforge.net
Reporter: ppisar(a)redhat.com
QA Contact: extras-qa(a)fedoraproject.org
CC: alexl(a)users.sourceforge.net,
perl-devel(a)lists.fedoraproject.org
perl-Bio-ASN1-EntrezGene has broken dependencies in the rawhide tree:
On x86_64:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires
perl(Bio::Index::AbstractSeq)
On i386:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires
perl(Bio::Index::AbstractSeq)
This is caused by removal of perl-bioperl from F19 because its maintainer did
not want to maintain it.
You can ressurect perl-bioperl or remove perl-Bio-ASN1-EntrezGene from F19 and
Rawhide too.
--
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=azqGBIQw3x&a=cc_unsubscribe
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
https://bugzilla.redhat.com/show_bug.cgi?id=989511
Bug ID: 989511
Summary: Cannot install perl-PAR-Packer via yum
Product: Fedora
Version: 19
Component: perl-PAR-Packer
Assignee: psabata(a)redhat.com
Reporter: alexey.radkov(a)gmail.com
QA Contact: extras-qa(a)fedoraproject.org
CC: perl-devel(a)lists.fedoraproject.org, ppisar(a)redhat.com,
psabata(a)redhat.com
Description of problem:
Cannot install perl-PAR-Packer via yum due to a conflict nss-tools
Version-Release number of selected component (if applicable):
Fedora 19
How reproducible:
yum install perl-PAR-Packer
(supposed that nss-tools is alraedy installed)
Actual results:
Transaction check error:
file /usr/share/man/man1/pp.1.gz from install of
perl-PAR-Packer-1.014-2.fc19.x86_64 conflicts with file from package
nss-tools-3.15.1-2.fc19.x86_64
Expected results:
perl-PAR-Packer is installed
--
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=2U9crPId5H&a=cc_unsubscribe
https://bugzilla.redhat.com/show_bug.cgi?id=970742
Bug ID: 970742
Summary: Test-File-ShareDir 0.3.3 is available
Product: Fedora
Version: rawhide
Component: perl-Test-File-ShareDir
Severity: unspecified
Priority: unspecified
Assignee: iarnell(a)gmail.com
Reporter: ktdreyer(a)ktdreyer.com
QA Contact: extras-qa(a)fedoraproject.org
CC: iarnell(a)gmail.com, perl-devel(a)lists.fedoraproject.org
Version 0.3.3 is available upstream. Rawhide has version 0.3.1.
http://search.cpan.org/dist/Test-File-ShareDir/
--
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=WjqtE3Vgp7&a=cc_unsubscribe