summaryrefslogtreecommitdiffstats
path: root/perl-Module-Pluggable.spec
blob: 68105d572622ed93d00a520736ee9842cb345ba1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
%define module_version 3.5

Name:           perl-Module-Pluggable
Version:        3.50
Release:        1%{?dist}
Summary:        Automatically give your module the ability to have plugins
License:        GPL or Artistic
Group:          Development/Libraries
URL:            http://search.cpan.org/dist/Module-Pluggable/
Source0:        http://www.cpan.org/authors/id/S/SI/SIMONW/Module-Pluggable-%{module_version}.tar.gz
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch:      noarch
BuildRequires:  perl(Module::Build)
BuildRequires:  perl(Class::Inspector)
Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))

%description
Provides a simple but, hopefully, extensible way of having 'plugins' for
your module.

%prep
%setup -q -n Module-Pluggable-%{module_version}

%build
%{__perl} Build.PL installdirs=vendor
./Build

%install
rm -rf $RPM_BUILD_ROOT

./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;

%{_fixperms} $RPM_BUILD_ROOT/*

%check
./Build test

%clean
rm -rf $RPM_BUILD_ROOT

%files
%defattr(-,root,root,-)
%doc Changes README
%{perl_vendorlib}/*
%{_mandir}/man3/*

%changelog
* Mon Jan 29 2007 Steven Pritchard <steve@kspei.com> 3.50-1
- Update to 3.5.

* Sat Dec 09 2006 Steven Pritchard <steve@kspei.com> 3.40-1
- Update to 3.4.
- Use fixperms macro instead of our own chmod incantation.

* Sat Sep 16 2006 Steven Pritchard <steve@kspei.com> 3.10-2
- Fix find option order.

* Mon Jul 17 2006 Steven Pritchard <steve@kspei.com> 3.10-1
- Update to 3.1 (using 3.10 for the package since 3.01 == 3.1 to rpm).
- BR Class::Inspector.

* Thu Jun 08 2006 Steven Pritchard <steve@kspei.com> 3.01-1
- Update to 3.01.
- Switch to Module::Build-based build.

* Thu Mar 23 2006 Steven Pritchard <steve@kspei.com> 2.97-1
- Specfile autogenerated by cpanspec 1.62.
- Clean up description a little.