You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.4 KiB
76 lines
2.4 KiB
16 years ago
|
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 <cweyl@alumni.drew.edu> 0.02-1
|
||
|
- update for submission
|
||
|
|
||
|
* Sun Jan 11 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.02-0
|
||
|
- initial RPM packaging
|
||
|
- generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.7)
|
||
|
|