[perl-MooseX-Role-Parameterized] Update to 1.04

Paul Howarth pghmcfc at fedoraproject.org
Fri Aug 1 16:28:43 UTC 2014


commit f064d5219433e68bd3d957ab9c67d1a196793ab0
Author: Paul Howarth <paul at city-fan.org>
Date:   Fri Aug 1 16:44:10 2014 +0100

    Update to 1.04
    
    - New upstream release 1.04
      - This extension is now implemented as a role metarole, which means it can
        (mostly) cooperate with other role extensions, such as
        MooseX::Role::WithOverloading; note that you should load
        MooseX::Role::Parameterized _after_ other extensions
      - This module no longer supports passing a "-metaclass" parameter when you
        load it; this was an artifact from a much earlier era of Moose extensions
      - Repository migrated to the github moose organization
      - Convert this distribution to Dist::Zilla to resolve packaging insanity
    - This release by ETHER → update source URL
    - Use %license
    - Make %files list more explicit
    - Classify buildreqs by usage

 perl-MooseX-Role-Parameterized.spec |   69 +++++++++++++++++++++++++++++------
 sources                             |    2 +-
 2 files changed, 58 insertions(+), 13 deletions(-)
---
diff --git a/perl-MooseX-Role-Parameterized.spec b/perl-MooseX-Role-Parameterized.spec
index 58f4d2f..42a1526 100644
--- a/perl-MooseX-Role-Parameterized.spec
+++ b/perl-MooseX-Role-Parameterized.spec
@@ -1,22 +1,44 @@
 Name:           perl-MooseX-Role-Parameterized
 Summary:        Make your roles flexible through parameterization
-Version:        1.02
-Release:        2%{?dist}
+Version:        1.04
+Release:        1%{?dist}
 License:        GPL+ or Artistic
 Group:          Development/Libraries
-Source0:        http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/MooseX-Role-Parameterized-%{version}.tar.gz 
 URL:            http://search.cpan.org/dist/MooseX-Role-Parameterized
-Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
+Source0:        http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/MooseX-Role-Parameterized-%{version}.tar.gz 
 BuildArch:      noarch
-
-BuildRequires:  perl(Data::Dumper)
-BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.42
+# Module Build
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker)
+# Module Runtime
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Module::Runtime)
 BuildRequires:  perl(Moose) >= 2.0300
+BuildRequires:  perl(Moose::Exporter)
+BuildRequires:  perl(Moose::Meta::Role)
+BuildRequires:  perl(Moose::Role)
+BuildRequires:  perl(Moose::Util)
+BuildRequires:  perl(namespace::autoclean)
+BuildRequires:  perl(namespace::clean)
+# Test Suite
+BuildRequires:  perl(CPAN::Meta) >= 2.120900
+BuildRequires:  perl(Data::Dumper)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(lib)
+BuildRequires:  perl(List::Util)
+BuildRequires:  perl(Moose::Util::TypeConstraints)
+BuildRequires:  perl(MooseX::Role::WithOverloading)
+BuildRequires:  perl(overload)
+BuildRequires:  perl(Scalar::Util)
 BuildRequires:  perl(Storable)
+BuildRequires:  perl(strict)
 BuildRequires:  perl(Test::Fatal)
 BuildRequires:  perl(Test::Moose)
 BuildRequires:  perl(Test::More) >= 0.96
-
+BuildRequires:  perl(Test::Requires)
+BuildRequires:  perl(warnings)
+# Runtime
+Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:       perl(Moose) >= 2.0300
 
 %{?perl_default_filter}
@@ -44,7 +66,7 @@ Parameterized roles offer exactly this solution.
 %setup -q -n MooseX-Role-Parameterized-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
@@ -56,11 +78,34 @@ find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
 make test
 
 %files
-%doc Changes t/
-%{perl_vendorlib}/*
-%{_mandir}/man3/*.3*
+%license LICENSE
+%doc Changes CONTRIBUTING README t/
+%{perl_vendorlib}/MooseX/
+%{_mandir}/man3/MooseX::Role::Parameterized.3pm*
+%{_mandir}/man3/MooseX::Role::Parameterized::Extending.3pm*
+%{_mandir}/man3/MooseX::Role::Parameterized::Meta::Role::Parameterized.3pm*
+%{_mandir}/man3/MooseX::Role::Parameterized::Meta::Trait::Parameterizable.3pm*
+%{_mandir}/man3/MooseX::Role::Parameterized::Meta::Trait::Parameterized.3pm*
+%{_mandir}/man3/MooseX::Role::Parameterized::Parameters.3pm*
+%{_mandir}/man3/MooseX::Role::Parameterized::Tutorial.3pm*
+%{_mandir}/man3/MooseX::Role::README.3pm*
 
 %changelog
+* Thu Jul 31 2014 Paul Howarth <paul at city-fan.org> - 1.04-1
+- Update to 1.04
+  - This extension is now implemented as a role metarole, which means it can
+    (mostly) cooperate with other role extensions, such as
+    MooseX::Role::WithOverloading; note that you should load
+    MooseX::Role::Parameterized _after_ other extensions
+  - This module no longer supports passing a "-metaclass" parameter when you
+    load it; this was an artifact from a much earlier era of Moose extensions
+  - Repository migrated to the github moose organization
+  - Convert this distribution to Dist::Zilla to resolve packaging insanity
+- This release by ETHER → update source URL
+- Use %%license
+- Make %%files list more explicit
+- Classify buildreqs by usage
+
 * Sat Jun 07 2014 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.02-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
diff --git a/sources b/sources
index 6dc508c..701e826 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-97a45b34081c3b5f611409aec49d77f4  MooseX-Role-Parameterized-1.02.tar.gz
+a9d8af5186aeb60d7d408cc5731f9ca6  MooseX-Role-Parameterized-1.04.tar.gz


More information about the scm-commits mailing list