2d85b9
# Run test
2d85b9
%if ! (0%{?rhel})
2d85b9
%bcond_without perl_YAML_enables_test
2d85b9
%else
2d85b9
%bcond_with perl_YAML_enables_test
2d85b9
%endif
2d85b9
# Run extra test
2d85b9
%if ! (0%{?rhel})
2d85b9
%bcond_without perl_YAML_enables_extra_test
2d85b9
%else
2d85b9
%bcond_with perl_YAML_enables_extra_test
2d85b9
%endif
2d85b9
2d85b9
Name:           perl-YAML
2d85b9
Version:        1.30
2d85b9
Release:        8%{?dist}
2d85b9
Summary:        YAML Ain't Markup Language (tm)
2d85b9
License:        GPL+ or Artistic
2d85b9
URL:            https://metacpan.org/release/YAML
2d85b9
# Tarball created from https://cpan.metacpan.org/modules/by-module/YAML/YAML-%%{version}.tar.gz
2d85b9
# using script YAML-free (see https://bugzilla.redhat.com/show_bug.cgi?id=1813197)
2d85b9
Source0:        YAML-free-%{version}.tar.gz
2d85b9
# Script to remove non-free content from upstream tarball
2d85b9
# Usage: YAML-free YAML-%%{version}.tar.gz
2d85b9
Source1:        YAML-free
2d85b9
BuildArch:      noarch
2d85b9
# Module Build
2d85b9
BuildRequires:  coreutils
2d85b9
BuildRequires:  make
2d85b9
BuildRequires:  perl-generators
2d85b9
BuildRequires:  perl-interpreter
2d85b9
BuildRequires:  perl(ExtUtils::MakeMaker) > 6.75
2d85b9
# Module Runtime
2d85b9
BuildRequires:  perl(B)
2d85b9
BuildRequires:  perl(B::Deparse)
2d85b9
BuildRequires:  perl(Carp)
2d85b9
BuildRequires:  perl(constant)
2d85b9
BuildRequires:  perl(Exporter)
2d85b9
BuildRequires:  perl(overload)
2d85b9
BuildRequires:  perl(Scalar::Util)
2d85b9
BuildRequires:  perl(strict)
2d85b9
BuildRequires:  perl(warnings)
2d85b9
# Test Suite
2d85b9
# Avoid circular build deps Test::YAML → Test::Base → YAML when bootstrapping
2d85b9
%if %{with perl_YAML_enables_test} && !%{defined perl_bootstrap}
2d85b9
BuildRequires:  perl(Config)
2d85b9
BuildRequires:  perl(Data::Dumper)
2d85b9
BuildRequires:  perl(Encode)
2d85b9
BuildRequires:  perl(File::Find)
2d85b9
BuildRequires:  perl(IO::File)
2d85b9
BuildRequires:  perl(IO::Pipe)
2d85b9
BuildRequires:  perl(lib)
2d85b9
BuildRequires:  perl(Test::Deep)
2d85b9
BuildRequires:  perl(Test::More) >= 0.88
2d85b9
BuildRequires:  perl(Test::YAML) >= 1.05
2d85b9
BuildRequires:  perl(utf8)
2d85b9
%if %{with perl_YAML_enables_extra_test}
2d85b9
# Author Tests
2d85b9
BuildRequires:  perl(Test::Pod) >= 1.41
2d85b9
%endif
2d85b9
%endif
2d85b9
# Runtime
2d85b9
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
2d85b9
Requires:       perl(B::Deparse)
2d85b9
Requires:       perl(Carp)
2d85b9
2d85b9
# Filter private provides:
2d85b9
# perl(yaml_mapping) perl(yaml_scalar) perl(yaml_sequence)
2d85b9
%global __provides_exclude ^perl\\(yaml_
2d85b9
2d85b9
%description
2d85b9
The YAML.pm module implements a YAML Loader and Dumper based on the YAML 1.0
2d85b9
specification (http://www.yaml.org/spec/). YAML is a generic data serialization
2d85b9
language that is optimized for human readability. It can be used to express the
2d85b9
data structures of most modern programming languages, including Perl.  For
2d85b9
information on the YAML syntax, please refer to the YAML specification.
2d85b9
2d85b9
%prep
2d85b9
%setup -q -n YAML-%{version}
2d85b9
2d85b9
%build
2d85b9
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
2d85b9
%{make_build}
2d85b9
2d85b9
%install
2d85b9
%{make_install}
2d85b9
%{_fixperms} -c %{buildroot}
2d85b9
2d85b9
%check
2d85b9
# Avoid circular build deps Test::YAML → Test::Base → YAML when bootstrapping
2d85b9
%if %{with perl_YAML_enables_test} && !%{defined perl_bootstrap}
2d85b9
make test AUTHOR_TESTING=%{with perl_YAML_enables_extra_test}
2d85b9
%endif
2d85b9
2d85b9
%files
2d85b9
%license LICENSE
2d85b9
%doc Changes CONTRIBUTING README
2d85b9
%dir %{perl_vendorlib}/YAML/
2d85b9
%dir %{perl_vendorlib}/YAML/Dumper/
2d85b9
%dir %{perl_vendorlib}/YAML/Loader/
2d85b9
%doc %{perl_vendorlib}/YAML.pod
2d85b9
%doc %{perl_vendorlib}/YAML/Any.pod
2d85b9
%doc %{perl_vendorlib}/YAML/Dumper.pod
2d85b9
%doc %{perl_vendorlib}/YAML/Dumper/Base.pod
2d85b9
%doc %{perl_vendorlib}/YAML/Error.pod
2d85b9
%doc %{perl_vendorlib}/YAML/Loader.pod
2d85b9
%doc %{perl_vendorlib}/YAML/Loader/Base.pod
2d85b9
%doc %{perl_vendorlib}/YAML/Marshall.pod
2d85b9
%doc %{perl_vendorlib}/YAML/Node.pod
2d85b9
%doc %{perl_vendorlib}/YAML/Tag.pod
2d85b9
%doc %{perl_vendorlib}/YAML/Types.pod
2d85b9
%{perl_vendorlib}/YAML.pm
2d85b9
%{perl_vendorlib}/YAML/Any.pm
2d85b9
%{perl_vendorlib}/YAML/Dumper.pm
2d85b9
%{perl_vendorlib}/YAML/Dumper/Base.pm
2d85b9
%{perl_vendorlib}/YAML/Error.pm
2d85b9
%{perl_vendorlib}/YAML/Loader.pm
2d85b9
%{perl_vendorlib}/YAML/Loader/Base.pm
2d85b9
%{perl_vendorlib}/YAML/Marshall.pm
2d85b9
%{perl_vendorlib}/YAML/Mo.pm
2d85b9
%{perl_vendorlib}/YAML/Node.pm
2d85b9
%{perl_vendorlib}/YAML/Tag.pm
2d85b9
%{perl_vendorlib}/YAML/Types.pm
2d85b9
%{_mandir}/man3/YAML.3*
2d85b9
%{_mandir}/man3/YAML::Any.3*
2d85b9
%{_mandir}/man3/YAML::Dumper.3*
2d85b9
%{_mandir}/man3/YAML::Dumper::Base.3*
2d85b9
%{_mandir}/man3/YAML::Error.3*
2d85b9
%{_mandir}/man3/YAML::Loader.3*
2d85b9
%{_mandir}/man3/YAML::Loader::Base.3*
2d85b9
%{_mandir}/man3/YAML::Marshall.3*
2d85b9
%{_mandir}/man3/YAML::Node.3*
2d85b9
%{_mandir}/man3/YAML::Tag.3*
2d85b9
%{_mandir}/man3/YAML::Types.3*
2d85b9
2d85b9
%changelog
2d85b9
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.30-8
2d85b9
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
2d85b9
  Related: rhbz#1991688
2d85b9
2d85b9
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.30-7
2d85b9
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
2d85b9
2d85b9
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.30-6
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
2d85b9
2d85b9
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.30-5
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2d85b9
2d85b9
* Fri Jun 26 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.30-4
2d85b9
- Perl 5.32 re-rebuild of bootstrapped packages
2d85b9
2d85b9
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.30-3
2d85b9
- Perl 5.32 rebuild
2d85b9
2d85b9
* Fri Mar 13 2020 Paul Howarth <paul@city-fan.org> - 1.30-2
2d85b9
- Remove non-free test file t/load-slides.t (#1813197, GH#219)
2d85b9
2d85b9
* Tue Jan 28 2020 Paul Howarth <paul@city-fan.org> - 1.30-1
2d85b9
- Update to 1.30
2d85b9
  - Breaking Change: Set $YAML::LoadBlessed default to false to make it more
2d85b9
    secure
2d85b9
2d85b9
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.29-4
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2d85b9
2d85b9
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.29-3
2d85b9
- Perl 5.30 re-rebuild of bootstrapped packages
2d85b9
2d85b9
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.29-2
2d85b9
- Perl 5.30 rebuild
2d85b9
2d85b9
* Sat May 11 2019 Paul Howarth <paul@city-fan.org> - 1.29-1
2d85b9
- Update to 1.29
2d85b9
  - Fix regex for alias to match the one for anchors (GH#214)
2d85b9
2d85b9
* Sun Apr 28 2019 Paul Howarth <paul@city-fan.org> - 1.28-1
2d85b9
- Update to 1.28
2d85b9
  - Security fix: only enable loading globs when $LoadCode is set (GH#213)
2d85b9
- Modernize spec using %%{make_build} and %%{make_install}
2d85b9
2d85b9
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.27-2
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2d85b9
2d85b9
* Sat Nov  3 2018 Paul Howarth <paul@city-fan.org> - 1.27-1
2d85b9
- Update to 1.27
2d85b9
  - Remove a warning about uninitialized value for perl ≤ 5.10
2d85b9
2d85b9
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.26-4
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2d85b9
2d85b9
* Sat Jun 30 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.26-3
2d85b9
- Perl 5.28 re-rebuild of bootstrapped packages
2d85b9
2d85b9
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.26-2
2d85b9
- Perl 5.28 rebuild
2d85b9
2d85b9
* Sun May 20 2018 Paul Howarth <paul@city-fan.org> - 1.26-1
2d85b9
- Update to 1.26
2d85b9
  - Fix bug introduced in 1.25 - loading of quoted string with colon as
2d85b9
    sequence element (GH#208)
2d85b9
  - Support zero indented block sequences (GH#207)
2d85b9
2d85b9
* Sat May 12 2018 Paul Howarth <paul@city-fan.org> - 1.25-1
2d85b9
- Update to 1.25
2d85b9
  - Support trailing comments (GH#189, GH#190, GH#191)
2d85b9
  - Remove unused code (GH#192)
2d85b9
  - Use Test::Deep to actually test correctly for class names (GH#193)
2d85b9
  - Fix loading of mapping key that starts with '= ' (GH#194)
2d85b9
  - Fix loading strings with multiple spaces (GH#172)
2d85b9
  - Allow more characters in anchor name (GH#196)
2d85b9
  - Add $YAML::LoadBlessed for disabling loading objects (GH#197)
2d85b9
  - Disable test with long string under certain conditions (GH#201)
2d85b9
  - Quote scalar if it equals '=' (GH#202)
2d85b9
  - Multiple regexp roundtrip does not grow (GH#203)
2d85b9
  - Add support for compact nested block sequences (GH#204)
2d85b9
  - Support reverse order of block scalar indicators (GH#205)
2d85b9
  - Support nested mappings in sequences (GH#206)
2d85b9
  - Fix parsing of quoted strings (GH#188)
2d85b9
2d85b9
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.24-2
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2d85b9
2d85b9
* Tue Oct 31 2017 Paul Howarth <paul@city-fan.org> - 1.24-1
2d85b9
- Update to 1.24
2d85b9
  - Fix $LoadCode (GH#180, GH#181, GH#182)
2d85b9
- This release by TINITA → update source URL
2d85b9
- Drop redundant Group: tag
2d85b9
2d85b9
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.23-4
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2d85b9
2d85b9
* Wed Jun 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.23-3
2d85b9
- Perl 5.26 re-rebuild of bootstrapped packages
2d85b9
2d85b9
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.23-2
2d85b9
- Perl 5.26 rebuild
2d85b9
2d85b9
* Mon Feb 20 2017 Paul Howarth <paul@city-fan.org> - 1.23-1
2d85b9
- Update to 1.23
2d85b9
  - Fix $YAML::Numify (empty values were converted to 0)
2d85b9
2d85b9
* Wed Feb 15 2017 Paul Howarth <paul@city-fan.org> - 1.22-1
2d85b9
- Update to 1.22
2d85b9
  - Add $YAML::Numify
2d85b9
2d85b9
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.21-2
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2d85b9
2d85b9
* Sat Dec 24 2016 Paul Howarth <paul@city-fan.org> - 1.21-1
2d85b9
- Update to 1.21
2d85b9
  - Declare variables with our() to avoid warnings (GH#109, GH#171)
2d85b9
  - Empty mapping value at the end resolves to null (was becoming empty string)
2d85b9
    (GH#131, GH#170)
2d85b9
  - Output key in warning when duplicate key was found (GH#119, GH#169)
2d85b9
  - Allow reading and writing to IO::Handle (GH#157, GH#168)
2d85b9
2d85b9
* Sat Dec  3 2016 Paul Howarth <paul@city-fan.org> - 1.20-1
2d85b9
- Update to 1.20
2d85b9
 - Allow quoted map keys in arrays (GH#146)
2d85b9
 - B::Deparse is loaded at runtime now
2d85b9
 - New feature $YAML::Preserve (GH#9)
2d85b9
- This release by INGY → update source URL
2d85b9
2d85b9
* Sat Nov 19 2016 Paul Howarth <paul@city-fan.org> - 1.19-1
2d85b9
- Update to 1.19
2d85b9
  - Add pod link to YAML::Shell (GH#164)
2d85b9
  - Fix infinite loop for aliases without a name (GH#151)
2d85b9
  - Improve error messages (GH#142, GH#162)
2d85b9
  - Trailing spaces after inline seq/map work now (GH#163)
2d85b9
  - Add test case for trailing comments (GH#154)
2d85b9
2d85b9
* Sat Jul  9 2016 Paul Howarth <paul@city-fan.org> - 1.18-1
2d85b9
- Update to 1.18
2d85b9
  - List Test::More as a prereq (GH#161)
2d85b9
2d85b9
* Wed Jul  6 2016 Paul Howarth <paul@city-fan.org> - 1.17-1
2d85b9
- Update to 1.17
2d85b9
  - Use Mo 0.40
2d85b9
- This release by TINITA → update source URL
2d85b9
2d85b9
* Sun Jul  3 2016 Paul Howarth <paul@city-fan.org> - 1.16-1
2d85b9
- Update to 1.16
2d85b9
  - Drop inconsistent $VERSION from YAML::Mo (GH#158)
2d85b9
- BR: perl-generators
2d85b9
2d85b9
* Wed May 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.15-7
2d85b9
- Perl 5.24 re-rebuild of bootstrapped packages
2d85b9
2d85b9
* Sat May 14 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.15-6
2d85b9
- Perl 5.24 rebuild
2d85b9
2d85b9
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-5
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2d85b9
2d85b9
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-4
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2d85b9
2d85b9
* Wed Jun 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.15-3
2d85b9
- Perl 5.22 re-rebuild of bootstrapped packages
2d85b9
2d85b9
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.15-2
2d85b9
- Perl 5.22 rebuild
2d85b9
2d85b9
* Mon Apr 20 2015 Paul Howarth <paul@city-fan.org> - 1.15-1
2d85b9
- Update to 1.15
2d85b9
  - Don't require newlines at end of YAML (GH#149)
2d85b9
2d85b9
* Mon Jan 26 2015 Paul Howarth <paul@city-fan.org> - 1.14-1
2d85b9
- Update to 1.14
2d85b9
  - Add support for QuoteNumericStrings global setting (PR/145)
2d85b9
2d85b9
* Sun Oct 12 2014 Paul Howarth <paul@city-fan.org> - 1.13-1
2d85b9
- Update to 1.13
2d85b9
  - Disable some warnings in YAML::Any (PR/140)
2d85b9
2d85b9
* Wed Sep 24 2014 Paul Howarth <paul@city-fan.org> - 1.12-1
2d85b9
- Update to 1.12
2d85b9
  - Fix parsing of unquoted strings (CPAN RT#97870)
2d85b9
- Classify buildreqs by usage
2d85b9
2d85b9
* Sun Sep 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.11-3
2d85b9
- Perl 5.20 re-rebuild of bootstrapped packages
2d85b9
2d85b9
* Wed Sep 03 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.11-2
2d85b9
- Perl 5.20 rebuild
2d85b9
2d85b9
* Tue Sep  2 2014 Paul Howarth <paul@city-fan.org> - 1.11-1
2d85b9
- Update to 1.11
2d85b9
  - Apply PR/139:
2d85b9
    -  Remove die() that can't be called (regex always matches)
2d85b9
2d85b9
* Fri Aug 29 2014 Paul Howarth <paul@city-fan.org> - 1.10-1
2d85b9
- Update to 1.10
2d85b9
  - Apply PR/138:
2d85b9
    - Report an error message mentioning indentation when choking on non-space
2d85b9
      indentation
2d85b9
    - die() should be called as a method of $self
2d85b9
2d85b9
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.09-2
2d85b9
- Perl 5.20 rebuild
2d85b9
2d85b9
* Tue Aug 26 2014 Paul Howarth <paul@city-fan.org> - 1.09-1
2d85b9
- Update to 1.09
2d85b9
  - Add t/000-compile-modules.t
2d85b9
  - Eliminate File::Basename from test/
2d85b9
  - Eliminate spurious trailing whitespace
2d85b9
  - Meta 0.0.2
2d85b9
  - Change testdir to t
2d85b9
  - Add doc examples for YAML::Any (PR/8)
2d85b9
  - Dep on Test::YAML 1.05
2d85b9
  - Replace tabs with spaces
2d85b9
2d85b9
* Tue Aug 12 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.01-2
2d85b9
- Disable tests when bootstrapping
2d85b9
2d85b9
* Fri Aug  8 2014 Paul Howarth <paul@city-fan.org> - 1.01-1
2d85b9
- Update to 1.01
2d85b9
  - Depend on patched Test::YAML
2d85b9
2d85b9
* Fri Aug  8 2014 Paul Howarth <paul@city-fan.org> - 1.00-1
2d85b9
- Update to 1.00
2d85b9
  - Switch to external Test::Base
2d85b9
  - Fix bad encoding in Pod
2d85b9
- Test::YAML is now unbundled
2d85b9
- Take advantage of new features in recent EU::MM to simplify spec
2d85b9
2d85b9
* Thu Jul 31 2014 Paul Howarth <paul@city-fan.org> - 0.98-1
2d85b9
- Update to 0.98
2d85b9
  - Fix indexing of YAML::Any
2d85b9
  - Change IRC to irc.perl.org#yaml
2d85b9
- Use %%license
2d85b9
- Drop workaround for #1115971
2d85b9
2d85b9
* Thu Jul 17 2014 Paul Howarth <paul@city-fan.org> - 0.97-1
2d85b9
- Update to 0.97
2d85b9
  - Move remaining docs to Swim
2d85b9
- Upstream reinstated all those pod files and manpages again
2d85b9
2d85b9
* Mon Jul 14 2014 Paul Howarth <paul@city-fan.org> - 0.96-1
2d85b9
- Update to 0.96
2d85b9
  - Fix Metadata and add Contributing file
2d85b9
  - Change Kwim to Swim
2d85b9
- Upstream dropped all those pod files and manpages again
2d85b9
2d85b9
* Thu Jul 03 2014 Petr Pisar <ppisar@redhat.com> - 0.95-2
2d85b9
- Inject VERSION into each module (bug #1115971)
2d85b9
2d85b9
* Mon Jun 23 2014 Paul Howarth <paul@city-fan.org> - 0.95-1
2d85b9
- Update to 0.95
2d85b9
  - Fix dumping blessed globs
2d85b9
2d85b9
* Sun Jun 15 2014 Paul Howarth <paul@city-fan.org> - 0.94-1
2d85b9
- Update to 0.94
2d85b9
  - Switch to Zilla::Dist
2d85b9
  - Add badges to doc
2d85b9
  - Fix regression introduced with earlier fix for complex regular
2d85b9
    subexpression recursion limit (GH#18)
2d85b9
  - Fix reference to non-existent sub Carp::Croak (GH#19)
2d85b9
- Enumerate all files so we can mark POD files as %%doc
2d85b9
- Bump Test::More version requirement to 0.88 due to use of done_testing
2d85b9
2d85b9
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.92-3
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2d85b9
2d85b9
* Tue Jun 03 2014 Petr Pisar <ppisar@redhat.com> - 0.92-2
2d85b9
- Do not run release tests on bootstrap (bug #1104137)
2d85b9
2d85b9
* Thu May 29 2014 Paul Howarth <paul@city-fan.org> 0.92-1
2d85b9
- Update to 0.92
2d85b9
  - Metadata fixes (https://github.com/ingydotnet/yaml-pm/pull/23)
2d85b9
2d85b9
* Wed May 28 2014 Paul Howarth <paul@city-fan.org> - 0.91-1
2d85b9
- Update to 0.91
2d85b9
  - Force escaping of single '-'
2d85b9
    (https://github.com/ingydotnet/yaml-pm/pull/22)
2d85b9
2d85b9
* Fri Feb 28 2014 Paul Howarth <paul@city-fan.org> - 0.90-2
2d85b9
- Avoid circular build deps via Module::Build when bootstrapping
2d85b9
2d85b9
* Tue Feb 11 2014 Paul Howarth <paul@city-fan.org> - 0.90-1
2d85b9
- Update to 0.90
2d85b9
  - Revert Mo from 0.38 to 0.31 following a report of it breaking cpan client
2d85b9
2d85b9
* Mon Feb 10 2014 Paul Howarth <paul@city-fan.org> - 0.89-1
2d85b9
- Update to 0.89
2d85b9
  - Synopsis in YAML::Dumper didn't work as expected (CPAN RT#19838)
2d85b9
  - Address complex regular subexpression recursion limit (CPAN RT#90593)
2d85b9
  - Use latest Test::Builder (CPAN RT#90847)
2d85b9
  - Fixed tests to work under parallel testing
2d85b9
  - Switched to dzil release process
2d85b9
- This release by INGY -> update source URL
2d85b9
- Make %%files list more explicit
2d85b9
- Specify all dependencies
2d85b9
2d85b9
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.84-7
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2d85b9
2d85b9
* Mon Jul 15 2013 Petr Pisar <ppisar@redhat.com> - 0.84-6
2d85b9
- Perl 5.18 rebuild
2d85b9
2d85b9
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.84-5
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2d85b9
2d85b9
* Tue Aug 28 2012 Jitka Plesnikova <jplesnik@redhat.com> - 0.84-4
2d85b9
- Specify all dependencies
2d85b9
2d85b9
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.84-3
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2d85b9
2d85b9
* Tue Jul 17 2012 Paul Howarth <paul@city-fan.org> - 0.84-2
2d85b9
- Haven't needed to fix documentation character encoding since 0.79
2d85b9
- Drop Test::Base build dependency again to avoid a BR loop (#215637)
2d85b9
- Filter private provides perl(yaml_mapping), perl(yaml_scalar) and
2d85b9
  perl(yaml_sequence)
2d85b9
- Don't need to remove empty directories from the buildroot
2d85b9
- This release by MSTROUT -> update source URL
2d85b9
2d85b9
* Mon Jul 16 2012 Petr Šabata <contyk@redhat.com> - 0.84-1
2d85b9
- 0.84 bump
2d85b9
- Drop command macros
2d85b9
- Drop previously added patch (included in 0.82)
2d85b9
2d85b9
* Fri Jun 22 2012 Jitka Plesnikova <jplesnik@redhat.com> 0.81-4
2d85b9
- Apply patch to for YAML::Any RT#74226
2d85b9
2d85b9
* Wed Jun 06 2012 Petr Pisar <ppisar@redhat.com> - 0.81-3
2d85b9
- Perl 5.16 rebuild
2d85b9
2d85b9
* Mon Apr 23 2012 Paul Howarth <paul@city-fan.org> - 0.81-2
2d85b9
- R: perl(Carp) and perl(Data::Dumper)
2d85b9
- BR: perl(Carp), perl(constant) and perl(Exporter)
2d85b9
- Release tests no longer shipped, so drop buildreqs for them and don't bother
2d85b9
  setting AUTOMATED_TESTING; run tests even when bootstrapping
2d85b9
2d85b9
* Mon Apr 23 2012 Marcela Mašláňová <mmaslano@redhat.com> - 0.81-1
2d85b9
- Update to 0.81
2d85b9
- Add BR Data::Dumper
2d85b9
2d85b9
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.73-3
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2d85b9
2d85b9
* Tue Jun 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.73-2
2d85b9
- Perl mass rebuild
2d85b9
- add perl_bootstrap macro
2d85b9
2d85b9
* Sat May 14 2011 Iain Arnell <iarnell@gmail.com> 0.73-1
2d85b9
- update to latest upstream version
2d85b9
- clean up spec for modern rpmbuild
2d85b9
2d85b9
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.72-2
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2d85b9
2d85b9
* Wed Dec 08 2010 Steven Pritchard <steve@kspei.com> 0.72-1
2d85b9
- Update to 0.72.
2d85b9
2d85b9
* Wed Aug 18 2010 Paul Howarth <paul@city-fan.org> - 0.71-1
2d85b9
- Update to 0.71 (use UTF-8 encoding in LoadFile/DumpFile: CPAN RT#25434)
2d85b9
- Enable AUTOMATED_TESTING
2d85b9
- BR: perl(Test::CPAN::Meta), perl(Test::MinimumVersion), perl(Test::Pod)
2d85b9
- This release by ADAMK -> update source URL
2d85b9
- Re-code docs as UTF-8
2d85b9
2d85b9
* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.70-5
2d85b9
- Mass rebuild with perl-5.12.0
2d85b9
2d85b9
* Thu Feb 25 2010 Marcela Mašláňová <mmaslano@redhat.com> - 0.70-4
2d85b9
- add license
2d85b9
2d85b9
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.70-3
2d85b9
- rebuild against perl 5.10.1
2d85b9
2d85b9
* Wed Oct  7 2009 Marcela Mašláňová <mmaslano@redhat.com> - 0.70-2
2d85b9
- rebuild for push
2d85b9
2d85b9
* Tue Oct 6  2009 Marcela Mašláňová <mmaslano@redhat.com> - 0.70-1
2d85b9
- new upstream version
2d85b9
2d85b9
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.68-3
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2d85b9
2d85b9
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.68-2
2d85b9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2d85b9
2d85b9
* Wed Dec 10 2008 Steven Pritchard <steve@kspei.com> 0.68-1
2d85b9
- Update to 0.68.
2d85b9
- COMPATIBILITY went away.
2d85b9
- ysh moved to YAML::Shell.
2d85b9
2d85b9
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.66-3
2d85b9
- Rebuild for perl 5.10 (again)
2d85b9
2d85b9
* Fri Jan 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.66-2
2d85b9
- rebuild for new perl
2d85b9
2d85b9
* Tue Oct 16 2007 Steven Pritchard <steve@kspei.com> 0.66-1
2d85b9
- Update to 0.66.
2d85b9
- Update License tag.
2d85b9
2d85b9
* Wed Jun 27 2007 Steven Pritchard <steve@kspei.com> 0.65-1
2d85b9
- Update to 0.65.
2d85b9
2d85b9
* Tue Mar 13 2007 Steven Pritchard <steve@kspei.com> 0.62-3
2d85b9
- Use fixperms macro instead of our own chmod incantation.
2d85b9
- Drop Test::Base build dependency to avoid a BR loop (#215637).
2d85b9
- BR ExtUtils::MakeMaker.
2d85b9
2d85b9
* Sat Sep 16 2006 Steven Pritchard <steve@kspei.com> 0.62-2
2d85b9
- Fix find option order.
2d85b9
2d85b9
* Fri Jul 07 2006 Steven Pritchard <steve@kspei.com> 0.62-1
2d85b9
- Update to 0.62.
2d85b9
- Removed Test::YAML (bug #197539).
2d85b9
2d85b9
* Mon Jul 03 2006 Steven Pritchard <steve@kspei.com> 0.61-1
2d85b9
- Update to 0.61.
2d85b9
2d85b9
* Sat May 20 2006 Steven Pritchard <steve@kspei.com> 0.58-3
2d85b9
- Rebuild.
2d85b9
2d85b9
* Tue May 09 2006 Steven Pritchard <steve@kspei.com> 0.58-2
2d85b9
- Drop testmore patch.
2d85b9
- Catch Test::YAML module and man page in file list.
2d85b9
2d85b9
* Thu May 04 2006 Steven Pritchard <steve@kspei.com> 0.58-1
2d85b9
- Update to 0.58.
2d85b9
- Small spec cleanups.
2d85b9
2d85b9
* Thu Apr 14 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.39-2
2d85b9
- 0.39.
2d85b9
2d85b9
* Wed Apr  6 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
2d85b9
- rebuilt
2d85b9
2d85b9
* Sat May 15 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.35-0.fdr.5
2d85b9
- Avoid creation of the perllocal.pod file (make pure_install).
2d85b9
2d85b9
* Sun Apr 25 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.35-0.fdr.4
2d85b9
- Require perl(:MODULE_COMPAT_*).
2d85b9
- Cosmetic tweaks (bug 1383).
2d85b9
2d85b9
* Sun Mar 14 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.35-0.fdr.3
2d85b9
- Reduce directory ownership bloat.
2d85b9
2d85b9
* Tue Nov 18 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.35-0.fdr.2
2d85b9
- Use INSTALLARCHLIB workaround in %%install.
2d85b9
2d85b9
* Wed Sep  3 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.35-0.fdr.1
2d85b9
- First build.