6fad50f
# Perform optional tests
6fad50f
%bcond_without perl_Compress_Raw_Lzma_enables_optional_test
6fad50f
d9e74bb
Name:		perl-Compress-Raw-Lzma
ef6aecb
Version:	2.101
ef6aecb
Release:	1%{?dist}
d9e74bb
Summary:	Low-level interface to lzma compression library
d9e74bb
License:	GPL+ or Artistic
fb12f98
URL:		https://metacpan.org/release/Compress-Raw-Lzma
a044c77
Source0:	https://cpan.metacpan.org/modules/by-module/Compress/Compress-Raw-Lzma-%{version}.tar.gz
ae5906c
# Module Build
f7103c7
BuildRequires:	coreutils
f7103c7
BuildRequires:	findutils
f7103c7
BuildRequires:	gcc
f7103c7
BuildRequires:	make
f7103c7
BuildRequires:	perl-devel
5ca64f8
BuildRequires:	perl-generators
32c9683
BuildRequires:	perl-interpreter
ae5906c
BuildRequires:	perl(Config)
ae5906c
BuildRequires:	perl(ExtUtils::Constant)
aaef409
BuildRequires:	perl(ExtUtils::MakeMaker) >= 6.76
ae5906c
BuildRequires:	perl(File::Copy)
ae5906c
BuildRequires:	perl(File::Spec::Functions)
ffde1fa
BuildRequires:	perl(lib)
ae5906c
BuildRequires:	xz-devel
ae5906c
# Module Runtime
6ee2e5b
BuildRequires:	perl(AutoLoader)
ffde1fa
BuildRequires:	perl(bytes)
6ee2e5b
BuildRequires:	perl(Carp)
6ee2e5b
BuildRequires:	perl(constant)
6ee2e5b
BuildRequires:	perl(Exporter)
ae5906c
BuildRequires:	perl(Scalar::Util)
ae5906c
BuildRequires:	perl(strict)
ae5906c
BuildRequires:	perl(UNIVERSAL)
ae5906c
BuildRequires:	perl(warnings)
ae5906c
BuildRequires:	perl(XSLoader)
ae5906c
# Test Suite
ae5906c
BuildRequires:	perl(File::Path)
e1c9d3e
BuildRequires:	perl(Test::More)
6fad50f
%if %{with perl_Compress_Raw_Lzma_enables_optional_test}
b410b7d
# Optional Tests
b410b7d
BuildRequires:	perl(Test::CPAN::Meta)
b410b7d
BuildRequires:	perl(Test::CPAN::Meta::JSON)
6ee2e5b
BuildRequires:	perl(Test::NoWarnings)
ae5906c
BuildRequires:	perl(Test::Pod) >= 1.00
efcdbf6
BuildRequires:	xz
6fad50f
%endif
ae5906c
# Runtime
c06514d
Requires:	perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
0282376
Requires:	perl(XSLoader)
f106dc7
# Built-against version is embedded in module, so we have a strict version dependency
f106dc7
Requires:	xz-libs%{?_isa} = %((pkg-config --modversion liblzma 2>/dev/null || echo 0) | tr -dc '[0-9.]')
d9e74bb
d9e74bb
# Don't "provide" private Perl libs
d9e74bb
%{?perl_default_filter}
d9e74bb
d9e74bb
%description
d9e74bb
This module provides a Perl interface to the lzma compression library.
d9e74bb
It is used by IO::Compress::Lzma.
d9e74bb
d9e74bb
%prep
d9e74bb
%setup -q -n Compress-Raw-Lzma-%{version}
2e916a6
aaef409
# Remove bundled test modules
aaef409
rm -rv t/Test/
e1c9d3e
perl -i -ne 'print $_ unless m{^t/Test/}' MANIFEST
d9e74bb
d9e74bb
%build
aaef409
perl Makefile.PL \
aaef409
  INSTALLDIRS=vendor \
aaef409
  NO_PACKLIST=1 \
aaef409
  NO_PERLLOCAL=1 \
aaef409
  OPTIMIZE="%{optflags}"
aaef409
%{make_build}
d9e74bb
d9e74bb
%install
aaef409
%{make_install}
c5c09bf
find %{buildroot} -type f -name '*.bs' -empty -delete
c5c09bf
%{_fixperms} -c %{buildroot}
d9e74bb
d9e74bb
%check
d9e74bb
make test
d9e74bb
d9e74bb
%files
5e5de17
%doc Changes README
d9e74bb
%{perl_vendorarch}/auto/Compress/
b5b6157
%{perl_vendorarch}/Compress/
ae5906c
%{_mandir}/man3/Compress::Raw::Lzma.3*
d9e74bb
d9e74bb
%changelog
ef6aecb
* Sat Feb 20 2021 Paul Howarth <paul@city-fan.org> - 2.101-1
ef6aecb
- Update to 2.101 (no changes)
ef6aecb
623eb20
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.100-2
623eb20
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
623eb20
41baf6c
* Thu Jan  7 2021 Paul Howarth <paul@city-fan.org> - 2.100-1
41baf6c
- Update to 2.100
41baf6c
  - Expose liblzma's 'preset_dict' feature
41baf6c
  - Trim whitespace
41baf6c
81f898f
* Sat Aug  1 2020 Paul Howarth <paul@city-fan.org> - 2.096-1
81f898f
- Update to 2.096 (no changes)
81f898f
1f2ae01
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.095-2
1f2ae01
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
1f2ae01
aaef409
* Tue Jul 21 2020 Paul Howarth <paul@city-fan.org> - 2.095-1
aaef409
- Update to 2.095 (no changes)
aaef409
- Modernize spec using %%{make_build} and %%{make_install}
aaef409
0582eab
* Mon Jul 13 2020 Paul Howarth <paul@city-fan.org> - 2.094-1
0582eab
- Update to 2.094
0582eab
  - Fix issue with Append mode and SvOOK (GH#4)
0582eab
173c9fa
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.093-5
173c9fa
- Perl 5.32 rebuild
173c9fa
2e916a6
* Mon Mar 30 2020 Paul Howarth <paul@city-fan.org> - 2.093-4
2e916a6
- Rebuild for xz 5.2.5
2e916a6
e1c9d3e
* Fri Feb 14 2020 Petr Pisar <ppisar@redhat.com> - 2.093-3
e1c9d3e
- Unbundle test dependencies
e1c9d3e
e26c78a
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.093-2
e26c78a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
e26c78a
44996fa
* Sun Dec  8 2019 Paul Howarth <paul@city-fan.org> - 2.093-1
44996fa
- Update to 2.093
44996fa
  - Lzma.xs: Add allocator to lzma_properties_decode (GH#2)
44996fa
b3c5c52
* Mon Dec  2 2019 Paul Howarth <paul@city-fan.org> - 2.092-1
b3c5c52
- Update to 2.092
b3c5c52
  - Use lzma_allocator (GH#2)
b3c5c52
8bc5396
* Sun Nov 24 2019 Paul Howarth <paul@city-fan.org> - 2.091-1
8bc5396
- Update to 2.091
8bc5396
  - More updates for memory leak in raw_decoder (GH#1)
8bc5396
  - Silence compiler warning
8bc5396
721f1e6
* Sun Nov 10 2019 Paul Howarth <paul@city-fan.org> - 2.090-1
721f1e6
- Update to 2.090
721f1e6
  - Fix memory leak in raw_decoder (GH#1)
721f1e6
36b6439
* Sun Nov  3 2019 Paul Howarth <paul@city-fan.org> - 2.089-1
36b6439
- Update to 2.089 (no changes)
36b6439
95a886d
* Sun Nov  3 2019 Paul Howarth <paul@city-fan.org> - 2.088-1
95a886d
- Update to 2.088
95a886d
  - Add support details in documentation
95a886d
2d87371
* Mon Aug 12 2019 Paul Howarth <paul@city-fan.org> - 2.087-1
2d87371
- Update to 2.087 (no changes)
2d87371
8e7a4c2
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.086-3
8e7a4c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
8e7a4c2
abf13c1
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.086-2
abf13c1
- Perl 5.30 rebuild
abf13c1
b410b7d
* Mon Apr  1 2019 Paul Howarth <paul@city-fan.org> - 2.086-1
b410b7d
- Update to 2.086
b410b7d
  - Moved source to github: https://github.com/pmqs/Compress-Raw-Lzma
b410b7d
  - Add META_MERGE to Makefile.PL
b410b7d
  - Added meta-json.t and meta-yaml.t
b410b7d
7980fbc
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.085-2
7980fbc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
7980fbc
7383c96
* Sun Jan 13 2019 Paul Howarth <paul@city-fan.org> - 2.085-1
7383c96
- Update to 2.085
7383c96
  - Test harness can use a lot of memory; on systems with small memory,
7383c96
    t/050interop-xz.t can fail, so free memory before invoking xz
7383c96
    (CPAN RT#128194)
7383c96
b433507
* Mon Jan  7 2019 Paul Howarth <paul@city-fan.org> - 2.084-1
b433507
- Update to 2.084 (no changes)
b433507
a044c77
* Wed Jan  2 2019 Paul Howarth <paul@city-fan.org> - 2.083-1
a044c77
- Update to 2.083 (no changes)
a044c77
- Drop legacy Group: tag
a044c77
f68eb46
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.082-4
f68eb46
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
f68eb46
ed4e183
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.082-3
ed4e183
- Perl 5.28 rebuild
ed4e183
4d28116
* Sat May 12 2018 Paul Howarth <paul@city-fan.org> - 2.082-2
4d28116
- Rebuild for xz 5.2.4 in Fedora 28 onwards
4d28116
00a8180
* Mon Apr 16 2018 Paul Howarth <paul@city-fan.org> - 2.082-1
00a8180
- Update to 2.082
00a8180
  - README: Document clash with older version of liblzma (CPAN RT#125046)
00a8180
  - Lzma.pm: Fix typo in pod (CPAN RT#125093)
00a8180
08707d8
* Mon Apr  9 2018 Paul Howarth <paul@city-fan.org> - 2.081-1
08707d8
- Update to 2.081
08707d8
  - Previous release used $^W instead of use warnings - fixed
08707d8
32c9683
* Wed Apr  4 2018 Paul Howarth <paul@city-fan.org> - 2.080-1
32c9683
- Update to 2.080 (no changes)
32c9683
16305f2
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.074-5
16305f2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
16305f2
eac39db
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.074-4
eac39db
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
eac39db
35a3b1c
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.074-3
35a3b1c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
35a3b1c
31d2115
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.074-2
31d2115
- Perl 5.26 rebuild
31d2115
c6609ae
* Mon Feb 20 2017 Paul Howarth <paul@city-fan.org> - 2.074-1
c6609ae
- Update to 2.074
c6609ae
  - Lzma.xs: comment out unused variables and remove C++-ism (CPAN RT#120272)
c6609ae
  - Make failure when LZMA_VERSION != lzma_version_number more explicit
c6609ae
  - Added interface to LZMA_VERSION and LZMA_VERSION_STRING
c6609ae
ffde1fa
* Mon Feb 13 2017 Paul Howarth <paul@city-fan.org> - 2.072-1
ffde1fa
- Update to 2.072
ffde1fa
  - Fix for Makefile.PL depending on . in @INC (CPAN RT#120084)
ffde1fa
  - Use of Compress::Raw::Lzma::RawDecoder failed with large amount of data
ffde1fa
    (CPAN RT#105460)
ffde1fa
  - AppendOutput for "encode" methods said default was 1; it is actually 0
ffde1fa
6b45815
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.070-3
6b45815
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
6b45815
0896902
* Mon Jan  2 2017 Paul Howarth <paul@city-fan.org> - 2.070-2
0896902
- Rebuild for xz-5.2.3
0896902
c5c09bf
* Thu Dec 29 2016 Paul Howarth <paul@city-fan.org> - 2.070-1
c5c09bf
- Update to 2.070
c5c09bf
  - Fix wrong FLAG_APPEND_OUTPUT logic (CPAN RT#119207)
c5c09bf
- Simplify find commands using -empty and -delete
c5c09bf
1ac3656
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.069-4
1ac3656
- Perl 5.24 rebuild
1ac3656
3bc3b50
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.069-3
3bc3b50
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
3bc3b50
74974a8
* Tue Sep 29 2015 Paul Howarth <paul@city-fan.org> - 2.069-2
74974a8
- Rebuild for xz-5.2.2
74974a8
f7103c7
* Sun Sep 27 2015 Paul Howarth <paul@city-fan.org> - 2.069-1
f7103c7
- Update to 2.069 (no changes)
f7103c7
1a5f3e3
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.068-5
1a5f3e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1a5f3e3
b811b1a
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.068-4
b811b1a
- Perl 5.22 rebuild
b811b1a
eab644c
* Fri Feb 27 2015 Paul Howarth <paul@city-fan.org> - 2.068-3
eab644c
- Rebuild for xz-5.2.1 in Rawhide
eab644c
261beec
* Tue Jan  6 2015 Paul Howarth <paul@city-fan.org> - 2.068-2
261beec
- Rebuild for xz-5.2.0 in Rawhide (#1179255)
261beec
da5ac37
* Wed Dec 24 2014 Paul Howarth <paul@city-fan.org> - 2.068-1
da5ac37
- Update to 2.068 (no changes)
da5ac37
ae5906c
* Tue Dec  9 2014 Paul Howarth <paul@city-fan.org> - 2.067-1
ae5906c
- Update to 2.067 (no changes)
ae5906c
- Classify buildreqs by usage
ae5906c
efcdbf6
* Mon Sep 22 2014 Paul Howarth <paul@city-fan.org> - 2.066-1
efcdbf6
- Update to 2.066 (no changes)
efcdbf6
b29828f
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.064-4
b29828f
- Perl 5.20 rebuild
b29828f
a194466
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.064-3
a194466
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
a194466
9c4150c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.064-2
9c4150c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
9c4150c
55fffdd
* Sun Feb  2 2014 Paul Howarth <paul@city-fan.org> - 2.064-1
55fffdd
- Update to 2.064
55fffdd
  - Handle non-PVs better (CPAN RT#91558)
55fffdd
9c7a406
* Sun Nov  3 2013 Paul Howarth <paul@city-fan.org> - 2.063-1
9c7a406
- Update to 2.063 (no changes)
9c7a406
1cb535b
* Mon Aug 12 2013 Paul Howarth <paul@city-fan.org> - 2.062-1
1cb535b
- Update to 2.062
1cb535b
  - Fix typos (CPAN RT#86418)
1cb535b
48b3cbc
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.061-3
48b3cbc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
48b3cbc
ccf309b
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 2.061-2
ccf309b
- Perl 5.18 rebuild
ccf309b
1fefe20
* Mon May 27 2013 Paul Howarth <paul@city-fan.org> - 2.061-1
1fefe20
- Update to 2.061
1fefe20
  - Silence compiler warning by making 2nd parameter to DispStream a const char*
1fefe20
38f53aa
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.060-2
38f53aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
38f53aa
c4b7779
* Tue Jan  8 2013 Paul Howarth <paul@city-fan.org> - 2.060-1
c4b7779
- Update to 2.060 (no changes)
c4b7779
6315882
* Sun Nov 25 2012 Paul Howarth <paul@city-fan.org> - 2.059-1
6315882
- Update to 2.059
6315882
  - Copy-on-write support
6315882
8684355
* Tue Nov 13 2012 Paul Howarth <paul@city-fan.org> - 2.058-1
8684355
- Update to 2.058
8684355
  - Update to ppport.h that includes SvPV_nomg_nolen
8684355
  - Added PERL_NO_GET_CONTEXT
8684355
0282376
* Mon Aug  6 2012 Paul Howarth <paul@city-fan.org> - 2.055-1
0282376
- Update to 2.055
0282376
  - Fix misuse of magic in API (CPAN RT#78080)
0282376
12206d4
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.052-5
12206d4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
12206d4
4c421d0
* Mon Jul 09 2012 Petr Pisar <ppisar@redhat.com> - 2.052-4
4c421d0
- Perl 5.16 rebuild
4c421d0
6ee2e5b
* Thu Jul  5 2012 Paul Howarth <paul@city-fan.org> - 2.052-3
6ee2e5b
- Rebuild for xz 5.1.2alpha in Rawhide
6ee2e5b
- BR: perl(AutoLoader), perl(constant), perl(Exporter), perl(lib) and
6ee2e5b
  perl(Test::NoWarnings)
6ee2e5b
- BR:/R: perl(XSLoader), the module's preferred dynamic object loader
6ee2e5b
c86b7f7
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 2.052-2
c86b7f7
- Perl 5.16 rebuild
c86b7f7
dd5433e
* Sun Apr 29 2012 Paul Howarth <paul@city-fan.org> - 2.052-1
dd5433e
- Update to 2.052 (fix to allow building with C++)
dd5433e
- Don't need to remove empty directories from buildroot
dd5433e
5e5de17
* Sat Feb 18 2012 Paul Howarth <paul@city-fan.org> - 2.049-1
5e5de17
- Update to 2.049 (README wasn't included in the distribution)
5e5de17
- Drop redundant %%defattr
5e5de17
0f54bd4
* Sun Jan 29 2012 Paul Howarth <paul@city-fan.org> - 2.048-1
0f54bd4
- Update to 2.048 (set minimum Perl version to 5.6)
0f54bd4
c5f5abc
* Tue Jan 10 2012 Paul Howarth <paul@city-fan.org> - 2.045-2
c5f5abc
- Rebuild for gcc 4.7 in Rawhide
c5f5abc
b5b6157
* Sun Dec  4 2011 Paul Howarth <paul@city-fan.org> - 2.045-1
b5b6157
- Update to 2.045
b5b6157
  - Moved FAQ.pod to IO::Compress
b5b6157
192e2c0
* Sun Dec  4 2011 Paul Howarth <paul@city-fan.org> - 2.044-1
192e2c0
- Update to 2.044
192e2c0
  - Moved FAQ.pod under the lib directory so it can get installed
192e2c0
80c3c9c
* Mon Nov 21 2011 Paul Howarth <paul@city-fan.org> - 2.043-1
80c3c9c
- Update to 2.043 (no changes)
80c3c9c
6c2388b
* Fri Nov 18 2011 Paul Howarth <paul@city-fan.org> - 2.042-1
6c2388b
- Update to 2.042 (no changes)
6c2388b
c06514d
* Sat Oct 29 2011 Paul Howarth <paul@city-fan.org> - 2.040-1
c06514d
- Update to 2.040
c06514d
  - Croak if attempt to freeze/thaw compression object (CPAN RT#69985)
c06514d
- BR: perl(Carp)
c06514d
500fa0b
* Sun Oct 16 2011 Jindrich Novy <jnovy@redhat.com> - 2.037-3
c06514d
- Rebuild against new xz
500fa0b
4ceb80c
* Wed Jun 22 2011 Paul Howarth <paul@city-fan.org> - 2.037-2
4ceb80c
- Perl mass rebuild
4ceb80c
23d1e9b
* Wed Jun 22 2011 Paul Howarth <paul@city-fan.org> - 2.037-1
23d1e9b
- Update to 2.037 (no changes)
23d1e9b
ec79372
* Mon Jun 20 2011 Paul Howarth <paul@city-fan.org> - 2.036-2
ec79372
- Perl mass rebuild
ec79372
12e7f99
* Mon Jun 20 2011 Paul Howarth <paul@city-fan.org> - 2.036-1
12e7f99
- Update to 2.036
12e7f99
  - A number of changes to facilitate adding LZMA support to
12e7f99
    IO::Compress::Zip : IO::Uncompress::Unzip:
12e7f99
    - Added preset filters Lzma::Filter::Lzma1::Preset and
12e7f99
      Lzma::Filter::Lzma2::Preset
12e7f99
   - Added forZip option to Compress::Raw::Lzma::Encoder
12e7f99
   - Added properties option to Compress::Raw::Lzma::RawDecoder
12e7f99
859f23c
* Sun Jun 19 2011 Marcela Mašláňová <mmaslano@redhat.com> - 2.035-3
859f23c
- Perl mass rebuild
859f23c
1e5d65f
* Mon May 23 2011 Paul Howarth <paul@city-fan.org> - 2.035-2
1e5d65f
- Rebuild for xz 5.0.3
1e5d65f
6dc9cca
* Sat May  7 2011 Paul Howarth <paul@city-fan.org> - 2.035-1
6dc9cca
- Update to 2.035 (no changes)
6dc9cca
8b85597
* Tue May  3 2011 Paul Howarth <paul@city-fan.org> - 2.034-1
8b85597
- Update to 2.034 (document the change of default MemLimit in 2.033)
8b85597
f15c83f
* Mon Apr  4 2011 Paul Howarth <paul@city-fan.org> - 2.033-4
f15c83f
- Rebuild for xz 5.0.2
f15c83f
f106dc7
* Wed Feb  9 2011 Paul Howarth <paul@city-fan.org> - 2.033-3
f106dc7
- Add explicit version dependency on xz-libs since the version number built
f106dc7
  against is embedded into the module and can cause failures in users of this
f106dc7
  module if they compare build-time and run-time versions of liblzma
f106dc7
46fd541
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.033-2
46fd541
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
46fd541
f9dd5e6
* Tue Jan 11 2011 Paul Howarth <paul@city-fan.org> - 2.033-1
f9dd5e6
- Update to 2.033 (changed default MemLimit from 128 MB to unlimited)
f9dd5e6
32ff2c7
* Fri Jan  7 2011 Paul Howarth <paul@city-fan.org> - 2.032-1
32ff2c7
- Update to 2.032 (no changes)
32ff2c7
2f151c6
* Wed Oct 27 2010 Paul Howarth <paul@city-fan.org> - 2.031-1
2f151c6
- Update to 2.031
2f151c6
  - Changed to build with XZ 5.0.0
2f151c6
  - Dropped symbolic constants provided by subblock.h (CPAN RT#62461)
2f151c6
- Drop xz 5.x patch, no longer needed
2f151c6
927c8a4
* Tue Oct 26 2010 Paul Howarth <paul@city-fan.org> - 2.030-2
927c8a4
- Patch out subfilter constants, not supported in xz 5.x (CPAN RT#62461)
927c8a4
d05656a
* Mon Jul 26 2010 Paul Howarth <paul@city-fan.org> - 2.030-1
d05656a
- Update to 2.030 (no changes)
d05656a
0b1c4b4
* Fri May 14 2010 Paul Howarth <paul@city-fan.org> - 2.029-3
0b1c4b4
- Rebuild for perl 5.12.0
0b1c4b4
d9e74bb
* Tue May 11 2010 Paul Howarth <paul@city-fan.org> - 2.029-2
d9e74bb
- Drop redundant buildroot tag
d9e74bb
d9e74bb
* Sat May  8 2010 Paul Howarth <paul@city-fan.org> - 2.029-1
d9e74bb
- Update to 2.029 (test harness copes with memory shortage)
d9e74bb
d9e74bb
* Mon May  3 2010 Paul Howarth <paul@city-fan.org> - 2.028-1
d9e74bb
- Update to 2.028
d9e74bb
  - Remove 'Persistent' option from  Lzma::Filter::Lzma (CPAN RT#57080)
d9e74bb
  - Silence a pile of compiler warnings
d9e74bb
- Drop patch for CPAN RT#57080, no longer needed
d9e74bb
d9e74bb
* Thu Apr 29 2010 Paul Howarth <paul@city-fan.org> - 2.027-1
d9e74bb
- Initial RPM version