From c850ff08e02bd88ea0e127e5403b36556ac6f249 Mon Sep 17 00:00:00 2001 From: Chris Weyl Date: Wed, 14 Jan 2009 22:59:46 +0000 Subject: [PATCH] initial import --- .cvsignore | 1 + import.log | 1 + perl-MooseX-Role-Parameterized.spec | 75 +++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 78 insertions(+) create mode 100644 import.log create mode 100644 perl-MooseX-Role-Parameterized.spec diff --git a/.cvsignore b/.cvsignore index e69de29..fbc5d5c 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +MooseX-Role-Parameterized-0.02.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..f7fe7b7 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +perl-MooseX-Role-Parameterized-0_02-1_fc10:HEAD:perl-MooseX-Role-Parameterized-0.02-1.fc10.src.rpm:1231973975 diff --git a/perl-MooseX-Role-Parameterized.spec b/perl-MooseX-Role-Parameterized.spec new file mode 100644 index 0000000..139a4ff --- /dev/null +++ b/perl-MooseX-Role-Parameterized.spec @@ -0,0 +1,75 @@ +Name: perl-MooseX-Role-Parameterized +Version: 0.02 +Release: 1%{?dist} +# see LICENSE +License: GPL+ or Artistic +Group: Development/Libraries +Summary: Make your roles flexible through parameterization +Source: 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 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +BuildArch: noarch + +BuildRequires: perl(Moose) >= 0.63 +# tests +BuildRequires: perl(Test::More) +BuildRequires: perl(Test::Exception) +BuildRequires: perl(Storable) +BuildRequires: perl(Data::Dumper) + +%description +Roles are composable units of behavior. They are useful for factoring out +functionality common to many classes from any part of your class hierarchy. +(See Moose::Cookbook::Roles::Recipe1 for an introduction to Moose::Role.) + +While combining roles affords you a great deal of flexibility, individual +roles have very little in the way of configurability. Core Moose provides +alias for renaming methods to avoid conflicts, and excludes for ignoring +methods you don't want or need (see Moose::Cookbook::Roles::Recipe2 for more +about alias and excludes). + +Because roles serve many different masters, they usually provide only the +least common denominator of functionality. To empower roles further, more +configurability than alias and excludes is required. Perhaps your role needs +to know which method to call when it is done. Or what default value to use for +its url attribute. + +Parameterized roles offer exactly this solution. + +%prep +%setup -q -n MooseX-Role-Parameterized-%{version} + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + +%install +rm -rf %{buildroot} + +make pure_install PERL_INSTALL_ROOT=%{buildroot} +find %{buildroot} -type f -name .packlist -exec rm -f {} ';' +find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';' + +%{_fixperms} %{buildroot}/* + +%check +make test + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc Changes LICENSE README +%{perl_vendorlib}/* +%{_mandir}/man3/*.3* + +%changelog +* Mon Jan 12 2009 Chris Weyl 0.02-1 +- update for submission + +* Sun Jan 11 2009 Chris Weyl 0.02-0 +- initial RPM packaging +- generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.7) + diff --git a/sources b/sources index e69de29..de43cdc 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +2adcf2c7225c34768d80efb018d877ab MooseX-Role-Parameterized-0.02.tar.gz