Import
This commit is contained in:
parent
6bdd532812
commit
1b0f858313
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
||||
/Module-Install-AuthorRequires-0.02.tar.gz
|
53
perl-Module-Install-AuthorRequires.spec
Normal file
53
perl-Module-Install-AuthorRequires.spec
Normal file
@ -0,0 +1,53 @@
|
||||
Name: perl-Module-Install-AuthorRequires
|
||||
Version: 0.02
|
||||
Release: 1%{?dist}
|
||||
Summary: Declare author-only dependencies
|
||||
License: GPL+ or Artistic
|
||||
Group: Development/Libraries
|
||||
URL: http://search.cpan.org/dist/Module-Install-AuthorRequires/
|
||||
Source0: http://www.cpan.org/authors/id/F/FL/FLORA/Module-Install-AuthorRequires-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
BuildRequires: perl(inc::Module::Install)
|
||||
BuildRequires: perl(Module::Install)
|
||||
# Run-time:
|
||||
BuildRequires: perl(base)
|
||||
BuildRequires: perl(Module::Install::Base)
|
||||
# Tests:
|
||||
BuildRequires: perl(Test::More)
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||
|
||||
%description
|
||||
Modules often have optional requirements, for example dependencies that
|
||||
are useful for (optional) tests, but not required for the module to
|
||||
work properly.
|
||||
|
||||
Simply using this module "author_requires" command allows to specify such
|
||||
developer specific dependencies in a proper way.
|
||||
|
||||
%prep
|
||||
%setup -q -n Module-Install-AuthorRequires-%{version}
|
||||
# Remove bundled module
|
||||
rm -r inc
|
||||
sed -i -e '/^inc/ d' MANIFEST
|
||||
|
||||
%build
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
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
|
||||
|
||||
%files
|
||||
%doc Changes README
|
||||
%{perl_vendorlib}/*
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* Mon Apr 23 2012 Petr Pisar <ppisar@redhat.com> 0.02-1
|
||||
- Specfile autogenerated by cpanspec 1.78.
|
Loading…
Reference in New Issue
Block a user