2011-08-17 14:01:21 +00:00
|
|
|
# We don't really need ExtUtils::MakeMaker ≥ 6.31
|
2011-01-27 15:55:00 +00:00
|
|
|
%global old_eumm %(perl -MExtUtils::MakeMaker -e 'printf "%d\\n", $ExtUtils::MakeMaker::VERSION < 6.31 ? 1 : 0;' 2>/dev/null || echo 0)
|
|
|
|
|
|
|
|
Name: perl-CPAN-Meta-YAML
|
|
|
|
Version: 0.003
|
2011-08-16 09:33:10 +00:00
|
|
|
Release: 7%{?dist}
|
2011-01-27 15:55:00 +00:00
|
|
|
Summary: Read and write a subset of YAML for CPAN Meta files
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
Group: Development/Libraries
|
|
|
|
URL: http://search.cpan.org/dist/CPAN-Meta-YAML/
|
|
|
|
Source0: http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/CPAN-Meta-YAML-%{version}.tar.gz
|
|
|
|
Patch0: CPAN-Meta-YAML-0.003-old-EU::MM.patch
|
2011-08-17 14:01:21 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
2011-01-27 15:55:00 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
|
|
BuildRequires: perl(File::Spec)
|
|
|
|
BuildRequires: perl(Test::CPAN::Meta)
|
|
|
|
BuildRequires: perl(Test::More)
|
|
|
|
BuildRequires: perl(Test::Pod)
|
|
|
|
BuildRequires: perl(YAML)
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|
|
|
|
|
|
|
%description
|
|
|
|
This module implements a subset of the YAML specification for use in reading
|
|
|
|
and writing CPAN metadata files like META.yml and MYMETA.yml. It should not be
|
|
|
|
used for any other general YAML parsing or generation task.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n CPAN-Meta-YAML-%{version}
|
|
|
|
|
2011-08-17 14:01:21 +00:00
|
|
|
# We don't really need ExtUtils::MakeMaker ≥ 6.31
|
2011-01-27 15:55:00 +00:00
|
|
|
%if %{old_eumm}
|
|
|
|
%patch0 -p1
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%build
|
2011-08-16 09:33:10 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
2011-01-27 15:55:00 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
make pure_install DESTDIR=%{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 TEST_FILES="t/*.t xt/*/*.t"
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc Changes LICENSE README
|
2011-08-16 09:33:10 +00:00
|
|
|
%{perl_vendorlib}/CPAN/
|
2011-01-27 15:55:00 +00:00
|
|
|
%{_mandir}/man3/CPAN::Meta::YAML.3pm*
|
|
|
|
|
|
|
|
%changelog
|
2011-08-16 09:33:10 +00:00
|
|
|
* Tue Aug 16 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.003-7
|
2011-08-17 14:01:21 +00:00
|
|
|
- Install to vendor perl directories to avoid potential debuginfo conflicts
|
|
|
|
with the main perl package if this module ever becomes arch-specific
|
2011-08-16 09:33:10 +00:00
|
|
|
|
2011-06-29 10:38:24 +00:00
|
|
|
* Wed Jun 29 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.003-6
|
2011-06-29 09:54:29 +00:00
|
|
|
- Perl mass rebuild
|
|
|
|
|
2011-02-08 17:55:59 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.003-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-27 15:55:00 +00:00
|
|
|
* Thu Jan 27 2011 Paul Howarth <paul@city-fan.org> - 0.003-3
|
|
|
|
- Trim %%description (#672807)
|
|
|
|
|
|
|
|
* Wed Jan 26 2011 Paul Howarth <paul@city-fan.org> - 0.003-2
|
|
|
|
- Sanitize for Fedora submission
|
|
|
|
|
|
|
|
* Tue Jan 25 2011 Paul Howarth <paul@city-fan.org> - 0.003-1
|
|
|
|
- Initial RPM version
|