[perl-Devel-PartialDump] avoid circular build dependency with perl-Moose

Iain Arnell iarnell at fedoraproject.org
Fri Apr 6 15:53:55 UTC 2012


commit 1c3191e11606f027f9ac734234228f207004bf8b
Author: Iain Arnell <iarnell at gmail.com>
Date:   Fri Apr 6 09:53:47 2012 -0600

    avoid circular build dependency with perl-Moose

 perl-Devel-PartialDump.spec |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)
---
diff --git a/perl-Devel-PartialDump.spec b/perl-Devel-PartialDump.spec
index 18c3912..b1eedc0 100644
--- a/perl-Devel-PartialDump.spec
+++ b/perl-Devel-PartialDump.spec
@@ -1,6 +1,6 @@
 Name:           perl-Devel-PartialDump
 Version:        0.15
-Release:        3%{?dist}
+Release:        4%{?dist}
 Summary:        Partial dumping of data structures, optimized for argument printing
 # from PartialDump.pm
 License:        GPL+ or Artistic
@@ -9,7 +9,13 @@ URL:            http://search.cpan.org/dist/Devel-PartialDump/
 Source0:        http://www.cpan.org/authors/id/F/FL/FLORA/Devel-PartialDump-%{version}.tar.gz
 BuildArch:      noarch
 BuildRequires:  perl(ExtUtils::MakeMaker)
+# Moose has a manual dependency on Devel::PartialDump for enhanced reporting
+# Devel::PartialDump itself requires Moose, so when bootstrapping we do a blind
+# build of Devel::PartialDump without running the test suite, then build Moose,
+# then rebuild Devel::PartialDump with Moose, running the test suite
+%if !0%{?perl_bootstrap}
 BuildRequires:  perl(Moose)
+%endif
 BuildRequires:  perl(namespace::clean) >= 0.20
 BuildRequires:  perl(Sub::Exporter)
 BuildRequires:  perl(Test::use::ok)
@@ -38,7 +44,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
+%if 0%{!?perl_bootstrap:1}
 make test
+%endif
 
 %files
 %doc Changes
@@ -46,6 +54,10 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Fri Apr 06 2012 Iain Arnell <iarnell at gmail.com> 0.15-4
+- avoid circular build dependency with perl-Moose (patch from Paul Howarth
+  rhbz#810532)
+
 * Fri Jan 13 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.15-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
 



More information about the perl-devel mailing list