2011-01-27 15:55:00 +00:00
|
|
|
Name: perl-CPAN-Meta-YAML
|
2015-12-14 14:32:45 +00:00
|
|
|
Version: 0.018
|
2016-05-18 16:51:52 +00:00
|
|
|
Release: 366%{?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
|
|
|
|
BuildArch: noarch
|
2014-02-14 14:51:49 +00:00
|
|
|
# Build:
|
2015-12-14 14:32:45 +00:00
|
|
|
BuildRequires: coreutils
|
|
|
|
BuildRequires: findutils
|
|
|
|
BuildRequires: make
|
2015-03-17 11:14:43 +00:00
|
|
|
BuildRequires: perl
|
2016-06-24 08:50:08 +00:00
|
|
|
BuildRequires: perl-generators
|
2014-02-14 14:51:49 +00:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.17
|
|
|
|
# Module Runtime:
|
|
|
|
BuildRequires: perl(B)
|
2012-11-13 13:14:24 +00:00
|
|
|
BuildRequires: perl(Carp)
|
|
|
|
BuildRequires: perl(Exporter)
|
2014-02-14 14:51:49 +00:00
|
|
|
BuildRequires: perl(Fcntl)
|
|
|
|
BuildRequires: perl(Scalar::Util)
|
|
|
|
BuildRequires: perl(strict)
|
|
|
|
BuildRequires: perl(warnings)
|
2012-06-01 12:18:32 +00:00
|
|
|
# Tests:
|
2015-12-14 14:32:45 +00:00
|
|
|
BuildRequires: perl(base)
|
2014-02-14 14:51:49 +00:00
|
|
|
# CPAN::Meta requires CPAN::Meta::YAML
|
|
|
|
%if 0%{!?perl_bootstrap:1}
|
2015-03-17 11:14:43 +00:00
|
|
|
BuildRequires: perl(CPAN::Meta) >= 2.120900
|
|
|
|
BuildRequires: perl(CPAN::Meta::Prereqs)
|
2014-02-14 14:51:49 +00:00
|
|
|
%endif
|
|
|
|
BuildRequires: perl(File::Basename)
|
|
|
|
BuildRequires: perl(File::Find)
|
|
|
|
BuildRequires: perl(File::Spec)
|
2012-11-13 13:14:24 +00:00
|
|
|
BuildRequires: perl(File::Spec::Functions)
|
2015-03-17 11:14:43 +00:00
|
|
|
BuildRequires: perl(File::Temp) >= 0.19
|
2014-02-14 14:51:49 +00:00
|
|
|
BuildRequires: perl(IO::Dir)
|
|
|
|
BuildRequires: perl(JSON::PP)
|
|
|
|
BuildRequires: perl(lib)
|
2015-12-14 14:32:45 +00:00
|
|
|
BuildRequires: perl(Test::More) >= 0.96
|
2014-02-14 14:51:49 +00:00
|
|
|
BuildRequires: perl(utf8)
|
|
|
|
BuildRequires: perl(vars)
|
|
|
|
# Extra Tests:
|
2012-06-07 10:24:21 +00:00
|
|
|
# Don't run extra tests when bootstrapping as many of those
|
|
|
|
# tests' dependencies build-require this package
|
2014-02-14 14:51:49 +00:00
|
|
|
%if 0%{!?perl_bootstrap:1}
|
2015-12-14 14:32:45 +00:00
|
|
|
BuildRequires: perl(blib)
|
2011-01-27 15:55:00 +00:00
|
|
|
BuildRequires: perl(Test::CPAN::Meta)
|
|
|
|
BuildRequires: perl(Test::Pod)
|
2011-09-07 13:26:44 +00:00
|
|
|
BuildRequires: perl(Test::Version)
|
|
|
|
%endif
|
2011-01-27 15:55:00 +00:00
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
2012-11-13 13:14:24 +00:00
|
|
|
Requires: perl(Carp)
|
2015-01-09 15:46:19 +00:00
|
|
|
Requires: perl(Fcntl)
|
2011-01-27 15:55:00 +00:00
|
|
|
|
|
|
|
%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}
|
|
|
|
|
|
|
|
%build
|
2013-09-23 21:02:17 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor UNINST=0
|
2011-01-27 15:55:00 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
make pure_install DESTDIR=%{buildroot}
|
|
|
|
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
|
|
|
|
%{_fixperms} %{buildroot}
|
|
|
|
|
|
|
|
%check
|
2012-06-07 10:24:21 +00:00
|
|
|
make test
|
2014-02-14 14:51:49 +00:00
|
|
|
%if 0%{!?perl_bootstrap:1}
|
2012-06-07 10:24:21 +00:00
|
|
|
make test TEST_FILES="xt/*/*.t"
|
2012-06-01 12:18:32 +00:00
|
|
|
%endif
|
2011-01-27 15:55:00 +00:00
|
|
|
|
|
|
|
%files
|
2015-03-17 11:14:43 +00:00
|
|
|
%license LICENSE
|
|
|
|
%doc Changes README
|
2011-08-16 09:33:10 +00:00
|
|
|
%{perl_vendorlib}/CPAN/
|
2015-03-17 11:14:43 +00:00
|
|
|
%{_mandir}/man3/CPAN::Meta::YAML.3*
|
2011-01-27 15:55:00 +00:00
|
|
|
|
|
|
|
%changelog
|
2016-05-18 16:51:52 +00:00
|
|
|
* Wed May 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.018-366
|
|
|
|
- Perl 5.24 re-rebuild of bootstrapped packages
|
|
|
|
|
2016-05-14 10:18:27 +00:00
|
|
|
* Sat May 14 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.018-365
|
|
|
|
- Increase release to favour standalone package
|
|
|
|
|
2016-02-04 12:30:45 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.018-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-12-14 14:32:45 +00:00
|
|
|
* Mon Dec 14 2015 Paul Howarth <paul@city-fan.org> - 0.018-1
|
|
|
|
- Update to 0.018
|
|
|
|
- Generated from ETHER/YAML-Tiny-1.69.tar.gz
|
|
|
|
|
2015-06-18 01:34:15 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.016-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-10 13:09:30 +00:00
|
|
|
* Wed Jun 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.016-3
|
|
|
|
- Perl 5.22 re-rebuild of bootstrapped packages
|
|
|
|
|
2015-06-03 16:56:39 +00:00
|
|
|
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.016-2
|
|
|
|
- Perl 5.22 rebuild
|
|
|
|
|
2015-05-19 18:39:48 +00:00
|
|
|
* Tue May 19 2015 Paul Howarth <paul@city-fan.org> - 0.016-1
|
|
|
|
- Update to 0.016
|
|
|
|
- Generated from ETHER/YAML-Tiny-1.67.tar.gz
|
|
|
|
|
2015-03-17 11:14:43 +00:00
|
|
|
* Tue Mar 17 2015 Paul Howarth <paul@city-fan.org> - 0.014-1
|
|
|
|
- Update to 0.014
|
|
|
|
- Generated from ETHER/YAML-Tiny-1.66.tar.gz
|
|
|
|
- Use %%license
|
|
|
|
|
2015-01-09 15:46:19 +00:00
|
|
|
* Fri Jan 09 2015 Petr Pisar <ppisar@redhat.com> - 0.012-313
|
|
|
|
- Require undetected dependencies explicitly
|
|
|
|
|
2014-12-12 08:35:13 +00:00
|
|
|
* Fri Dec 12 2014 Petr Pisar <ppisar@redhat.com> - 0.012-312
|
|
|
|
- Remove unused build-time dependency on YAML
|
|
|
|
|
2014-09-08 20:10:39 +00:00
|
|
|
* Sun Sep 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.012-311
|
|
|
|
- Perl 5.20 re-rebuild of bootstrapped packages
|
|
|
|
|
2014-09-03 13:11:01 +00:00
|
|
|
* Wed Sep 03 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.012-310
|
|
|
|
- Increase release to favour standalone package
|
|
|
|
|
2014-08-27 18:03:15 +00:00
|
|
|
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.012-3
|
|
|
|
- Perl 5.20 rebuild
|
|
|
|
|
2014-06-07 01:11:56 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.012-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-02-25 11:20:05 +00:00
|
|
|
* Tue Feb 25 2014 Paul Howarth <paul@city-fan.org> - 0.012-1
|
|
|
|
- Update to 0.012:
|
|
|
|
- Generated from ETHER/YAML-Tiny-1.61.tar.gz
|
|
|
|
|
2014-02-14 14:51:49 +00:00
|
|
|
* Fri Feb 14 2014 Paul Howarth <paul@city-fan.org> - 0.011-1
|
|
|
|
- Update to 0.011:
|
|
|
|
- Generated from ETHER/YAML-Tiny-1.60.tar.gz
|
|
|
|
- Give up trying to support EPEL (test suite now requires Test::More 0.99)
|
|
|
|
|
2013-09-23 21:02:17 +00:00
|
|
|
* Mon Sep 23 2013 Paul Howarth <paul@city-fan.org> - 0.010-1
|
|
|
|
- Update to 0.010:
|
|
|
|
- Generated from ETHER/YAML-Tiny-1.55.tar.gz
|
|
|
|
- Makefile.PL will use UNINST=1 on old perls that might have an old version
|
|
|
|
incorrectly installed into the core library path
|
|
|
|
- Updated Makefile.PL logic to support PERL_NO_HIGHLANDER
|
|
|
|
- Drop redundant BRs: perl(Pod::Wordlist::hanekomu), perl(Test::Requires),
|
|
|
|
perl(Test::Spelling) and aspell-en
|
|
|
|
- Add new test dependencies perl(IO::Handle) and perl(IPC::Open3)
|
|
|
|
- Build with UNINST=0 to avoid build failures as we can't remove the system
|
|
|
|
version of the package when building an rpm for a new version
|
|
|
|
- Update patch for building with old Test::More, and add new patch to support
|
|
|
|
building with Test::More < 0.94
|
|
|
|
- Don't run the extra tests in EPEL as we don't have Test::Version there
|
|
|
|
|
2013-08-14 16:58:01 +00:00
|
|
|
* Wed Aug 14 2013 Jitka Plesnikova <jplesnik@redhat.com> - 0.008-292
|
|
|
|
- Perl 5.18 re-rebuild of bootstrapped packages
|
|
|
|
|
2013-08-03 17:56:47 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.008-291
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-15 11:08:00 +00:00
|
|
|
* Mon Jul 15 2013 Petr Pisar <ppisar@redhat.com> - 0.008-290
|
|
|
|
- Increase release to favour standalone package
|
|
|
|
|
2013-07-12 14:10:23 +00:00
|
|
|
* Fri Jul 12 2013 Petr Pisar <ppisar@redhat.com> - 0.008-15
|
|
|
|
- Perl 5.18 rebuild
|
|
|
|
|
2013-02-14 10:35:43 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.008-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-13 13:14:24 +00:00
|
|
|
* Tue Nov 13 2012 Jitka Plesnikova <jplesnik@redhat.com> - 0.008-13
|
|
|
|
- Update dependencies
|
|
|
|
|
2012-10-11 20:36:35 +00:00
|
|
|
* Thu Oct 11 2012 Paul Howarth <paul@city-fan.org> - 0.008-12
|
|
|
|
- Never BR: perl(Test::Version) for EL builds as perl(version) is too old
|
|
|
|
prior to EL-7 and this package is included in RHEL ≥ 7 but Test::Version
|
|
|
|
is only in EPEL
|
|
|
|
|
2012-10-11 14:55:58 +00:00
|
|
|
* Thu Oct 11 2012 Petr Pisar <ppisar@redhat.com> - 0.008-11
|
|
|
|
- Restrict Test::Version optional test on RHEL to version 6 only
|
|
|
|
|
2012-07-20 11:29:20 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.008-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-10 13:46:48 +00:00
|
|
|
* Tue Jul 10 2012 Petr Pisar <ppisar@redhat.com> - 0.008-9
|
|
|
|
- Perl 5.16 re-rebuild of bootstrapped packages
|
|
|
|
|
2012-06-28 12:59:35 +00:00
|
|
|
* Thu Jun 28 2012 Petr Pisar <ppisar@redhat.com> - 0.008-8
|
|
|
|
- Perl 5.16 rebuild
|
|
|
|
|
2012-06-07 10:24:21 +00:00
|
|
|
* Thu Jun 7 2012 Paul Howarth <paul@city-fan.org> - 0.008-7
|
|
|
|
- Run the extra tests in a separate test run, and only when not bootstrapping
|
|
|
|
- Don't BR: perl(Test::Spelling) with RHEL ≥ 7 as we don't have the other
|
|
|
|
dependencies needed do the spell check test
|
|
|
|
|
2012-06-07 09:07:01 +00:00
|
|
|
* Thu Jun 7 2012 Marcela Mašláňová <mmaslano@redhat.com> - 0.008-6
|
2012-06-07 10:24:21 +00:00
|
|
|
- Conditionalize dependency on aspell
|
2012-06-07 09:07:01 +00:00
|
|
|
|
2012-06-06 21:44:12 +00:00
|
|
|
* Wed Jun 06 2012 Petr Pisar <ppisar@redhat.com> - 0.008-5
|
|
|
|
- Perl 5.16 rebuild
|
|
|
|
|
2012-06-01 12:18:32 +00:00
|
|
|
* Fri Jun 01 2012 Petr Pisar <ppisar@redhat.com> - 0.008-4
|
|
|
|
- Disable author tests on bootstrap
|
|
|
|
|
2012-04-23 12:32:18 +00:00
|
|
|
* Mon Apr 23 2012 Marcela Mašláňová <mmaslano@redhat.com> - 0.008-3
|
|
|
|
- Data::Dumper is not really needed, dependencies must be fixed in YAML
|
|
|
|
|
2012-04-23 11:43:29 +00:00
|
|
|
* Mon Apr 23 2012 Marcela Mašláňová <mmaslano@redhat.com> - 0.008-2
|
2012-04-23 12:40:03 +00:00
|
|
|
- Don't BR: Pod::Wordlist::hanekomu for RHEL-7+ builds; RHEL package cannot
|
|
|
|
have buildreq from EPEL
|
|
|
|
- Add missing Data::Dumper dependency
|
2012-04-23 11:43:29 +00:00
|
|
|
|
2012-03-15 11:33:51 +00:00
|
|
|
* Thu Mar 15 2012 Paul Howarth <paul@city-fan.org> - 0.008-1
|
|
|
|
- Update to 0.008:
|
|
|
|
- Generated from ADAMK/YAML-Tiny-1.51.tar.gz
|
|
|
|
- Updated from YAML-Tiny to fix compatibility with older Scalar::Util
|
|
|
|
- Drop upstreamed patch for old Scalar::Util versions
|
|
|
|
- Don't need to remove empty directories from the buildroot
|
|
|
|
|
2012-03-15 11:15:23 +00:00
|
|
|
* Wed Feb 8 2012 Paul Howarth <paul@city-fan.org> - 0.007-1
|
|
|
|
- Update to 0.007:
|
|
|
|
- Documentation fix to replace missing abstract
|
|
|
|
|
2012-03-15 10:55:27 +00:00
|
|
|
* Tue Feb 7 2012 Paul Howarth <paul@city-fan.org> - 0.006-1
|
|
|
|
- Update to 0.006:
|
|
|
|
- Set back configure_requires prerequisite for ExtUtils::MakeMaker
|
|
|
|
from 6.30 to 6.17
|
|
|
|
- BR: perl(Test::Requires)
|
|
|
|
- BR: perl(Test::Spelling), perl(Pod::Wordlist::hanekomu) and aspell-en to
|
|
|
|
enable the spell checker test
|
|
|
|
- Drop patch for building with old ExtUtils::MakeMaker versions, no longer
|
|
|
|
needed
|
|
|
|
- Drop support for soon-to-be-EOL RHEL-4:
|
|
|
|
- Drop %%defattr, redundant since rpm 4.4
|
|
|
|
- Update patch for building with Test::More < 0.88
|
|
|
|
|
2012-01-10 20:01:54 +00:00
|
|
|
* Tue Jan 10 2012 Paul Howarth <paul@city-fan.org> - 0.005-2
|
|
|
|
- Fedora 17 mass rebuild
|
|
|
|
|
2011-12-13 19:49:48 +00:00
|
|
|
* Tue Dec 13 2011 Paul Howarth <paul@city-fan.org> - 0.005-1
|
|
|
|
- Update to 0.005:
|
|
|
|
- Fix documentation to clarify that users are responsible for UTF-8
|
|
|
|
encoding/decoding
|
|
|
|
|
2011-09-07 13:26:44 +00:00
|
|
|
* Wed Sep 7 2011 Paul Howarth <paul@city-fan.org> - 0.004-1
|
|
|
|
- Update to 0.004:
|
|
|
|
- Generated from ADAMK/YAML-Tiny-1.50.tar.gz
|
|
|
|
- BR: perl(Test::Version) for additional test coverage
|
|
|
|
- Update patch for building with ExtUtils::MakeMaker < 6.30
|
|
|
|
- Add patch to support building with Test::More < 0.88
|
|
|
|
- Add patch to fix operation with Scalar::Util < 1.18
|
|
|
|
|
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
|