Compare commits

..

9 Commits
rawhide ... f31

Author SHA1 Message Date
Petr Písař 7ec2100e8d 4.018 bump 2020-08-04 10:25:14 +02:00
Petr Písař 182c5d5846 4.017 bump 2020-07-10 13:06:49 +02:00
Petr Písař faa441c52b 4.015 bump 2020-07-08 10:35:56 +02:00
Petr Písař c0491ddaf3 4.014 bump 2020-06-15 17:24:35 +02:00
Petr Písař f48923d45d 4.012 bump 2020-06-11 10:19:26 +02:00
Petr Písař 7848ab704e 4.011 bump 2020-02-12 10:13:35 +01:00
Petr Písař 6acd95452f Build-require Hash::Util needed for tests 2020-02-12 10:13:33 +01:00
Petr Písař 65c85b783d 4.009 bump 2020-02-03 11:42:20 +01:00
Petr Písař 4a3da12446 4.008 bump 2020-01-30 16:00:22 +01:00
4 changed files with 14 additions and 119 deletions

10
.gitignore vendored
View File

@ -20,13 +20,3 @@
/Sereal-Encoder-4.015.tar.gz
/Sereal-Encoder-4.017.tar.gz
/Sereal-Encoder-4.018.tar.gz
/Sereal-Encoder-4.019.tar.gz
/Sereal-Encoder-4.020.tar.gz
/Sereal-Encoder-4.021.tar.gz
/Sereal-Encoder-4.022.tar.gz
/Sereal-Encoder-4.023.tar.gz
/Sereal-Encoder-4.025.tar.gz
/Sereal-Encoder-5.001.tar.gz
/Sereal-Encoder-5.002.tar.gz
/Sereal-Encoder-5.003.tar.gz
/Sereal-Encoder-5.004.tar.gz

View File

@ -0,0 +1,2 @@
from Config import *
addFilter("spelling-error .* serializer");

View File

@ -6,7 +6,7 @@
%endif
Name: perl-Sereal-Encoder
Version: 5.004
Version: 4.018
Release: 1%{?dist}
Summary: Perl serialization into Sereal format
# lib/Sereal/Encoder.pm: GPL+ or Artistic
@ -16,10 +16,9 @@ Summary: Perl serialization into Sereal format
# snappy: BSD
# zstd/decompress/zstd_decompress.c: GPLv2 or BSD
# See <https://github.com/Sereal/Sereal/issues/72>
License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND LGPL-2.1-or-later
License: (GPL+ or Artistic) and LGPLv2+
URL: https://metacpan.org/release/Sereal-Encoder
Source0: https://cpan.metacpan.org/authors/id/Y/YV/YVES/Sereal-Encoder-%{version}.tar.gz
# Build:
BuildRequires: coreutils
BuildRequires: csnappy-devel
BuildRequires: findutils
@ -32,7 +31,7 @@ BuildRequires: perl-generators
BuildRequires: perl-interpreter
BuildRequires: perl(Config)
BuildRequires: perl(constant)
BuildRequires: perl(Devel::CheckLib) >= 1.16
BuildRequires: perl(Devel::CheckLib)
BuildRequires: perl(ExtUtils::MakeMaker) >= 7.0
# File::Find not used
# File::Path not used in inc/Sereal/BuildTools.pm
@ -60,7 +59,7 @@ BuildRequires: perl(lib)
BuildRequires: perl(List::Util)
BuildRequires: perl(overload)
BuildRequires: perl(Scalar::Util)
BuildRequires: perl(Sereal::Decoder) >= %{version}
BuildRequires: perl(Sereal::Decoder) >= 4.002
BuildRequires: perl(Storable)
BuildRequires: perl(Test::LongString)
BuildRequires: perl(Test::More) >= 0.88
@ -78,6 +77,7 @@ BuildRequires: perl(version)
BuildRequires: perl(Test::Deep) >= 0.110
BuildRequires: perl(Test::Deep::NoTest)
%endif
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
%description
This library implements an efficient, compact-output, and feature-rich
@ -101,127 +101,33 @@ perl -i -ne 'print $_ unless m{^zstd/}' MANIFEST
%build
unset DEBUG SEREAL_USE_BUNDLED_LIBS SEREAL_USE_BUNDLED_CSNAPPY \
SEREAL_USE_BUNDLED_MINIZ SEREAL_USE_BUNDLED_ZSTD
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 OPTIMIZE="%{optflags}"
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 OPTIMIZE="$RPM_OPT_FLAGS"
%{make_build}
%install
%{make_install}
find %{buildroot} -type f -name '*.bs' -empty -delete
%{_fixperms} -c %{buildroot}
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -delete
%{_fixperms} $RPM_BUILD_ROOT/*
%check
make test
%files
%doc Changes
%{perl_vendorarch}/auto/Sereal/
%{perl_vendorarch}/Sereal/
%{_mandir}/man3/Sereal::Encoder.3*
%{perl_vendorarch}/auto/*
%{perl_vendorarch}/Sereal*
%{_mandir}/man3/*
%changelog
* Wed Apr 19 2023 Paul Howarth <paul@city-fan.org> - 5.004-1
- Update to 5.004 (rhbz#2188043)
- Decoder fixes: fix thaw ordering for frozen objects - nested THAW
operations now happen in the documented LIFO order (GH#283, GH#285)
* Wed Feb 8 2023 Paul Howarth <paul@city-fan.org> - 5.003-1
- Update to 5.003 (rhbz#2168016)
- Update Miniz to 3.0.2, Zstd to 1.5.2 and Devel::CheckLib to 1.16
(note: this package uses the system versions of these)
- Assorted build fixes related to these updates
- OpenBSD build fixes
* Wed Feb 1 2023 Paul Howarth <paul@city-fan.org> - 5.002-1
- Update to 5.002 (rhbz#2166281)
- Fix up Decoder tests to run on perl 5.8, which has no defined-or
- Ensure that Encoder depends on the correct version of the Decoder
- Test compatibility fixes when no perl is already installed
- Add t/195_backcompat.t to check if the latest decoder will seamlessly
handle reading output from older versions
- Test compatibility fixes with version 3 and earlier
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.001-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Tue Nov 01 2022 Petr Pisar <ppisar@redhat.com> - 5.001-2
- Rebuild against miniz-3.0.0 (bug #2137798)
* Sun Sep 4 2022 Paul Howarth <paul@city-fan.org> - 5.001-1
- Update to 5.001
- First official release of protocol 5
- Better support for non-standard NV types
- Support for the new Perl 5.36 bools
- Use SPDX-format license tag
* Thu Jul 28 2022 Paul Howarth <paul@city-fan.org> - 4.025-1
- Update to 4.025
- Changes to the FREEZE/THAW mechanism
- Remove the part that says that FREEZE cannot return a list; it can, and
we have supported it for a very long time, although I have not checked
how far back this support goes
- If you use the FREEZE/THAW API's you should upgrade to this version
- Test fixes for t/020_sort_keys.t hanging on some perls that do not come
bundled with Hash::Util
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.023-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Tue May 31 2022 Jitka Plesnikova <jplesnik@redhat.com> - 4.023-2
- Perl 5.36 rebuild
* Sun Feb 20 2022 Paul Howarth <paul@city-fan.org> - 4.023-1
- Update to 4.023
- Make it possible to upgrade with passing tests when using
Sereal::Decoder 4.015-4.019 on threaded debugging perls
* Sat Feb 19 2022 Paul Howarth <paul@city-fan.org> - 4.022-1
- Update to 4.022
- Better logic to make it possible to upgrade with passing tests when using
Sereal::Decoder 4.019 on threaded debugging perls
* Fri Feb 18 2022 Paul Howarth <paul@city-fan.org> - 4.021-1
- Update to 4.021
- Make it possible to upgrade with passing tests when using
Sereal::Decoder 4.019 on threaded debugging perls
* Thu Feb 17 2022 Paul Howarth <paul@city-fan.org> - 4.020-1
- Update to 4.020
- Fix "panic: free from wrong pool" errors on threaded builds
* Mon Feb 7 2022 Paul Howarth <paul@city-fan.org> - 4.019-1
- Update to 4.019
- Fix build issue with latest perl
- Update bundled zstd to 1.5.1 (note: this package uses system zstd)
- Fix permissions verbosely
- Make %%files list more explicit
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.018-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.018-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 4.018-3
- Perl 5.34 rebuild
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.018-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Tue Aug 04 2020 Petr Pisar <ppisar@redhat.com> - 4.018-1
- 4.018 bump
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.017-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Fri Jul 10 2020 Petr Pisar <ppisar@redhat.com> - 4.017-1
- 4.017 bump
* Wed Jul 08 2020 Petr Pisar <ppisar@redhat.com> - 4.015-1
- 4.015 bump
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 4.014-2
- Perl 5.32 rebuild
* Mon Jun 15 2020 Petr Pisar <ppisar@redhat.com> - 4.014-1
- 4.014 bump
@ -240,9 +146,6 @@ make test
* Thu Jan 30 2020 Petr Pisar <ppisar@redhat.com> - 4.008-1
- 4.008 bump
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.007-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.007-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild

View File

@ -1 +1 @@
SHA512 (Sereal-Encoder-5.004.tar.gz) = 6ad25a4a3cdc3e7de7b7f47b7511154b5e6eca90a54b305a8d50f59dd1352000f054255912c4eeb6d37991813844068b1a0e2f544be27ac9bcea08fb6c0fc6d5
SHA512 (Sereal-Encoder-4.018.tar.gz) = 021586f02560906fa315cf7eefc877ff029c123550dd2889a90d8e36e2d480bc4c53fa7437728cb73bda6da886af52f1b58661796f78859c7b41f62a2000a070