Compare commits

...

4 Commits
rawhide ... f9

Author SHA1 Message Date
Fedora Release Engineering 64f8841808 dist-git conversion 2010-07-29 06:08:27 +00:00
Bill Nottingham f64962bcf5 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 02:17:06 +00:00
Chris Weyl 720e90c248 - remove MM version qualifier (F-8's is older) 2008-09-08 20:39:39 +00:00
Kevin Fenzi 8cf542613a Initialize branch F-9 for perl-Class-Method-Modifiers 2008-09-08 15:26:52 +00:00
4 changed files with 77 additions and 21 deletions

View File

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: perl-Class-Method-Modifiers
# $Id$
NAME := perl-Class-Method-Modifiers
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View File

@ -0,0 +1,76 @@
Name: perl-Class-Method-Modifiers
Version: 1.01
Release: 3%{?dist}
License: GPL+ or Artistic
Group: Development/Libraries
Summary: Provides Moose-like method modifiers
Source: http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/Class-Method-Modifiers-%{version}.tar.gz
Url: http://search.cpan.org/dist/Class-Method-Modifiers
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
BuildArch: noarch
BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(MRO::Compat)
# testing
BuildRequires: perl(Test::Exception)
BuildRequires: perl(Test::More)
%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}
find t/ -type f -exec perl -pi -e 's|^#!perl|#!/usr/bin/perl|' {} +
%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 t/
%{perl_vendorlib}/*
%{_mandir}/man3/*.3*
%changelog
* Mon Sep 08 2008 Chris Weyl <cweyl@alumni.drew.edu> 1.01-3
- remove MM version qualifier (F-8's is older)
* Mon Sep 08 2008 Chris Weyl <cweyl@alumni.drew.edu> 1.01-2
- bump
* 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)

View File

@ -0,0 +1 @@
f0398c468025d21493745619b1114a46 Class-Method-Modifiers-1.01.tar.gz