initial commit
This commit is contained in:
parent
23bf31e9cd
commit
51ee76a9cb
@ -0,0 +1 @@
|
|||||||
|
namespace-clean-0.08.tar.gz
|
1
import.log
Normal file
1
import.log
Normal file
@ -0,0 +1 @@
|
|||||||
|
perl-namespace-clean-0_08-1_fc9:HEAD:perl-namespace-clean-0.08-1.fc9.src.rpm:1220910024
|
82
perl-namespace-clean.spec
Normal file
82
perl-namespace-clean.spec
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
|
||||||
|
Name: perl-namespace-clean
|
||||||
|
Version: 0.08
|
||||||
|
Release: 1%{?dist}
|
||||||
|
License: GPL+ or Artistic
|
||||||
|
Group: Development/Libraries
|
||||||
|
Summary: Keep your namespace tidy
|
||||||
|
Source: http://search.cpan.org/CPAN/authors/id/P/PH/PHAYLON/namespace-clean-%{version}.tar.gz
|
||||||
|
Url: http://search.cpan.org/dist/namespace-clean
|
||||||
|
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(FindBin)
|
||||||
|
BuildRequires: perl(Scope::Guard) >= 0.02
|
||||||
|
BuildRequires: perl(Symbol)
|
||||||
|
BuildRequires: perl(Test::More) >= 0.62
|
||||||
|
|
||||||
|
%description
|
||||||
|
When you define a function, or import one, into a Perl package, it will
|
||||||
|
naturally also be available as a method. This does not per se cause
|
||||||
|
problems, but it can complicate subclassing and, for example, plugin
|
||||||
|
classes that are included via multiple inheritance by loading them as
|
||||||
|
base classes.
|
||||||
|
|
||||||
|
The 'namespace::clean' pragma will remove all previously declared or
|
||||||
|
imported symbols at the end of the current package's compile cycle.
|
||||||
|
Functions called in the package itself will still be bound by their
|
||||||
|
name, but they won't show up as methods on your class or instances.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n namespace-clean-%{version}
|
||||||
|
|
||||||
|
# note we first filter out the bits in _docdir...
|
||||||
|
cat << \EOF > %{name}-prov
|
||||||
|
#!/bin/sh
|
||||||
|
%{__perl_provides} `perl -p -e 's|%{_docdir}/%{name}-%{version}\S+||'`
|
||||||
|
EOF
|
||||||
|
|
||||||
|
%define __perl_provides %{_builddir}/namespace-clean-%{version}/%{name}-prov
|
||||||
|
chmod +x %{__perl_provides}
|
||||||
|
|
||||||
|
cat << \EOF > %{name}-req
|
||||||
|
#!/bin/sh
|
||||||
|
%{__perl_requires} `perl -p -e 's|\S+%{_docdir}/%{name}-%{version}\S+||'`
|
||||||
|
EOF
|
||||||
|
|
||||||
|
%define __perl_requires %{_builddir}/namespace-clean-%{version}/%{name}-req
|
||||||
|
chmod +x %{__perl_requires}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%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 README t/
|
||||||
|
%{perl_vendorlib}/*
|
||||||
|
%{_mandir}/man3/*.3*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sat Sep 06 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.08-1
|
||||||
|
- initial Fedora packaging
|
||||||
|
- generated with cpan2dist (CPANPLUS::Dist::Fedora version 0.0.1)
|
Loading…
Reference in New Issue
Block a user