af0f67b
# Run optional test
af0f67b
%if ! 0%{?rhel}
af0f67b
%bcond_without perl_YAML_LibYAML_enables_optional_test
af0f67b
%else
af0f67b
%bcond_with perl_YAML_LibYAML_enables_optional_test
af0f67b
%endif
af0f67b
78400b8
Name:           perl-YAML-LibYAML
db1ac6b
Epoch:          1
5a83acf
Version:        0.89
5a83acf
Release:        1%{?dist}
ed98ee9
Summary:        Perl YAML Serialization using XS and libyaml
0443574
License:        GPL-1.0-or-later OR Artistic-1.0-Perl
450117c
URL:            https://metacpan.org/release/YAML-LibYAML
42214fa
Source0:        https://cpan.metacpan.org/modules/by-module/YAML/YAML-LibYAML-%{version}.tar.gz
01c7483
Patch0:         YAML-LibYAML-0.79-Unbundled-libyaml.patch
2d5a824
107ab8b
# Build
0452a35
BuildRequires:  coreutils
75b3a74
BuildRequires:  findutils
0452a35
BuildRequires:  gcc
75b3a74
BuildRequires:  make
c55d8e3
BuildRequires:  libyaml >= 0.2.4
c55d8e3
BuildRequires:  libyaml-devel >= 0.2.4
0452a35
BuildRequires:  perl-devel
8b0bb2e
BuildRequires:  perl-generators
7ca2538
BuildRequires:  perl-interpreter
107ab8b
BuildRequires:  perl(Config)
9dd49aa
BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
01c7483
BuildRequires:  sed
2d5a824
2d5a824
# Module
2d5a824
BuildRequires:  perl(B::Deparse)
2d5a824
BuildRequires:  perl(base)
2d5a824
BuildRequires:  perl(constant)
2d5a824
BuildRequires:  perl(Exporter)
c0847ec
BuildRequires:  perl(Scalar::Util)
22429aa
BuildRequires:  perl(strict)
22429aa
BuildRequires:  perl(warnings)
2d5a824
BuildRequires:  perl(XSLoader)
2d5a824
2d5a824
# Tests
7ca2538
BuildRequires:  perl(B)
75b3a74
BuildRequires:  perl(blib)
db1ac6b
BuildRequires:  perl(Carp)
db1ac6b
BuildRequires:  perl(Data::Dumper)
2d5a824
BuildRequires:  perl(Devel::Peek)
0452a35
BuildRequires:  perl(Encode)
c6d19a8
BuildRequires:  perl(File::Find)
c6d19a8
BuildRequires:  perl(File::Path)
db1ac6b
BuildRequires:  perl(Filter::Util::Call)
ffaaebd
BuildRequires:  perl(FindBin)
5a83acf
BuildRequires:  perl(if)
0452a35
BuildRequires:  perl(IO::File)
0452a35
BuildRequires:  perl(IO::Pipe)
5746ee9
BuildRequires:  perl(lib)
db1ac6b
BuildRequires:  perl(Test::Builder)
d813170
BuildRequires:  perl(Test::More) >= 0.90
Petr Sabata 3638c5f
BuildRequires:  perl(Tie::Array)
Petr Sabata 3638c5f
BuildRequires:  perl(Tie::Hash)
d1009bb
BuildRequires:  perl(utf8)
78400b8
af0f67b
%if %{with perl_YAML_LibYAML_enables_optional_test}
107ab8b
# Optional Tests
5a83acf
BuildRequires:  perl(boolean)
107ab8b
BuildRequires:  perl(Path::Class)
af0f67b
%endif
107ab8b
107ab8b
# Dependencies
ffaaebd
Requires:       perl(B::Deparse)
c55d8e3
Requires:       libyaml >= 0.2.4
2d5a824
2d5a824
# Avoid provides for perl shared objects
Chris Weyl 9a83816
%{?perl_default_filter}
de8951c
# Filter modules bundled for tests
de8951c
%global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}^%{_libexecdir}
de8951c
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(TestYAML.*\\)
Chris Weyl 9a83816
78400b8
%description
2d5a824
Kirill Siminov's "libyaml" is arguably the best YAML implementation. The C
2d5a824
library is written precisely to the YAML 1.1 specification. It was originally
2d5a824
bound to Python and was later bound to Ruby.
78400b8
de8951c
%package tests
de8951c
Summary:        Tests for %{name}
de8951c
Requires:       %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
de8951c
Requires:       perl-Test-Harness
de8951c
de8951c
%description tests
de8951c
Tests from %{name}. Execute them
de8951c
with "%{_libexecdir}/%{name}/test".
de8951c
78400b8
%prep
78400b8
%setup -q -n YAML-LibYAML-%{version}
c55d8e3
# Unbundled libyaml, the source files are the same as in libyaml-0.2.4
01c7483
# It was determined by comparing commits in upstream repo:
01c7483
# https://github.com/yaml/libyaml/
2ccb0a1
%patch -P 0 -p1 -b .orig
01c7483
for file in api.c dumper.c emitter.c loader.c parser.c reader.c scanner.c \
01c7483
    writer.c yaml.h yaml_private.h; do
01c7483
    rm LibYAML/$file
01c7483
    sed -i -e "/^LibYAML\/$file/d" MANIFEST
01c7483
done
de8951c
# Help generators to recognize Perl scripts
de8951c
for F in t/*.t; do
de8951c
    perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F"
de8951c
    chmod +x "$F"
de8951c
done
78400b8
78400b8
%build
f1f36f7
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" NO_PACKLIST=1 NO_PERLLOCAL=1
f1f36f7
%{make_build}
78400b8
78400b8
%install
f1f36f7
%{make_install}
40d37e3
find %{buildroot} -type f -name '*.bs' -empty -delete
db1ac6b
%{_fixperms} -c %{buildroot}
78400b8
de8951c
# Install tests
de8951c
mkdir -p %{buildroot}%{_libexecdir}/%{name}
de8951c
cp -a t %{buildroot}%{_libexecdir}/%{name}
de8951c
# It needs libraries in lib/ not in system directories
de8951c
rm %{buildroot}%{_libexecdir}/%{name}/t/000-require-modules.t
de8951c
# Remove author test
de8951c
rm %{buildroot}%{_libexecdir}/%{name}/t/author-pod-syntax.t
de8951c
# Don't use blib
de8951c
perl -i -pe 's{^use blib;}{#use blib;}' %{buildroot}%{_libexecdir}/%{name}/t/TestYAML.pm
de8951c
perl -i -pe 's{^use_blib: 1}{use_blib: 0}' %{buildroot}%{_libexecdir}/%{name}/t/yaml_tests.yaml
de8951c
cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'
de8951c
#!/bin/bash
de8951c
set -e
de8951c
# Some tests write into temporary files/directories. The solution is to
de8951c
# copy the tests into a writable directory and execute them from there.
de8951c
DIR=$(mktemp -d)
de8951c
pushd "$DIR"
de8951c
cp -a %{_libexecdir}/%{name}/* ./
de8951c
prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
de8951c
popd
de8951c
rm -rf "$DIR"
de8951c
EOF
de8951c
chmod +x %{buildroot}%{_libexecdir}/%{name}/test
de8951c
78400b8
%check
de8951c
export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}')
78400b8
make test
78400b8
78400b8
%files
22429aa
%license LICENSE
22429aa
%doc Changes CONTRIBUTING README
2d5a824
%{perl_vendorarch}/auto/YAML/
2d5a824
%{perl_vendorarch}/YAML/
b6c7bcd
%{_mandir}/man3/YAML::LibYAML.3*
b6c7bcd
%{_mandir}/man3/YAML::XS.3*
b6c7bcd
%{_mandir}/man3/YAML::XS::LibYAML.3*
78400b8
de8951c
%files tests
de8951c
%{_libexecdir}/%{name}
de8951c
78400b8
%changelog
5a83acf
* Sat Jan 27 2024 Paul Howarth <paul@city-fan.org> - 1:0.89-1
5a83acf
- Update to 0.89 (rhbz#2260595)
5a83acf
  - Recognise core booleans on Perl 5.36+ at dump time (GH#114)
5a83acf
a364dc2
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.88-5
a364dc2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
a364dc2
5838591
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.88-4
5838591
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
5838591
3c29211
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.88-3
3c29211
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
3c29211
cf4885f
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.88-2
cf4885f
- Perl 5.38 rebuild
cf4885f
1e61ddc
* Fri May 12 2023 Paul Howarth <paul@city-fan.org> - 1:0.88-1
1e61ddc
- Update to 0.88
1e61ddc
  - REVERT "Turn off internal POK flag for number scalars"
1e61ddc
2ccb0a1
* Fri May  5 2023 Paul Howarth <paul@city-fan.org> - 1:0.87-1
2ccb0a1
- Update to 0.87
2ccb0a1
  - Turn off internal POK flag for number scalars
2ccb0a1
- Avoid use of deprecated patch syntax
2ccb0a1
614fd28
* Thu Jan 26 2023 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.86-1
614fd28
- 0.86 bump
de8951c
- Package tests
614fd28
033638f
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.85-2
033638f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
033638f
c250a08
* Tue Sep 13 2022 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.85-1
c250a08
- Update to 0.85 (rhbz#2126164)
c250a08
  - Convert doc from Swim to Markdown
c250a08
0443574
* Mon Sep  5 2022 Paul Howarth <paul@city-fan.org> - 1:0.84-1
0443574
- Update to 0.84 (rhbz#2124002)
0443574
  - Add option ForbidDuplicateKeys (GH#105)
0443574
- Use SPDX-format license tag
0443574
e6dadce
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.83-6
e6dadce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
e6dadce
b2685ff
* Tue May 31 2022 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.83-5
b2685ff
- Perl 5.36 rebuild
b2685ff
876a780
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.83-4
876a780
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
876a780
537844b
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.83-3
537844b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
537844b
feb6b09
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.83-2
feb6b09
- Perl 5.34 rebuild
feb6b09
d813170
* Sun May  9 2021 Paul Howarth <paul@city-fan.org> - 1:0.83-1
d813170
- Update to 0.83
d813170
  - Recognize tied variables (GH#101)
d813170
  - Add license file from included libyaml code (GH#102)
d813170
621e4e7
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.82-4
621e4e7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
621e4e7
e1b1d68
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.82-3
e1b1d68
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
e1b1d68
5d243b3
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.82-2
5d243b3
- Perl 5.32 rebuild
5d243b3
c55d8e3
* Sun May  3 2020 Paul Howarth <paul@city-fan.org> - 1:0.82-1
c55d8e3
- Update to 0.82
c55d8e3
  - Updated libyaml sources to 0.2.4; changes affecting YAML::XS are:
c55d8e3
    - Output '...' at the stream end after a block scalar with trailing empty
c55d8e3
      lines
c55d8e3
    - Accept '%%YAML 1.2' directives (they are ignored and do not change
c55d8e3
      behaviour though)
c55d8e3
e6788e8
* Tue Jan 28 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.81-1
e6788e8
- Update to 0.81
e6788e8
  - Breaking Change: Set $YAML::XS::LoadBlessed default to false to make it
e6788e8
    more secure
e6788e8
945ef1c
* Thu Aug 22 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.80-1
945ef1c
- Update to 0.80
945ef1c
  - Fix memory leak when loading invalid YAML
945ef1c
5687e68
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.79-2
5687e68
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
5687e68
5cb7ce2
* Wed Jun 12 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.79-1
5cb7ce2
- Update to 0.79
5cb7ce2
  - Support aliasing scalars resolved as null or booleans
5cb7ce2
  - Add YAML::XS::LibYAML::libyaml_version()
5cb7ce2
  - Support standard !!int/!!float tags instead of dying
01c7483
- Unbundled libyaml, it is identical with upstream 0.2.2
5cb7ce2
e89d017
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.78-2
e89d017
- Perl 5.30 rebuild
e89d017
f1f36f7
* Sun May 19 2019 Paul Howarth <paul@city-fan.org> - 1:0.78-1
f1f36f7
- Update to 0.78
f1f36f7
  - Fix double free/core dump when Dump()ing binary data (GH#91)
f1f36f7
  - Update config.h from libyaml
f1f36f7
- Modernize spec using %%{make_build} and %%{make_install}
f1f36f7
7fa99ee
* Tue Apr 16 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.77-1
7fa99ee
- Update to 0.77
7fa99ee
 - Update libyaml to version 0.2.2 - Most important change for users is that
7fa99ee
   plain urls in flow style can be parsed now
7fa99ee
5343ba2
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.76-2
5343ba2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
5343ba2
9b3bf45
* Wed Jan 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.76-1
9b3bf45
- Update to 0.76
9b3bf45
  - Add $Indent - number of spaces when dumping
9b3bf45
  - Fix typo and links in docs
9b3bf45
a68a1af
* Sat Nov  3 2018 Paul Howarth <paul@city-fan.org> - 1:0.75-1
a68a1af
- Update to 0.75
a68a1af
  - Implement $LoadCode
a68a1af
4ecbf50
* Mon Sep  3 2018 Paul Howarth <paul@city-fan.org> - 1:0.74-1
4ecbf50
- Update to 0.74
4ecbf50
  - Fix tests on older perls
4ecbf50
  - Support back to perl 5.8.1
4ecbf50
84da0ba
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.72-2
84da0ba
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
84da0ba
9a931db
* Mon Jul 09 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.72-1
9a931db
- Update to 0.72
9a931db
  - Update to libyaml 0.2.1 - It's forbidden now to escape single
9a931db
    quotes inside double quotes
9a931db
  - When disabling $LoadBlessed, return scalars not refs
9a931db
  - Save anchors also for blessed scalars
9a931db
2ccfab5
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.70-2
2ccfab5
- Perl 5.28 rebuild
2ccfab5
b1a62db
* Sun Jun 10 2018 Paul Howarth <paul@city-fan.org> - 1:0.70-1
b1a62db
- Update to 0.70
b1a62db
  - Fix format specifier/argument mismatch (GH#79)
b1a62db
  - Travis CI: Test on Perl 5.26 (GH#80)
b1a62db
  - Fix a C90-compatibility issue (GH#81)
b1a62db
- Switch upstream from search.cpan.org to metacpan.org
b1a62db
4ccfded
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.69-2
4ccfded
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
4ccfded
4448021
* Thu Dec 28 2017 Paul Howarth <paul@city-fan.org> - 1:0.69-1
4448021
- Update to 0.69
4448021
  - Security fix: Add $LoadBlessed option to turn on/off loading objects
4448021
    (GH#73, GH#74)
4448021
3f6a784
* Tue Dec 19 2017 Paul Howarth <paul@city-fan.org> - 1:0.68-1
3f6a784
- Update to 0.68
3f6a784
  - Fix regex roundtrip (GH#69, GH#70)
3f6a784
  - Fix loading of many regexes (GH#64, GH#71)
3f6a784
9dd49aa
* Thu Nov 16 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.67-1
9dd49aa
- Update to 0.67
3f6a784
  - Support standard tags !!str, !!map and !!seq instead of dying (GH#67)
3f6a784
  - Support JSON::PP::Boolean and boolean.pm via $YAML::XS::Boolean (GH#66)
9dd49aa
7ca2538
* Fri Aug 18 2017 Paul Howarth <paul@city-fan.org> - 1:0.66-1
7ca2538
- Update to 0.66
7ca2538
  - Dump() was modifying original data, adding a PV to numbers (GH#32, GH#55)
7ca2538
f846a09
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.65-4
f846a09
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
f846a09
7b6b576
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.65-3
7b6b576
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
7b6b576
984c770
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.65-2
984c770
- Perl 5.26 rebuild
984c770
3fbe933
* Fri May 19 2017 Paul Howarth <paul@city-fan.org> - 1:0.65-1
3fbe933
- Update to 0.65
3fbe933
  - Prevent warning about unused variables (GH#59)
3fbe933
  - Clarify documentation about exported functions
3fbe933
ffaaebd
* Sun Apr  9 2017 Paul Howarth <paul@city-fan.org> - 1:0.64-1
ffaaebd
- Update to 0.64
ffaaebd
  - use lib FindBin::Bin in tests, preparing for perl 5.26 where '.' gets
ffaaebd
    removed from @INC (GH#54)
ffaaebd
  - Use the latest libyaml sources
ffaaebd
  - Lazy load B::Deparse for faster startup time (GH#52, GH#53)
ffaaebd
- Drop redundant Group: tag
ffaaebd
- Add provide for bundled(libyaml)
ffaaebd
db1ac6b
* Tue Mar  7 2017 Paul Howarth <paul@city-fan.org> - 1:0.63-2
db1ac6b
- Revert to 0.63; the 0.71 release was unauthorized
db1ac6b
2bf57a2
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.71-2
2bf57a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2bf57a2
107ab8b
* Thu Sep  8 2016 Paul Howarth <paul@city-fan.org> - 0.71-1
107ab8b
- Update to 0.71
107ab8b
  - Merge with libyaml 0.1.7 upstream
107ab8b
  - cperl fixes for fake_signatures
107ab8b
  - libyaml fix C++-compat errors
107ab8b
  - Improve Makefile for Win32
107ab8b
  - Improve ppport_sort.h
107ab8b
  - Implement new NonStrict mode (for perl5 compat)
107ab8b
  - libyaml reformat, minor optimizations, fix warnings
107ab8b
  - Update documentation
107ab8b
  - Use error codes, return undef on error
107ab8b
  - Abstract the loader functionality to load_impl(), dump_impl() not yet
107ab8b
  - Rearrange static funcs (not decl in header)
107ab8b
  - DumpFile,LoadFile is now XS only, and do accept mg pv, io objects and
107ab8b
    fileglobs; support filename in error messages
107ab8b
  - Support $YAML::XS::NonStrict loader
107ab8b
  - Add dumper options Indent, BestWidth, Canonical, Unicode, Encoding,
107ab8b
    LineBreak, OpenEnded (kept defaults)
107ab8b
  - Add loader option NonStrict, Encoding (kept defaults)
107ab8b
  - Fix default emitter_set_width (2 ⇒ 80)
107ab8b
  - Fix the tests for the new default IndentlessMap=0 and check also
107ab8b
    IndentlessMap=1
107ab8b
  - Enable 2 more test/glob.t tests
107ab8b
  - Fix dump_yaml in test/TestYAMLTests.pm
107ab8b
  - Avoid duplicate checks against NULL
107ab8b
- This release by RURBAN → update source URL
107ab8b
40d37e3
* Fri Jul  8 2016 Paul Howarth <paul@city-fan.org> - 0.63-1
40d37e3
- Update to 0.63
40d37e3
  - Fix memory leaks (GH#48)
40d37e3
- BR: perl-generators
40d37e3
- Simplify find command using -empty
40d37e3
f739233
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.62-2
f739233
- Perl 5.24 rebuild
f739233
c0847ec
* Mon Feb 22 2016 Paul Howarth <paul@city-fan.org> - 0.62-1
c0847ec
- Update to 0.62
c0847ec
  - Fix for detecting filehandles (GH#42)
c0847ec
- This release by TINITA → update source URL
c0847ec
0452a35
* Sun Feb 21 2016 Paul Howarth <paul@city-fan.org> - 0.61-1
0452a35
- Update to 0.61
0452a35
  - Allow reading from and writing to IO::Handle (and derived) objects (GH#37)
0452a35
75b3a74
* Wed Feb 10 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.60-1
75b3a74
- 0.60 bump
75b3a74
c871d43
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.59-4
c871d43
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c871d43
56d0057
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.59-3
56d0057
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
56d0057
8038829
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.59-2
8038829
- Perl 5.22 rebuild
8038829
ce5f716
* Tue Jan 27 2015 Paul Howarth <paul@city-fan.org> - 0.59-1
ce5f716
- Update to 0.59
ce5f716
  - Better scalar dump heuristics (PR/23)
ce5f716
  - More closely match YAML.pm
ce5f716
e2930bc
* Wed Jan 21 2015 Paul Howarth <paul@city-fan.org> - 0.58-1
e2930bc
- Update to 0.58
e2930bc
  - Add a VERSION statement to YAML::LibYAML (GH#8)
e2930bc
- This release by INGY → update source URL
e2930bc
c6d19a8
* Fri Jan 16 2015 Paul Howarth <paul@city-fan.org> - 0.57-1
c6d19a8
- Update to 0.57
c6d19a8
  - Update copyright year
c6d19a8
  - Use Swim cpan-tail block functions in doc
c6d19a8
  - Format string fixes (PR#21, CPAN RT#46507, CVE-2012-1152)
c6d19a8
- This release by NAWGLAN → update source URL
c6d19a8
- Drop patch for format string fixes, upstreamed at long last
c6d19a8
4a9ce9d
* Wed Dec 24 2014 Paul Howarth <paul@city-fan.org> - 0.55-1
4a9ce9d
- Update to 0.55
4a9ce9d
  - Get YAML::XS using latest libyaml
4a9ce9d
b6c7bcd
* Sun Nov 30 2014 Paul Howarth <paul@city-fan.org> - 0.54-1
b6c7bcd
- Update to 0.54
b6c7bcd
  - Fix for an edge case in scanner that results in an assert() failing
b6c7bcd
    (https://bitbucket.org/xi/libyaml/issue/10/wrapped-strings-cause-assert-failure)
2dae534
    (CVE-2014-9130)
b6c7bcd
- Drop upstreamed patches for CVE-2013-6393 and CVE-2014-2525
b6c7bcd
d1009bb
* Tue Nov 18 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.52-3
d1009bb
- Update BRs (bz#1165198)
d1009bb
b83d119
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.52-2
b83d119
- Perl 5.20 rebuild
b83d119
b732361
* Sun Aug 24 2014 Paul Howarth <paul@city-fan.org> - 0.52-1
b732361
- Update to 0.52
b732361
  - Fix e1 test failure on 5.21.4
b732361
294e189
* Mon Aug 18 2014 Paul Howarth <paul@city-fan.org> - 0.51-1
294e189
- Update to 0.51 (various minor tidy-ups, no functional changes)
294e189
4c0f0ea
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.47-2
4c0f0ea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
4c0f0ea
22429aa
* Sat Aug  9 2014 Paul Howarth <paul@city-fan.org> - 0.47-1
22429aa
- Update to 0.47:
22429aa
  - Fix swim errors
22429aa
- Include upstream license file
22429aa
6b411ca
* Wed Aug 06 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.46-1
6b411ca
- 0.46 bump
6b411ca
543e56a
* Tue Aug 05 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.45-1
543e56a
- 0.45 bump
6b411ca
5746ee9
* Mon Jul 14 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.44-1
5746ee9
- 0.44 bump
5746ee9
137b97d
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.41-5
137b97d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
137b97d
da43da3
* Thu Mar 27 2014 Paul Howarth <paul@city-fan.org> - 0.41-4
da43da3
- Fix LibYAML input sanitization errors (CVE-2014-2525)
da43da3
- Fix heap-based buffer overflow when parsing YAML tags (CVE-2013-6393)
da43da3
3e843d9
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.41-3
3e843d9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
3e843d9
3560fff
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 0.41-2
3560fff
- Perl 5.18 rebuild
3560fff
0c4fe66
* Wed Mar 13 2013 Paul Howarth <paul@city-fan.org> - 0.41-1
0c4fe66
- Update to 0.41:
0c4fe66
  - Removed C++ // style comments, for better portability
0c4fe66
0b7d2f5
* Tue Feb 12 2013 Paul Howarth <paul@city-fan.org> - 0.39-1
0b7d2f5
- Update to 0.39:
0b7d2f5
  - Using the latest libyaml codebase
0b7d2f5
    (https://github.com/yaml/libyaml/tree/perl-yaml-xs)
0b7d2f5
  - Changes have been made to start moving libyaml to 1.2
0b7d2f5
d455d60
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.38-4
d455d60
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d455d60
0b5b7f9
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 0.38-3
0b5b7f9
- Perl 5.16 rebuild
c4c7f17
- Build-require Data::Dumper
0b5b7f9
2d5a824
* Thu Mar 29 2012 Paul Howarth <paul@city-fan.org> - 0.38-2
2d5a824
- Fix various format string vulnerabilities (CVE-2012-1152, CPAN RT#46507)
2d5a824
- De-duplicate buildreqs, with Module>Install>Tests priority
2d5a824
- Install to vendor directories
2d5a824
- Don't need to remove empty directories from buildroot
2d5a824
- Don't use macros for commands
2d5a824
- Make %%files list more explicit
2d5a824
- Tidy %%description
2d5a824
2d5a824
* Fri Jan 13 2012 Marcela Mašláňová <mmaslano@redhat.com> - 0.38-1
2d5a824
- Bump to 0.38
d37a3cb
Petr Sabata 3638c5f
* Fri Sep 30 2011 Petr Sabata <contyk@redhat.com> - 0.37-1
Petr Sabata 3638c5f
- 0.37 bump
Petr Sabata 3638c5f
- Remove defattr
Petr Sabata 3638c5f
- Correct BR
Petr Sabata 3638c5f
63a4f0b
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.35-2
63a4f0b
- Perl mass rebuild
63a4f0b
6fc83b5
* Mon Apr 04 2011 Petr Sabata <psabata@redhat.com> - 0.35-1
6fc83b5
- 0.35 bump
6fc83b5
- Removing obsolete buildroot stuff
6fc83b5
ed98ee9
* Wed Mar 16 2011 Paul Howarth <paul@city-fan.org> - 0.34-4
ed98ee9
- Improve overly-generic package summary
ed98ee9
- README is already UTF-8 encoded in version 0.34 so don't try converting it
ed98ee9
838e9cf
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.34-3
838e9cf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
838e9cf
Jesse Keating 9fb2c53
* Wed Sep 29 2010 jkeating - 0.34-2
Jesse Keating 9fb2c53
- Rebuilt for gcc bug 634757
Jesse Keating 9fb2c53
0b7d2f5
* Fri Sep 24 2010 Marcela Mašláňová <mmaslano@redhat.com> - 0.34-1
ed98ee9
- update
d3310af
5af87d1
* Thu Jun  3 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.33-1
5af87d1
- update
5af87d1
de02077
* Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.32-6
de02077
- Mass rebuild with perl-5.12.0
de02077
Chris Weyl 9a83816
* Sat Mar 27 2010 Chris Weyl <cweyl@alumni.drew.edu> - 0.32-5
Chris Weyl 9a83816
- perl_default_filter, PERL_INSTALL_ROOT => DESTDIR
Chris Weyl 9a83816
0688063
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.32-4
0688063
- rebuild against perl 5.10.1
0688063
862fc3e
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.32-3
862fc3e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
862fc3e
78400b8
* Wed Apr 29 2009 Marcela Mašláňová <mmaslano@redhat.com> 0.32-2
78400b8
- add BR
78400b8
78400b8
* Wed Apr 29 2009 Marcela Mašláňová <mmaslano@redhat.com> 0.32-1
78400b8
- Specfile autogenerated by cpanspec 1.78.