forked from pool/perl-namespace-clean
Copy from home:niner9:perl/perl-namespace-clean via accept of submit request 31877 revision 3. Request was accepted with message: Reviewed ok, but please keep your changes in a .changes file in the future - use osc vc OBS-URL: https://build.opensuse.org/request/show/31877 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-namespace-clean?expand=0&rev=1
60 lines
1.6 KiB
RPMSpec
60 lines
1.6 KiB
RPMSpec
Name: perl-namespace-clean
|
|
Version: 0.13
|
|
Release: 1%{?dist}
|
|
Summary: Keep imports and functions out of your namespace
|
|
License: GPL+ or Artistic
|
|
Group: Development/Libraries/Perl
|
|
URL: http://search.cpan.org/dist/namespace-clean/
|
|
Source0: http://www.cpan.org/modules/by-module/namespace/namespace-clean-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl(B::Hooks::EndOfScope) >= 0.07
|
|
BuildRequires: perl(Sub::Identify) >= 0.04
|
|
BuildRequires: perl(Sub::Name) >= 0.04
|
|
BuildRequires: perl(Symbol)
|
|
Requires: perl = %{perl_version}
|
|
Requires: perl(B::Hooks::EndOfScope) >= 0.07
|
|
Requires: perl(Sub::Identify) >= 0.04
|
|
Requires: perl(Sub::Name) >= 0.04
|
|
Requires: perl(Symbol)
|
|
|
|
%description
|
|
Keeping packages clean
|
|
|
|
%prep
|
|
%setup -q -n namespace-clean-%{version}
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
|
|
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
|
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
|
|
|
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
|
|
%check
|
|
make test
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc Changes README
|
|
%{perl_vendorlib}/*
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|
|
* Tue Feb 09 2010 Stefan Seifert <nine@detonation.org> 0.13-1
|
|
- Upgraded to version 0.13
|
|
|
|
* Tue Jan 12 2010 Stefan Seifert <nine@detonation.org> 0.11-1
|
|
- Specfile autogenerated by cpanspec 1.78.
|