2010-03-01 08:14:05 +00:00
|
|
|
Name: perl-Class-Method-Modifiers
|
|
|
|
Summary: Provides Moose-like method modifiers
|
2014-03-16 12:04:35 +00:00
|
|
|
Version: 2.10
|
|
|
|
Release: 1%{?dist}
|
2010-03-01 08:14:05 +00:00
|
|
|
License: GPL+ or Artistic
|
|
|
|
URL: http://search.cpan.org/dist/Class-Method-Modifiers
|
2014-03-16 12:04:35 +00:00
|
|
|
Source0: http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Class-Method-Modifiers-%{version}.tar.gz
|
2010-03-01 08:14:05 +00:00
|
|
|
BuildArch: noarch
|
2014-03-16 12:04:35 +00:00
|
|
|
# Module Build
|
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30
|
|
|
|
# Module Runtime
|
|
|
|
BuildRequires: perl(B)
|
|
|
|
BuildRequires: perl(base)
|
|
|
|
BuildRequires: perl(Carp)
|
|
|
|
BuildRequires: perl(Exporter)
|
|
|
|
BuildRequires: perl(strict)
|
|
|
|
BuildRequires: perl(warnings)
|
|
|
|
# Test Suite
|
|
|
|
BuildRequires: perl(File::Spec::Functions)
|
|
|
|
BuildRequires: perl(List::Util)
|
2011-03-13 09:24:56 +00:00
|
|
|
BuildRequires: perl(Test::Fatal)
|
2014-03-16 12:04:35 +00:00
|
|
|
BuildRequires: perl(Test::More) >= 0.88
|
|
|
|
BuildRequires: perl(if)
|
|
|
|
BuildRequires: perl(version)
|
|
|
|
# Optional Test Requirements
|
|
|
|
%if 0%{!?perl_bootstrap:1}
|
|
|
|
BuildRequires: perl(CPAN::Meta)
|
|
|
|
BuildRequires: perl(CPAN::Meta::Requirements) >= 2.120900
|
|
|
|
BuildRequires: perl(Moose)
|
|
|
|
%endif
|
|
|
|
# Runtime
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
Requires: perl(B)
|
|
|
|
Requires: perl(Carp)
|
|
|
|
Requires: perl(Exporter)
|
2010-03-01 08:14:05 +00:00
|
|
|
|
2014-03-16 12:04:35 +00:00
|
|
|
# Avoid doc-file dependencies
|
2010-03-01 08:14:05 +00:00
|
|
|
%{?perl_default_filter}
|
2008-09-08 18:29:01 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Method modifiers are a powerful feature from the CLOS (Common Lisp Object
|
|
|
|
System) world.
|
|
|
|
|
|
|
|
In its most basic form, a method modifier is just a method that calls
|
|
|
|
'$self->SUPER::foo(@_)'. I for one have trouble remembering that exact
|
|
|
|
invocation, so my classes seldom re-dispatch to their base classes. Very
|
|
|
|
bad!
|
|
|
|
|
|
|
|
'Class::Method::Modifiers' provides three modifiers: 'before', 'around',
|
|
|
|
and 'after'. 'before' and 'after' are run just before and after the method
|
|
|
|
they modify, but can not really affect that original method. 'around' is
|
|
|
|
run in place of the original method, with a hook to easily call that
|
|
|
|
original method. See the 'MODIFIERS' section for more details on how the
|
|
|
|
particular modifiers work.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n Class-Method-Modifiers-%{version}
|
|
|
|
|
2014-03-16 12:04:35 +00:00
|
|
|
# Drop unnecessary exec permissions from test files
|
|
|
|
chmod -c -x t/*.t
|
|
|
|
|
2008-09-08 18:29:01 +00:00
|
|
|
%build
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
2010-03-01 08:14:05 +00:00
|
|
|
make pure_install DESTDIR=%{buildroot}
|
2008-09-08 18:29:01 +00:00
|
|
|
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
|
2014-03-16 12:04:35 +00:00
|
|
|
%{_fixperms} %{buildroot}
|
2008-09-08 18:29:01 +00:00
|
|
|
|
|
|
|
%check
|
|
|
|
make test
|
|
|
|
|
|
|
|
%files
|
2014-03-16 12:04:35 +00:00
|
|
|
%doc Changes CONTRIBUTING LICENSE README README.md t/
|
|
|
|
%{perl_vendorlib}/Class/
|
|
|
|
%{_mandir}/man3/Class::Method::Modifiers.3*
|
2008-09-08 18:29:01 +00:00
|
|
|
|
|
|
|
%changelog
|
2014-03-16 12:04:35 +00:00
|
|
|
* Sun Mar 16 2014 Paul Howarth <paul@city-fan.org> <paul@city-fan.org> - 2.10-1
|
|
|
|
- Update to 2.10
|
|
|
|
- Remove erroneous perl 5.8 requirement
|
|
|
|
- Support for handling lvalue methods
|
|
|
|
- Convert to building with Dist::Zilla
|
|
|
|
- Repository migrated to the github moose organization
|
|
|
|
- Refresh configure_requires checking in generated Makefile.PL
|
|
|
|
- New CONTRIBUTING file
|
|
|
|
- Updated tests:
|
|
|
|
- Compile test now only runs for authors
|
|
|
|
- Check-deps test replaced by information-only report-prereqs test
|
|
|
|
- Drop obsoletes/provides for old tests sub-package
|
|
|
|
- Drop redundant Group tag
|
|
|
|
- Classify buildreqs by usage
|
|
|
|
- Make %%files list more explicit
|
|
|
|
|
2013-08-03 18:42:00 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.03-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-08-02 15:49:49 +00:00
|
|
|
* Fri Aug 02 2013 Petr Pisar <ppisar@redhat.com> - 2.03-2
|
|
|
|
- Perl 5.18 rebuild
|
|
|
|
|
2013-02-15 17:05:23 +00:00
|
|
|
* Fri Feb 15 2013 Iain Arnell <iarnell@gmail.com> 2.03-1
|
|
|
|
- update to latest upstream version
|
|
|
|
|
2013-02-14 11:01:37 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.00-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-05 19:06:18 +00:00
|
|
|
* Sat Jan 05 2013 Iain Arnell <iarnell@gmail.com> 2.00-1
|
|
|
|
- update to latest upstream version
|
|
|
|
|
2012-10-28 15:01:41 +00:00
|
|
|
* Sun Oct 28 2012 Iain Arnell <iarnell@gmail.com> 1.12-1
|
|
|
|
- update to latest upstream version
|
|
|
|
|
2012-10-27 15:32:10 +00:00
|
|
|
* Sat Oct 27 2012 Iain Arnell <iarnell@gmail.com> 1.10-1
|
|
|
|
- update to latest upstream version
|
|
|
|
|
2012-07-20 13:10:32 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.09-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-22 07:21:41 +00:00
|
|
|
* Fri Jun 22 2012 Petr Pisar <ppisar@redhat.com> - 1.09-2
|
|
|
|
- Perl 5.16 rebuild
|
|
|
|
|
2012-04-03 13:01:05 +00:00
|
|
|
* Tue Apr 03 2012 Iain Arnell <iarnell@gmail.com> 1.09-1
|
|
|
|
- update to latest upstream version
|
|
|
|
|
2012-01-22 08:47:27 +00:00
|
|
|
* Sun Jan 22 2012 Iain Arnell <iarnell@gmail.com> 1.08-3
|
|
|
|
- drop tests subpackage; move tests to main package documentation
|
|
|
|
|
2012-01-17 04:41:00 +00:00
|
|
|
* Tue Jan 17 2012 Iain Arnell <iarnell@gmail.com> - 1.08-2
|
|
|
|
- rebuilt again for F17 mass rebuild
|
|
|
|
|
2012-01-13 15:52:43 +00:00
|
|
|
* Fri Jan 13 2012 Iain Arnell <iarnell@gmail.com> 1.08-1
|
|
|
|
- update to latest upstream version
|
|
|
|
|
2012-01-13 12:56:46 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.07-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-06-21 02:48:59 +00:00
|
|
|
* Tue Jun 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.07-2
|
|
|
|
- Perl mass rebuild
|
|
|
|
|
2011-03-13 09:24:56 +00:00
|
|
|
* Sun Mar 13 2011 Iain Arnell <iarnell@gmail.com> 1.07-1
|
|
|
|
- update to latest upstream version
|
|
|
|
- clean up spec for modern rpmbuild
|
|
|
|
|
2011-02-08 19:16:42 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.05-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-15 16:52:06 +00:00
|
|
|
* Wed Dec 15 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.05-3
|
|
|
|
- 661697 rebuild for fixing problems with vendorach/lib
|
|
|
|
|
2010-04-30 10:02:04 +00:00
|
|
|
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.05-2
|
|
|
|
- Mass rebuild with perl-5.12.0
|
|
|
|
|
2010-03-01 08:14:05 +00:00
|
|
|
* Mon Mar 01 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.05-1
|
|
|
|
- update by Fedora::App::MaintainerTools 0.004
|
|
|
|
- PERL_INSTALL_ROOT => DESTDIR
|
|
|
|
|
2009-12-04 02:01:49 +00:00
|
|
|
* Fri Dec 4 2009 Stepan Kasal <skasal@redhat.com> - 1.04-2
|
|
|
|
- rebuild against perl 5.10.1
|
|
|
|
|
2009-07-31 07:19:17 +00:00
|
|
|
* Fri Jul 31 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.04-1
|
|
|
|
- auto-update to 1.04 (by cpan-spec-update 0.01)
|
|
|
|
|
2009-07-26 04:30:33 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.02-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-06-08 05:52:44 +00:00
|
|
|
* Mon Jun 08 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.02-1
|
|
|
|
- auto-update to 1.02 (by cpan-spec-update 0.01)
|
|
|
|
- altered br on perl(ExtUtils::MakeMaker) (0 => 6.42)
|
|
|
|
|
2009-02-26 13:08:09 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.01-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-09-08 21:14:36 +00:00
|
|
|
* Mon Sep 08 2008 Chris Weyl <cweyl@alumni.drew.edu> 1.01-3
|
|
|
|
- remove MM version qualifier (F-8's is older)
|
|
|
|
|
2008-09-08 18:34:51 +00:00
|
|
|
* Mon Sep 08 2008 Chris Weyl <cweyl@alumni.drew.edu> 1.01-2
|
|
|
|
- bump
|
|
|
|
|
2008-09-08 18:29:01 +00:00
|
|
|
* Sat Sep 06 2008 Chris Weyl <cweyl@alumni.drew.edu> 1.01-1
|
|
|
|
- initial Fedora packaging
|
|
|
|
- generated with cpan2dist (CPANPLUS::Dist::Fedora version 0.0.1)
|