Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: python-pip pkg conflict with perl-pip
https://bugzilla.redhat.com/show_bug.cgi?id=616626
Summary: python-pip pkg conflict with perl-pip
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: low
Component: perl-pip
AssignedTo: mmaslano(a)redhat.com
ReportedBy: astokes(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: fedora-perl-devel-list(a)redhat.com,
mmaslano(a)redhat.com, phalliday(a)excelsiorsystems.net
Depends on: 616399
Classification: Fedora
Target Release: ---
Clone Of: 616399
+++ This bug was initially created as a clone of Bug #616399 +++
Description of problem:
Attempting to do a wildcard install of both python and perl packages results a
file conflict for both python-pip and perl-pip
Version-Release number of selected component (if applicable):
python-pip 0.6.3-1 & perl-pip 1.16-1
How reproducible:
100%
Steps to Reproduce:
1. yum install python* perl*
2.
3.
Actual results:
Running Transaction Test
Transaction Check Error:
file /usr/bin/pip conflicts between attempted installs of
python-pip-0.6.3-1.fc13.noarch and perl-pip-1.16-1.fc13.noarch
Expected results:
No conflicts
Additional info:
--- Additional comment from phalliday(a)excelsiorsystems.net on 2010-07-20
14:26:35 EDT ---
Well, I think the Debian approach
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=551926) should be done here.
Both packages should have to rename their /usr/bin/pip. Something like
/usr/bin/pip-perl and /usr/bin/pip-python. That way completion will work at
least.
--
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: Request for support in EPEL
https://bugzilla.redhat.com/show_bug.cgi?id=613872
Summary: Request for support in EPEL
Product: Fedora
Version: 13
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: low
Component: perl-Chart
AssignedTo: steve(a)silug.org
ReportedBy: fulko.hew(a)gmail.com
QAContact: extras-qa(a)fedoraproject.org
CC: steve(a)silug.org, fedora-perl-devel-list(a)redhat.com
Classification: Fedora
I would like to see one of your Fedora packages 'perl-Chart'
in Extra Packages for Enterprise Linux (EPEL) repository.
Would your be interested/willing to maintain this package in EPEL?
Thanks
Fulko
--
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: Default clamd conf file is broken
https://bugzilla.redhat.com/show_bug.cgi?id=459954
Summary: Default clamd conf file is broken
Product: Fedora EPEL
Version: el5
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: medium
Component: amavisd-new
AssignedTo: steve(a)silug.org
ReportedBy: jlquinn(a)optonline.net
QAContact: extras-qa(a)fedoraproject.org
CC: fedora-perl-devel-list(a)redhat.com
Estimated Hours: 0.0
Classification: Fedora
Description of problem:
/etc/clam.d/amavisd.conf has syntax errors that prevent
Version-Release number of selected component (if applicable):
amavisd-new-2.4.5-1.el5
How reproducible:
[root@mail1 ~]# service clamd.amavisd start
Starting clamd.amavisd: ERROR: Parse error at line 2: Option LogSyslog requires
boolean argument.
ERROR: Can't open/parse the config file /etc/clamd.d/amavisd.conf
[FAILED]
After fixing this option to be:
LogSyslog yes
then
[root@mail1 amavisd-new-2.4.5]# service clamd.amavisd start
Starting clamd.amavisd: ERROR: Parse error at line 14: Option FixStaleSocket
requires boolean argument.
ERROR: Can't open/parse the config file /etc/clamd.d/amavisd.conf
[FAILED]
Fixing this to be:
FixStaleSocket yes
allows clamd to start correctly.
Steps to Reproduce:
1.
2.
3.
Actual results:
Expected results:
Additional info:
--
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: $ENV{"HTTP_TRANSFER_ENCODING"} may be undefined in SOAP::Transport::HTTP
https://bugzilla.redhat.com/show_bug.cgi?id=571192
Summary: $ENV{"HTTP_TRANSFER_ENCODING"} may be undefined in
SOAP::Transport::HTTP
Product: Fedora
Version: 12
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: low
Component: perl-SOAP-Lite
AssignedTo: mmcgrath(a)redhat.com
ReportedBy: uckelman(a)nomic.net
QAContact: extras-qa(a)fedoraproject.org
CC: fedora-perl-devel-list(a)redhat.com, mmcgrath(a)redhat.com
Classification: Fedora
Description of problem:
I get the following error message when calling Bugzilla's xmlrpc.cgi, which
uses SOAP::Transport::HTTP:
[Sun Mar 07 07:17:07 2010] [error] [client 146.50.208.39] [Sun Mar 7 07:17:07
2010] xmlrpc.cgi: Use of uninitialized value $ENV{"HTTP_TRANSFER_ENCODING"} in
pattern match (m//) at /usr/lib/perl5/vendor_perl/5.10.0/SOAP/Transport/HTTP.pm
line 530.
The offending line looks like this:
my $chunked = ( $ENV{'HTTP_TRANSFER_ENCODING'} =~ /^chunked.*$/ ) || 0;
Since the Transfer-Encoding header will often not be present, wouldn't it be
better to first check whether the key we're asking for exists?
my $chunked = (exists $ENV{'HTTP_TRANSFER_ENCODING'} &&
$ENV{'HTTP_TRANSFER_ENCODING'} =~ /^chunked.*$/ ) || 0;
Version-Release number of selected component (if applicable):
perl-SOAP-Lite-0.710.10-1.fc12.noarch
How reproducible:
Always.
Steps to Reproduce:
1. Load the URL for Bugzilla's xmlrpc.cgi.
Actual results:
Call fails with the above error.
Expected results:
No error.
--
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: Needs to BR version.pm for EPEL build
https://bugzilla.redhat.com/show_bug.cgi?id=628046
Summary: Needs to BR version.pm for EPEL build
Product: Fedora
Version: 13
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: low
Component: perl-SOAP-Lite
AssignedTo: mmcgrath(a)redhat.com
ReportedBy: bloch(a)verdurin.com
QAContact: extras-qa(a)fedoraproject.org
CC: fedora-perl-devel-list(a)redhat.com, mmcgrath(a)redhat.com
Classification: Fedora
Description of problem:
I'm trying to make an EPEL5 build of perl-bioperl (ultimately so I can make an
RPM of perl-Bio-SamTools). One of the bioperl requirements is perl-SOAP-Lite.
In order to make the tests pass, I had to add the following to the .spec:
BuildRequires: perl(version)
Version-Release number of selected component (if applicable):
perl-SOAP-Lite-0.710.10-1.fc13.noarch
How reproducible:
Steps to Reproduce:
1.
2.
3.
Actual results:
Expected results:
Additional info:
--
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-Test-Memory-Cycle - Request for EL-6 branch
https://bugzilla.redhat.com/show_bug.cgi?id=620413
Summary: perl-Test-Memory-Cycle - Request for EL-6 branch
Product: Fedora EPEL
Version: el6
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: low
Component: perl-Test-Memory-Cycle
AssignedTo: rob.myers(a)gtri.gatech.edu
ReportedBy: paul(a)city-fan.org
QAContact: extras-qa(a)fedoraproject.org
CC: rob.myers(a)gtri.gatech.edu,
fedora-perl-devel-list(a)redhat.com
Classification: Fedora
perl-Test-Memory-Cycle is included in EL-6 optional packages, but not on all
architectures (e.g. it is missing from ppc64), which is a problem when building
packages that depend on it in EPEL-6.
Please could we have an EPEL EL-6 branch built using the RHEL-6 SRPM to provide
it for the other arches. I (pghmcfc) am willing to (co)maintain.
--
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: SVK fails because it cannot find Time/Progress.pm
https://bugzilla.redhat.com/show_bug.cgi?id=483772
Summary: SVK fails because it cannot find Time/Progress.pm
Product: Fedora
Version: 10
Platform: All
OS/Version: Linux
Status: NEW
Severity: urgent
Priority: low
Component: perl-SVK
AssignedTo: ianburrell(a)gmail.com
ReportedBy: warlord(a)mit.edu
QAContact: extras-qa(a)fedoraproject.org
CC: ianburrell(a)gmail.com,
fedora-perl-devel-list(a)redhat.com
Classification: Fedora
Description of problem:
I just upgraded Fedora 10 yesterday and this morning I noticed that SVK isn't
working anymore. When I try to sync I get:
Can't locate Time/Progress.pm in @INC (@INC contains:
/usr/lib/perl5/5.10.0/i386-linux-thread-multi /usr/lib/perl5/5.10.0
/usr/local/lib/perl5/site_perl/5.10.0/i386-linux-thread-multi
/usr/local/lib/perl5/site_perl/5.10.0
/usr/lib/perl5/vendor_perl/5.10.0/i386-linux-thread-multi
/usr/lib/perl5/vendor_perl/5.10.0 /usr/lib/perl5/vendor_perl
/usr/local/lib/perl5/site_perl .) at
/usr/lib/perl5/vendor_perl/5.10.0/SVK/Notify.pm line 214.
Version-Release number of selected component (if applicable):
perl-SVK-2.2.1-1.fc10.noarch
How reproducible:
Seems to happen every time I try to use "svk sync".
Some other svk operations seem to work okay.
Steps to Reproduce:
1. yum update (as of 2009-02-03 10:20am US/EST)
2. svk sync <depotpath>
3.
Actual results:
See above
Expected results:
It should sync.
Additional info:
I cannot find Time/Progress.pm in a package.. And indeed the perl-SVK RPM
doesn't depend on perl(Time/Progress.pm) for some odd reason... Probably
because the "require Time/Progress.pm" is within a subroutine instead of
global?
But this bug makes SVK practically useless.
--
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-SVN-Mirror-0.75-2.fc11
https://bugzilla.redhat.com/show_bug.cgi?id=511770
Summary: FTBFS perl-SVN-Mirror-0.75-2.fc11
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-SVN-Mirror
AssignedTo: ianburrell(a)gmail.com
ReportedBy: ftbfs(a)fedoraproject.org
QAContact: extras-qa(a)fedoraproject.org
CC: ianburrell(a)gmail.com,
fedora-perl-devel-list(a)redhat.com
Blocks: 511348
Classification: Fedora
perl-SVN-Mirror-0.75-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-Devel-Cycle - Request for EL-6 branch
https://bugzilla.redhat.com/show_bug.cgi?id=620410
Summary: perl-Devel-Cycle - Request for EL-6 branch
Product: Fedora EPEL
Version: el6
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: low
Component: perl-Devel-Cycle
AssignedTo: rob.myers(a)gtri.gatech.edu
ReportedBy: paul(a)city-fan.org
QAContact: extras-qa(a)fedoraproject.org
CC: rob.myers(a)gtri.gatech.edu,
fedora-perl-devel-list(a)redhat.com
Classification: Fedora
perl-Devel-Cycle is included in EL-6 optional packages, but not on all
architectures (e.g. it is missing from ppc64), which is a problem when building
packages that depend on it in EPEL-6.
Please could we have an EPEL EL-6 branch built using the RHEL-6 SRPM to provide
it for the other arches. I (pghmcfc) am willing to (co)maintain.
--
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: RFE : please build perl-Net-CUPS for EPEL
https://bugzilla.redhat.com/show_bug.cgi?id=590074
Summary: RFE : please build perl-Net-CUPS for EPEL
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: low
Component: perl-Net-CUPS
AssignedTo: cweyl(a)alumni.drew.edu
ReportedBy: fedora(a)famillecollet.com
QAContact: extras-qa(a)fedoraproject.org
CC: cweyl(a)alumni.drew.edu,
fedora-perl-devel-list(a)redhat.com
Classification: Fedora
Can you please build this package for EPEL ?
This is a dependencies for fusioninventory, I want to package for fedora/EPEL.
Regards
--
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.