Blame SPECS/perl-IO-Compress-Lzma.spec

43ccc5
# Perform optional tests
43ccc5
%if 0%{?rhel} >= 9
43ccc5
%bcond_with perl_IO_Compress_Lzma_enables_optional_test
43ccc5
%else
43ccc5
%bcond_without perl_IO_Compress_Lzma_enables_optional_test
43ccc5
%endif
43ccc5
43ccc5
Name:		perl-IO-Compress-Lzma
43ccc5
Version:	2.101
43ccc5
Release:	4%{?dist}
43ccc5
Summary:	Read and write lzma compressed data
43ccc5
License:	GPL+ or Artistic
43ccc5
URL:		https://metacpan.org/release/IO-Compress-Lzma
43ccc5
Source0:	https://cpan.metacpan.org/modules/by-module/IO/IO-Compress-Lzma-%{version}.tar.gz
43ccc5
BuildArch:	noarch
43ccc5
# Module Build
43ccc5
BuildRequires:	coreutils
43ccc5
BuildRequires:	findutils
43ccc5
BuildRequires:	make
43ccc5
BuildRequires:	perl-generators
43ccc5
BuildRequires:	perl-interpreter
43ccc5
BuildRequires:	perl(Config)
43ccc5
BuildRequires:	perl(ExtUtils::MakeMaker) >= 5.16
43ccc5
BuildRequires:	perl(File::Copy)
43ccc5
BuildRequires:	perl(File::Spec::Functions)
43ccc5
BuildRequires:	perl(lib)
43ccc5
# Module Runtime
43ccc5
BuildRequires:	perl(bytes)
43ccc5
BuildRequires:	perl(Compress::Raw::Lzma) >= %{version}
43ccc5
BuildRequires:	perl(constant)
43ccc5
BuildRequires:	perl(Exporter)
43ccc5
BuildRequires:	perl(IO::Compress::Base) >= %{version}
43ccc5
BuildRequires:	perl(IO::Compress::Base::Common) >= %{version}
43ccc5
BuildRequires:	perl(IO::Uncompress::Base) >= %{version}
43ccc5
BuildRequires:	perl(strict)
43ccc5
BuildRequires:	perl(warnings)
43ccc5
# Test Suite
43ccc5
BuildRequires:	perl(Carp)
43ccc5
BuildRequires:	perl(Compress::Raw::Zlib) >= 2
43ccc5
BuildRequires:	perl(File::Path)
43ccc5
BuildRequires:	perl(File::Spec)
43ccc5
BuildRequires:	perl(File::Temp)
43ccc5
BuildRequires:	perl(IO::Compress::Zip)
43ccc5
BuildRequires:	perl(IO::File)
43ccc5
BuildRequires:	perl(IO::Handle)
43ccc5
BuildRequires:	perl(IO::Uncompress::AnyUncompress)
43ccc5
BuildRequires:	perl(IO::Uncompress::Unzip)
43ccc5
BuildRequires:	perl(List::Util)
43ccc5
BuildRequires:	perl(Test::More)
43ccc5
BuildRequires:	xz, xz-lzma-compat
43ccc5
%if %{with perl_IO_Compress_Lzma_enables_optional_test}
43ccc5
# Optional Tests
43ccc5
BuildRequires:	lzip
43ccc5
BuildRequires:	perl(Encode)
43ccc5
BuildRequires:	perl(IO::String)
43ccc5
BuildRequires:	perl(Test::CPAN::Meta)
43ccc5
BuildRequires:	perl(Test::CPAN::Meta::JSON)
43ccc5
BuildRequires:	perl(Test::NoWarnings)
43ccc5
BuildRequires:	perl(Test::Pod) >= 1.00
43ccc5
BuildRequires:	/usr/bin/7z
43ccc5
%endif
43ccc5
# Runtime
43ccc5
Requires:	perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
43ccc5
43ccc5
%description
43ccc5
This distribution provides a Perl interface to allow reading and writing of
43ccc5
compressed data created with the lzma library.
43ccc5
43ccc5
%prep
43ccc5
%setup -q -n IO-Compress-Lzma-%{version}
43ccc5
43ccc5
# Remove bundled test modules
43ccc5
rm -rv t/Test/
43ccc5
perl -i -ne 'print $_ unless m{^t/Test/}' MANIFEST
43ccc5
43ccc5
# Remove spurious exec permissions
43ccc5
chmod -c -x examples/*
43ccc5
43ccc5
# Fix shellbangs in examples
43ccc5
perl -pi -e 's|^#!/usr/local/bin/perl\b|#!/usr/bin/perl|' \
43ccc5
	examples/lzcat examples/lzstream examples/xzcat examples/xzstream
43ccc5
43ccc5
%build
43ccc5
perl Makefile.PL INSTALLDIRS=vendor
43ccc5
make %{?_smp_mflags}
43ccc5
43ccc5
%install
43ccc5
make pure_install DESTDIR=%{buildroot}
43ccc5
find %{buildroot} -type f -name .packlist -delete
43ccc5
%{_fixperms} -c %{buildroot}
43ccc5
43ccc5
%check
43ccc5
make test COMPRESS_ZLIB_RUN_MOST=1
43ccc5
43ccc5
%files
43ccc5
%doc Changes README examples/*
43ccc5
%{perl_vendorlib}/IO/
43ccc5
%{_mandir}/man3/IO::Compress::Lzip.3*
43ccc5
%{_mandir}/man3/IO::Compress::Lzma.3*
43ccc5
%{_mandir}/man3/IO::Compress::Xz.3*
43ccc5
%{_mandir}/man3/IO::Uncompress::UnLzip.3*
43ccc5
%{_mandir}/man3/IO::Uncompress::UnLzma.3*
43ccc5
%{_mandir}/man3/IO::Uncompress::UnXz.3*
43ccc5
43ccc5
%changelog
43ccc5
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.101-4
43ccc5
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
43ccc5
  Related: rhbz#1991688
43ccc5
43ccc5
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.101-3
43ccc5
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
43ccc5
43ccc5
* Fri Mar 19 2021 Jitka Plesnikova <jplesnik@redhat.com> - 2.101-2
43ccc5
- Disable optional tests on ELN
43ccc5
43ccc5
* Sat Feb 20 2021 Paul Howarth <paul@city-fan.org> - 2.101-1
43ccc5
- Update to 2.101 (no changes)
43ccc5
43ccc5
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.100-2
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
43ccc5
43ccc5
* Thu Jan  7 2021 Paul Howarth <paul@city-fan.org> - 2.100-1
43ccc5
- Update to 2.100
43ccc5
  - Trim whitespace
43ccc5
  - Avoid indirect calls
43ccc5
  - Fix typo
43ccc5
43ccc5
* Sat Aug  1 2020 Paul Howarth <paul@city-fan.org> - 2.096-1
43ccc5
- Update to 2.096
43ccc5
  - Add test for Zip with XZ compression
43ccc5
43ccc5
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.095-2
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
43ccc5
43ccc5
* Tue Jul 21 2020 Paul Howarth <paul@city-fan.org> - 2.095-1
43ccc5
- Update to 2.095 (no changes)
43ccc5
43ccc5
* Tue Jul 14 2020 Paul Howarth <paul@city-fan.org> - 2.094-1
43ccc5
- Update to 2.094 (no changes)
43ccc5
43ccc5
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.093-4
43ccc5
- Perl 5.32 rebuild
43ccc5
43ccc5
* Fri Feb 14 2020 Petr Pisar <ppisar@redhat.com> - 2.093-3
43ccc5
- Unbundle test dependencies
43ccc5
43ccc5
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.093-2
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
43ccc5
43ccc5
* Sun Dec  8 2019 Paul Howarth <paul@city-fan.org> - 2.093-1
43ccc5
- Update to 2.093
43ccc5
  - Fixed minor typo in the pod (GH#3)
43ccc5
43ccc5
* Thu Dec  5 2019 Paul Howarth <paul@city-fan.org> - 2.092-1
43ccc5
- Update to 2.092
43ccc5
  - t/oooprereq.t: Fix list of dumped packages
43ccc5
  - t/oooprereq.t: Dump version data
43ccc5
43ccc5
* Sun Nov 24 2019 Paul Howarth <paul@city-fan.org> - 2.091-1
43ccc5
- Update to 2.091 (no changes)
43ccc5
43ccc5
* Sun Nov 10 2019 Paul Howarth <paul@city-fan.org> - 2.090-1
43ccc5
- Update to 2.090
43ccc5
  - Fix typo: change lzstrem to xzstream
43ccc5
43ccc5
* Sun Nov  3 2019 Paul Howarth <paul@city-fan.org> - 2.089-1
43ccc5
- Update to 2.089 (no changes)
43ccc5
43ccc5
* Sun Nov  3 2019 Paul Howarth <paul@city-fan.org> - 2.088-1
43ccc5
- Update to 2.088
43ccc5
  - Add support details to documentation
43ccc5
  - Beef up reset for zip use-case
43ccc5
  - Remove unnecessary commented code
43ccc5
  - Documentation updates
43ccc5
43ccc5
* Mon Aug 12 2019 Paul Howarth <paul@city-fan.org> - 2.087-1
43ccc5
- Update to 2.087 (no changes)
43ccc5
43ccc5
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.086-3
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
43ccc5
43ccc5
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.086-2
43ccc5
- Perl 5.30 rebuild
43ccc5
43ccc5
* Mon Apr  1 2019 Paul Howarth <paul@city-fan.org> - 2.086-1
43ccc5
- Update to 2.086
43ccc5
  - Moved source to github: https://github.com/pmqs/IO-Compress-Lzma
43ccc5
  - Add META_MERGE to Makefile.PL
43ccc5
  - Added meta-json.t and meta-yaml.t
43ccc5
43ccc5
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.084-2
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
43ccc5
43ccc5
* Mon Jan  7 2019 Paul Howarth <paul@city-fan.org> - 2.084-1
43ccc5
- Update to 2.084
43ccc5
  - Added support for lzip with IO::Compress::Lzip and
43ccc5
    IO::Uncompress::UnLzip
43ccc5
43ccc5
* Wed Jan  2 2019 Paul Howarth <paul@city-fan.org> - 2.083-1
43ccc5
- Update to 2.083 (no changes)
43ccc5
- Drop legacy Group: tag
43ccc5
43ccc5
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.081-3
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
43ccc5
43ccc5
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.081-2
43ccc5
- Perl 5.28 rebuild
43ccc5
43ccc5
* Mon Apr  9 2018 Paul Howarth <paul@city-fan.org> - 2.081-1
43ccc5
- Update to 2.081
43ccc5
  - Previous release used $^W instead of use warnings - fixed
43ccc5
43ccc5
* Wed Apr  4 2018 Paul Howarth <paul@city-fan.org> - 2.080-1
43ccc5
- Update to 2.080 (no changes)
43ccc5
43ccc5
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.074-4
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
43ccc5
43ccc5
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.074-3
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
43ccc5
43ccc5
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.074-2
43ccc5
- Perl 5.26 rebuild
43ccc5
43ccc5
* Mon Feb 20 2017 Paul Howarth <paul@city-fan.org> - 2.074-1
43ccc5
- Update to 2.074
43ccc5
  - ISA fixes for c3 (CPAN RT#120239)
43ccc5
43ccc5
* Mon Feb 13 2017 Paul Howarth <paul@city-fan.org> - 2.072-1
43ccc5
- Update to 2.072
43ccc5
  - Fix for Makefile.PL depending on . in @INC (CPAN RT#120084)
43ccc5
- Run additional tests by specifying COMPRESS_ZLIB_RUN_MOST
43ccc5
43ccc5
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.070-2
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
43ccc5
43ccc5
* Thu Dec 29 2016 Paul Howarth <paul@city-fan.org> - 2.070-1
43ccc5
- Update to 2.070 (no changes)
43ccc5
- Simplify find command using -delete
43ccc5
43ccc5
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.069-3
43ccc5
- Perl 5.24 rebuild
43ccc5
43ccc5
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.069-2
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
43ccc5
43ccc5
* Sun Sep 27 2015 Paul Howarth <paul@city-fan.org> - 2.069-1
43ccc5
- Update to 2.069 (no changes)
43ccc5
43ccc5
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.068-3
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
43ccc5
43ccc5
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.068-2
43ccc5
- Perl 5.22 rebuild
43ccc5
43ccc5
* Wed Dec 24 2014 Paul Howarth <paul@city-fan.org> - 2.068-1
43ccc5
- Update to 2.068 (no changes)
43ccc5
43ccc5
* Tue Dec  9 2014 Paul Howarth <paul@city-fan.org> - 2.067-1
43ccc5
- Update to 2.067 (no changes)
43ccc5
- Classify buildreqs by usage
43ccc5
43ccc5
* Mon Sep 22 2014 Paul Howarth <paul@city-fan.org> - 2.066-1
43ccc5
- Update to 2.066 (no changes)
43ccc5
43ccc5
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.064-3
43ccc5
- Perl 5.20 rebuild
43ccc5
43ccc5
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.064-2
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
43ccc5
43ccc5
* Sun Feb  2 2014 Paul Howarth <paul@city-fan.org> - 2.064-1
43ccc5
- Update to 2.064 (no changes)
43ccc5
43ccc5
* Sun Nov  3 2013 Paul Howarth <paul@city-fan.org> - 2.063-1
43ccc5
- Update to 2.063 (no changes)
43ccc5
43ccc5
* Mon Aug 12 2013 Paul Howarth <paul@city-fan.org> - 2.062-1
43ccc5
- Update to 2.062
43ccc5
  - Typo fixes (CPAN RT#86578)
43ccc5
43ccc5
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.061-3
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
43ccc5
43ccc5
* Sat Jul 20 2013 Petr Pisar <ppisar@redhat.com> - 2.061-2
43ccc5
- Perl 5.18 rebuild
43ccc5
43ccc5
* Mon May 27 2013 Paul Howarth <paul@city-fan.org> - 2.061-1
43ccc5
- Update to 2.061
43ccc5
  - Fix IO::Uncompress::UnXz v2.060 memLimit option bug (CPAN RT#84966)
43ccc5
43ccc5
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.060-2
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
43ccc5
43ccc5
* Tue Jan  8 2013 Paul Howarth <paul@city-fan.org> - 2.060-1
43ccc5
- Update to 2.060 (no changes)
43ccc5
43ccc5
* Sun Dec 16 2012 Paul Howarth <paul@city-fan.org> - 2.059-1
43ccc5
- Update to 2.059 (no changes)
43ccc5
43ccc5
* Tue Nov 13 2012 Paul Howarth <paul@city-fan.org> - 2.058-1
43ccc5
- Update to 2.058 (general performance improvements)
43ccc5
43ccc5
* Mon Aug  6 2012 Paul Howarth <paul@city-fan.org> - 2.055-1
43ccc5
- Update to 2.055 (no changes)
43ccc5
- BR: perl(Carp), perl(constant), perl(File::Spec), perl(IO::Handle) and
43ccc5
  perl(lib)
43ccc5
43ccc5
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.052-3
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
43ccc5
43ccc5
* Tue Jun 12 2012 Petr Pisar <ppisar@redhat.com> - 2.052-2
43ccc5
- Perl 5.16 rebuild
43ccc5
43ccc5
* Sun Apr 29 2012 Paul Howarth <paul@city-fan.org> - 2.052-1
43ccc5
- Update to 2.052 (no changes)
43ccc5
- Don't need to remove empty directories from buildroot
43ccc5
- Package examples
43ccc5
- Drop %%defattr, redundant since rpm 4.4
43ccc5
43ccc5
* Sat Feb 18 2012 Paul Howarth <paul@city-fan.org> - 2.049-1
43ccc5
- Update to 2.049 (no changes)
43ccc5
43ccc5
* Sun Jan 29 2012 Paul Howarth <paul@city-fan.org> - 2.048-1
43ccc5
- Update to 2.048
43ccc5
  - Set minimum Perl version to 5.6
43ccc5
43ccc5
* Tue Jan 10 2012 Paul Howarth <paul@city-fan.org> - 2.045-2
43ccc5
- Fedora 17 mass rebuild
43ccc5
43ccc5
* Sun Dec  4 2011 Paul Howarth <paul@city-fan.org> - 2.045-1
43ccc5
- Update to 2.045
43ccc5
  - Moved FAQ.pod to IO::Compress
43ccc5
43ccc5
* Sun Dec  4 2011 Paul Howarth <paul@city-fan.org> - 2.044-1
43ccc5
- Update to 2.044
43ccc5
  - Moved FAQ.pod under the lib directory so it can get installed
43ccc5
43ccc5
* Mon Nov 21 2011 Paul Howarth <paul@city-fan.org> - 2.043-1
43ccc5
- Update to 2.043 (no changes)
43ccc5
43ccc5
* Fri Nov 18 2011 Paul Howarth <paul@city-fan.org> - 2.042-1
43ccc5
- Update to 2.042 (no changes)
43ccc5
- Resync versioned dependencies on IO::Compress::Base and Compress::Raw::Lzma
43ccc5
43ccc5
* Sat Oct 29 2011 Paul Howarth <paul@city-fan.org> - 2.041-1
43ccc5
- Update to 2.041
43ccc5
  - Remove debugging line in t/001lzma.t that writes to /tmp (CPAN RT#72023)
43ccc5
- Update version requirements for IO::Compress and Compress::Raw::Lzma
43ccc5
43ccc5
* Sat Oct 29 2011 Paul Howarth <paul@city-fan.org> - 2.040-1
43ccc5
- Update to 2.040
43ccc5
  - Fixed uncompression issue in IO::Uncompress::UnLzma (CPAN RT#71114)
43ccc5
43ccc5
* Fri Jun 24 2011 Paul Howarth <paul@city-fan.org> - 2.038-2
43ccc5
- Perl mass rebuild
43ccc5
43ccc5
* Fri Jun 24 2011 Paul Howarth <paul@city-fan.org> - 2.038-1
43ccc5
- Update to 2.038
43ccc5
  - Fixed missing SKIP label in t/050interop-zip-lzma.t
43ccc5
- Hard-code version requirements for IO::Compress and Compress::Raw::Lzma
43ccc5
  until the next synchronized release happens
43ccc5
43ccc5
* Wed Jun 22 2011 Paul Howarth <paul@city-fan.org> - 2.037-2
43ccc5
- Perl mass rebuild
43ccc5
43ccc5
* Wed Jun 22 2011 Paul Howarth <paul@city-fan.org> - 2.037-1
43ccc5
- Update to 2.037
43ccc5
  - Handle "Cannot Allocate Memory" issue with Extreme test in
43ccc5
    t/105oneshot-zip-lzma-only.t
43ccc5
43ccc5
* Tue Jun 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 2.036-2
43ccc5
- Perl mass rebuild
43ccc5
43ccc5
* Mon Jun 20 2011 Paul Howarth <paul@city-fan.org> - 2.036-1
43ccc5
- Update to 2.036
43ccc5
  - IO::Compress::Adapter:
43ccc5
    - Added interface to allow creation of LZMA stream for use in a zip file
43ccc5
  - IO::Uncompress::Adapter:
43ccc5
    - Added interface to allow reading of LZMA stream in a zip file
43ccc5
- BR: /usr/bin/7z for additional test coverage
43ccc5
43ccc5
* Sat May  7 2011 Paul Howarth <paul@city-fan.org> - 2.035-1
43ccc5
- Update to 2.035 (fix test failure on Windows - CPAN RT#67931)
43ccc5
43ccc5
* Tue May  3 2011 Paul Howarth <paul@city-fan.org> - 2.034-1
43ccc5
- Update to 2.034 (updates to test harness)
43ccc5
43ccc5
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.033-2
43ccc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
43ccc5
43ccc5
* Tue Jan 11 2011 Paul Howarth <paul@city-fan.org> - 2.033-1
43ccc5
- Update to 2.033 (made 001xz.t more forgiving when the tests run out of memory)
43ccc5
43ccc5
* Fri Jan  7 2011 Paul Howarth <paul@city-fan.org> - 2.032-1
43ccc5
- Update to 2.032 (no changes)
43ccc5
43ccc5
* Fri Dec 17 2010 Marcela Maslanova <mmaslano@redhat.com> - 2.030-2
43ccc5
- Rebuild to fix problems with vendorarch/lib (#661697)
43ccc5
43ccc5
* Mon Jul 26 2010 Paul Howarth <paul@city-fan.org> - 2.030-1
43ccc5
- Update to 2.030 (no changes)
43ccc5
43ccc5
* Tue May 11 2010 Paul Howarth <paul@city-fan.org> - 2.027-2
43ccc5
- Drop redundant buildroot tag
43ccc5
43ccc5
* Thu Apr 29 2010 Paul Howarth <paul@city-fan.org> - 2.027-1
43ccc5
- Initial RPM version