Bug 810738

Summary: Circular build dependencies in perl-POE-Component-Client-HTTP-0.944-1.fc18
Product: [Fedora] Fedora Reporter: Paul Howarth <paul>
Component: perl-POE-Component-Client-HTTPAssignee: Petr Šabata <psabata>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: rawhideCC: mmaslano, perl-devel, psabata
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: perl-POE-Component-Client-HTTP-0.945-2.fc18 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2012-04-19 10:25:51 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:

Description Paul Howarth 2012-04-08 19:21:26 UTC
perl-POE-Component-Client-HTTP build-requires perl(POE::Filter::HTTPChunk) and perl(POE::Filter::HTTPHead) but these modules are provided by perl-POE-Component-Client-HTTP so it is therefore build-requiring itself, which is bad when it comes to bootstrapping a new perl release.

Simply removing these two buildreqs fixes this problem:

diff --git a/perl-POE-Component-Client-HTTP.spec b/perl-POE-Component-Client-HTTP.spec
index a15e72e..7a89c19 100644
--- a/perl-POE-Component-Client-HTTP.spec
+++ b/perl-POE-Component-Client-HTTP.spec
@@ -35,8 +35,6 @@ BuildRequires:  perl(POE) >= 1.312
 BuildRequires:  perl(POE::Component::Client::Keepalive) >= 0.2680
 BuildRequires:  perl(POE::Driver::SysRW)
 BuildRequires:  perl(POE::Filter)
-BuildRequires:  perl(POE::Filter::HTTPChunk)
-BuildRequires:  perl(POE::Filter::HTTPHead)
 BuildRequires:  perl(POE::Filter::Line)
 BuildRequires:  perl(POE::Filter::Stackable)
 BuildRequires:  perl(POE::Filter::Stream)

Comment 1 Petr Šabata 2012-04-19 09:26:06 UTC
You're right.  Thank you for spotting this.