[perl-Sub-Exporter] Created tag perl-Sub-Exporter-0.975-1.el4

2011-02-13 Thread Paul Howarth
The lightweight tag 'perl-Sub-Exporter-0.975-1.el4' was created pointing to:

 beac20a... Merge branch 'el4' into el5
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-JSON-RPC] Add the perl default filter to filter the examples.

2011-02-13 Thread Emmanuel Seyman
commit b76e2c84401595c45da511280d6e5585cfdd
Author: Emmanuel Seyman 
Date:   Sun Feb 13 17:49:42 2011 +0100

Add the perl default filter to filter the examples.

 perl-JSON-RPC.spec |7 ++-
 1 files changed, 6 insertions(+), 1 deletions(-)
---
diff --git a/perl-JSON-RPC.spec b/perl-JSON-RPC.spec
index a67d32e..8fe4cc7 100644
--- a/perl-JSON-RPC.spec
+++ b/perl-JSON-RPC.spec
@@ -1,6 +1,6 @@
 Name:   perl-JSON-RPC
 Version:0.96
-Release:7%{?dist}
+Release:8%{?dist}
 Summary:Perl implementation of JSON-RPC 1.1 protocol
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -18,6 +18,8 @@ BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Test::Pod)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
+%{?perl_default_filter}
+
 %description
 JSON-RPC is a stateless and light-weight remote procedure call (RPC)
 protocol for inter-networking applications over HTTP. It uses JSON as the
@@ -58,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sun Feb 13 2011 Emmanuel Seyman  - 0.96-8
+- Add the perl default filter to filter the examples.
+
 * Tue Feb 08 2011 Fedora Release Engineering  
- 0.96-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-Data-ObjectDriver] Add perl default filter and filter the Oracle stuff

2011-02-13 Thread Emmanuel Seyman
commit 9588b34eb4fc57fe12239f4ae922721f9ac54cbc
Author: Emmanuel Seyman 
Date:   Sun Feb 13 18:21:34 2011 +0100

Add perl default filter and filter the Oracle stuff

 perl-Data-ObjectDriver.spec |9 -
 1 files changed, 8 insertions(+), 1 deletions(-)
---
diff --git a/perl-Data-ObjectDriver.spec b/perl-Data-ObjectDriver.spec
index 5625390..0ad8af7 100644
--- a/perl-Data-ObjectDriver.spec
+++ b/perl-Data-ObjectDriver.spec
@@ -1,6 +1,6 @@
 Name:   perl-Data-ObjectDriver
 Version:0.08
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Simple, transparent data interface, with caching
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -17,6 +17,9 @@ BuildRequires:  perl(Class::Data::Inheritable)
 BuildRequires:  perl(Class::Trigger)
 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
 
+%filter_requires_in %{perl_vendorlib}/Data/ObjectDriver/Driver/DBD/Oracle.pm
+%{?perl_default_filter}
+
 %description
 Data::ObjectDriver is an object relational mapper, meaning that it maps object-
 oriented design concepts onto a relational database.
@@ -58,6 +61,10 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sun Feb 13 2011 Emmanuel Seyman  - 0.08-3
+- Add perl default filter
+- Filter the Oracle stuff
+
 * Tue Feb 08 2011 Fedora Release Engineering  
- 0.08-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-Declare-Constraints-Simple] Fix dependency filter for rpm 4.9 onwards

2011-02-13 Thread Paul Howarth
commit 92e89f99044947bd1b4b69d32fcddc26b84fe36a
Author: Paul Howarth 
Date:   Sun Feb 13 21:44:02 2011 +

Fix dependency filter for rpm 4.9 onwards

 perl-Declare-Constraints-Simple.spec |9 +++--
 1 files changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/perl-Declare-Constraints-Simple.spec 
b/perl-Declare-Constraints-Simple.spec
index 7099596..912e41c 100644
--- a/perl-Declare-Constraints-Simple.spec
+++ b/perl-Declare-Constraints-Simple.spec
@@ -1,6 +1,6 @@
 Name:   perl-Declare-Constraints-Simple
 Version:0.03
-Release:11%{?dist}
+Release:12%{?dist}
 Summary:Declarative Validation of Data Structures
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -21,6 +21,8 @@ BuildRequires:  perl(Class::Inspector)
 # test -- optional
 BuildRequires:  perl(Test::Pod), perl(Test::Pod::Coverage)
 
+# Filter unwanted Requires: (rpm 4.9 onwards)
+%global __requires_exclude ^perl\\(Declare::Constraints::Simple-Library\\)
 
 %description
 The main purpose of this module is to provide an easy way to build a
@@ -30,7 +32,7 @@ declarative keywords in the importing namespace.
 %prep
 %setup -q -n Declare-Constraints-Simple-%{version}
 
-# Filter unwanted Requires:
+# Filter unwanted Requires: (pre rpm 4.9)
 cat << \EOF > %{name}-req
 #!/bin/sh
 %{__perl_requires} $* |\
@@ -67,6 +69,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Sun Feb 13 2011 Paul Howarth  - 0.03-12
+- Fix dependency filter for rpm 4.9 onwards
+
 * Tue Feb 08 2011 Fedora Release Engineering  
- 0.03-11
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-Declare-Constraints-Simple] Created tag perl-Declare-Constraints-Simple-0.03-12.fc16

2011-02-13 Thread Paul Howarth
The lightweight tag 'perl-Declare-Constraints-Simple-0.03-12.fc16' was created 
pointing to:

 92e89f9... Fix dependency filter for rpm 4.9 onwards
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-Declare-Constraints-Simple/f15/master] Fix dependency filter for rpm 4.9 onwards

2011-02-13 Thread Paul Howarth
Summary of changes:

  92e89f9... Fix dependency filter for rpm 4.9 onwards (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-Declare-Constraints-Simple] Created tag perl-Declare-Constraints-Simple-0.03-12.fc15

2011-02-13 Thread Paul Howarth
The lightweight tag 'perl-Declare-Constraints-Simple-0.03-12.fc15' was created 
pointing to:

 92e89f9... Fix dependency filter for rpm 4.9 onwards
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Kwiki-Revisions

2011-02-13 Thread buildsys


perl-Kwiki-Revisions has broken dependencies in the F-15 tree:
On x86_64:
perl-Kwiki-Revisions-0.15-14.fc15.noarch requires perl(mixin)
On i386:
perl-Kwiki-Revisions-0.15-14.fc15.noarch requires perl(mixin)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-JSON-RPC

2011-02-13 Thread buildsys


perl-JSON-RPC has broken dependencies in the F-15 tree:
On x86_64:
perl-JSON-RPC-0.96-7.fc15.noarch requires perl(MyApp)
On i386:
perl-JSON-RPC-0.96-7.fc15.noarch requires perl(MyApp)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Kwiki-RecentChanges

2011-02-13 Thread buildsys


perl-Kwiki-RecentChanges has broken dependencies in the F-15 tree:
On x86_64:
perl-Kwiki-RecentChanges-0.14-12.fc15.noarch requires perl(mixin)
On i386:
perl-Kwiki-RecentChanges-0.14-12.fc15.noarch requires perl(mixin)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Kwiki-Search

2011-02-13 Thread buildsys


perl-Kwiki-Search has broken dependencies in the F-15 tree:
On x86_64:
perl-Kwiki-Search-0.12-14.fc15.noarch requires perl(mixin)
On i386:
perl-Kwiki-Search-0.12-14.fc15.noarch requires perl(mixin)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Kwiki-UserName

2011-02-13 Thread buildsys


perl-Kwiki-UserName has broken dependencies in the F-15 tree:
On x86_64:
perl-Kwiki-UserName-0.14-14.fc15.noarch requires perl(mixin)
On i386:
perl-Kwiki-UserName-0.14-14.fc15.noarch requires perl(mixin)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-CGI-Application-Structured-Tools

2011-02-13 Thread buildsys


perl-CGI-Application-Structured-Tools has broken dependencies in the F-15 tree:
On x86_64:
perl-CGI-Application-Structured-Tools-0.007-4.fc15.noarch requires 
main_module>)
perl-CGI-Application-Structured-Tools-0.007-4.fc15.noarch requires 
perl()
perl-CGI-Application-Structured-Tools-0.007-4.fc15.noarch requires 
perl(http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Declare-Constraints-Simple

2011-02-13 Thread buildsys


perl-Declare-Constraints-Simple has broken dependencies in the F-15 tree:
On x86_64:
perl-Declare-Constraints-Simple-0.03-11.fc15.noarch requires 
perl(Declare::Constraints::Simple-Library)
On i386:
perl-Declare-Constraints-Simple-0.03-11.fc15.noarch requires 
perl(Declare::Constraints::Simple-Library)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Gtk2-Ex-Carp

2011-02-13 Thread buildsys


perl-Gtk2-Ex-Carp has broken dependencies in the F-15 tree:
On x86_64:
perl-Gtk2-Ex-Carp-0.01-10.fc15.noarch requires perl(Gtk2::Dialog)
On i386:
perl-Gtk2-Ex-Carp-0.01-10.fc15.noarch requires perl(Gtk2::Dialog)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Data-ObjectDriver

2011-02-13 Thread buildsys


perl-Data-ObjectDriver has broken dependencies in the F-15 tree:
On x86_64:
perl-Data-ObjectDriver-0.08-2.fc15.noarch requires perl(DBD::Oracle)
perl-Data-ObjectDriver-0.08-2.fc15.noarch requires perl(DBI::db)
On i386:
perl-Data-ObjectDriver-0.08-2.fc15.noarch requires perl(DBD::Oracle)
perl-Data-ObjectDriver-0.08-2.fc15.noarch requires perl(DBI::db)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Kwiki-Users-Remote

2011-02-13 Thread buildsys


perl-Kwiki-Users-Remote has broken dependencies in the F-15 tree:
On x86_64:
perl-Kwiki-Users-Remote-0.04-12.fc15.noarch requires perl(mixin)
On i386:
perl-Kwiki-Users-Remote-0.04-12.fc15.noarch requires perl(mixin)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-CSS-DOM

2011-02-13 Thread buildsys


perl-CSS-DOM has broken dependencies in the F-15 tree:
On x86_64:
perl-CSS-DOM-0.14-3.fc15.noarch requires perl()
On i386:
perl-CSS-DOM-0.14-3.fc15.noarch requires perl()
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Ace

2011-02-13 Thread buildsys


perl-Ace has broken dependencies in the F-15 tree:
On x86_64:
perl-Ace-1.92-7.fc15.noarch requires perl(Ace::Browser::LocalSiteDefs)
On i386:
perl-Ace-1.92-7.fc15.noarch requires perl(Ace::Browser::LocalSiteDefs)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Pugs-Compiler-Rule

2011-02-13 Thread buildsys


perl-Pugs-Compiler-Rule has broken dependencies in the F-15 tree:
On x86_64:
perl-Pugs-Compiler-Rule-0.37-8.fc15.noarch requires perl(v6-alpha)
On i386:
perl-Pugs-Compiler-Rule-0.37-8.fc15.noarch requires perl(v6-alpha)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-DateTime-Set

2011-02-13 Thread buildsys


perl-DateTime-Set has broken dependencies in the F-15 tree:
On x86_64:
perl-DateTime-Set-0.28-4.fc15.noarch requires perl(Set::Infinite) >= 
0:0.5502
On i386:
perl-DateTime-Set-0.28-4.fc15.noarch requires perl(Set::Infinite) >= 
0:0.5502
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Net-SSH-Perl

2011-02-13 Thread buildsys


perl-Net-SSH-Perl has broken dependencies in the F-15 tree:
On x86_64:
perl-Net-SSH-Perl-1.34-10.fc15.noarch requires perl(Crypt::IDEA)
On i386:
perl-Net-SSH-Perl-1.34-10.fc15.noarch requires perl(Crypt::IDEA)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-bioperl

2011-02-13 Thread buildsys


perl-bioperl has broken dependencies in the F-15 tree:
On x86_64:
perl-bioperl-1.6.1-6.fc15.noarch requires 
perl(Bio::Expression::FeatureSet)
On i386:
perl-bioperl-1.6.1-6.fc15.noarch requires 
perl(Bio::Expression::FeatureSet)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Object-InsideOut

2011-02-13 Thread buildsys


perl-Object-InsideOut has broken dependencies in the F-15 tree:
On x86_64:
perl-Object-InsideOut-3.56-5.fc15.noarch requires perl(t::Imp1)
perl-Object-InsideOut-3.56-5.fc15.noarch requires perl(t::Imp2)
On i386:
perl-Object-InsideOut-3.56-5.fc15.noarch requires perl(t::Imp1)
perl-Object-InsideOut-3.56-5.fc15.noarch requires perl(t::Imp2)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Kwiki-UserPreferences

2011-02-13 Thread buildsys


perl-Kwiki-UserPreferences has broken dependencies in the F-15 tree:
On x86_64:
perl-Kwiki-UserPreferences-0.13-13.fc15.noarch requires perl(mixin)
On i386:
perl-Kwiki-UserPreferences-0.13-13.fc15.noarch requires perl(mixin)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-DateTime-Format-Mail

2011-02-13 Thread buildsys


perl-DateTime-Format-Mail has broken dependencies in the F-15 tree:
On x86_64:
perl-DateTime-Format-Mail-0.3001-9.fc15.noarch requires perl(DateTime) 
>= 0:0.1705
On i386:
perl-DateTime-Format-Mail-0.3001-9.fc15.noarch requires perl(DateTime) 
>= 0:0.1705
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Kwiki-Raw

2011-02-13 Thread buildsys


perl-Kwiki-Raw has broken dependencies in the F-15 tree:
On x86_64:
perl-Kwiki-Raw-0.02-13.fc15.noarch requires perl(mixin)
On i386:
perl-Kwiki-Raw-0.02-13.fc15.noarch requires perl(mixin)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-DBIx-ContextualFetch

2011-02-13 Thread buildsys


perl-DBIx-ContextualFetch has broken dependencies in the F-15 tree:
On x86_64:
perl-DBIx-ContextualFetch-1.03-11.fc15.noarch requires perl(DBI::st)
perl-DBIx-ContextualFetch-1.03-11.fc15.noarch requires perl(DBI::db)
On i386:
perl-DBIx-ContextualFetch-1.03-11.fc15.noarch requires perl(DBI::st)
perl-DBIx-ContextualFetch-1.03-11.fc15.noarch requires perl(DBI::db)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Catalyst-Controller-FormBuilder

2011-02-13 Thread buildsys


perl-Catalyst-Controller-FormBuilder has broken dependencies in the F-15 tree:
On x86_64:
perl-Catalyst-Controller-FormBuilder-0.05-7.fc15.noarch requires 
perl(Catalyst::View::HTML::Template)
On i386:
perl-Catalyst-Controller-FormBuilder-0.05-7.fc15.noarch requires 
perl(Catalyst::View::HTML::Template)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Class-Prototyped

2011-02-13 Thread buildsys


perl-Class-Prototyped has broken dependencies in the F-15 tree:
On x86_64:
perl-Class-Prototyped-1.11-8.fc15.noarch requires 
perl(Class::Prototyped::Graph)
On i386:
perl-Class-Prototyped-1.11-8.fc15.noarch requires 
perl(Class::Prototyped::Graph)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Kwiki-NewPage

2011-02-13 Thread buildsys


perl-Kwiki-NewPage has broken dependencies in the F-15 tree:
On x86_64:
perl-Kwiki-NewPage-0.12-14.fc15.noarch requires perl(mixin)
On i386:
perl-Kwiki-NewPage-0.12-14.fc15.noarch requires perl(mixin)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


Broken dependencies: perl-Kwiki

2011-02-13 Thread buildsys


perl-Kwiki has broken dependencies in the F-15 tree:
On x86_64:
perl-Kwiki-0.39-10.fc15.noarch requires perl(mixin)
On i386:
perl-Kwiki-0.39-10.fc15.noarch requires perl(mixin)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel