|
|
@ -1,25 +1,34 @@
|
|
|
|
Name: perl-Module-Manifest
|
|
|
|
Name: perl-Module-Manifest
|
|
|
|
Version: 1.08
|
|
|
|
Version: 1.09
|
|
|
|
Release: 21%{?dist}
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Summary: Parse and examine a Perl distribution MANIFEST file
|
|
|
|
Summary: Parse and examine a Perl distribution MANIFEST file
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
|
|
|
URL: http://search.cpan.org/dist/Module-Manifest/
|
|
|
|
URL: http://search.cpan.org/dist/Module-Manifest/
|
|
|
|
Source0: http://www.cpan.org/authors/id/A/AD/ADAMK/Module-Manifest-%{version}.tar.gz
|
|
|
|
Source0: http://www.cpan.org/authors/id/E/ET/ETHER/Module-Manifest-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
BuildRequires: coreutils
|
|
|
|
|
|
|
|
BuildRequires: make
|
|
|
|
BuildRequires: perl-generators
|
|
|
|
BuildRequires: perl-generators
|
|
|
|
BuildRequires: perl(inc::Module::Install::DSL) >= 0.99
|
|
|
|
BuildRequires: perl-interpreter
|
|
|
|
|
|
|
|
BuildRequires: perl(:VERSION) >= 5.6
|
|
|
|
|
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
|
|
|
|
|
|
|
BuildRequires: perl(strict)
|
|
|
|
|
|
|
|
BuildRequires: perl(warnings)
|
|
|
|
# Run-time:
|
|
|
|
# Run-time:
|
|
|
|
BuildRequires: perl(Carp)
|
|
|
|
BuildRequires: perl(Carp)
|
|
|
|
|
|
|
|
BuildRequires: perl(File::Basename)
|
|
|
|
BuildRequires: perl(File::Spec) >= 0.80
|
|
|
|
BuildRequires: perl(File::Spec) >= 0.80
|
|
|
|
BuildRequires: perl(File::Spec::Unix)
|
|
|
|
BuildRequires: perl(File::Spec::Unix)
|
|
|
|
BuildRequires: perl(Params::Util) >= 0.10
|
|
|
|
BuildRequires: perl(Params::Util) >= 0.10
|
|
|
|
# Tests:
|
|
|
|
# Tests:
|
|
|
|
BuildRequires: perl(File::Spec::Functions)
|
|
|
|
BuildRequires: perl(File::Spec::Functions)
|
|
|
|
BuildRequires: perl(Test::Exception) >= 0.27
|
|
|
|
BuildRequires: perl(Test::Exception) >= 0.27
|
|
|
|
BuildRequires: perl(Test::More) >= 0.42
|
|
|
|
BuildRequires: perl(Test::More)
|
|
|
|
BuildRequires: perl(Test::Warn) >= 0.11
|
|
|
|
BuildRequires: perl(Test::Warn)
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
# Optional tests:
|
|
|
|
|
|
|
|
# CPAN::Meta 2.120900 not helpful
|
|
|
|
|
|
|
|
# CPAN::Meta::Prereqs not helpful
|
|
|
|
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|
|
|
Requires: perl(File::Spec) >= 0.80
|
|
|
|
Requires: perl(File::Spec) >= 0.80
|
|
|
|
Requires: perl(Params::Util) >= 0.10
|
|
|
|
Requires: perl(Params::Util) >= 0.10
|
|
|
|
|
|
|
|
|
|
|
@ -34,27 +43,28 @@ the MANIFEST.SKIP file and check that.
|
|
|
|
%prep
|
|
|
|
%prep
|
|
|
|
%setup -q -n Module-Manifest-%{version}
|
|
|
|
%setup -q -n Module-Manifest-%{version}
|
|
|
|
chmod -x examples/*
|
|
|
|
chmod -x examples/*
|
|
|
|
# Remove bundled modules
|
|
|
|
|
|
|
|
rm -rf inc/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%build
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%install
|
|
|
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
|
|
|
|
|
|
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
|
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
%check
|
|
|
|
make test
|
|
|
|
make test
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%files
|
|
|
|
%doc Changes LICENSE README examples
|
|
|
|
%license LICENSE
|
|
|
|
|
|
|
|
%doc Changes CONTRIBUTING README examples
|
|
|
|
%{perl_vendorlib}/*
|
|
|
|
%{perl_vendorlib}/*
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
|
|
|
|
* Fri Dec 22 2017 Petr Pisar <ppisar@redhat.com> - 1.09-1
|
|
|
|
|
|
|
|
- 1.09 bump
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.08-21
|
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.08-21
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|