Blame SPECS/perl-Path-Tiny.spec

b9d9b1
# Run optional test
b9d9b1
%if ! (0%{?rhel})
b9d9b1
%bcond_without perl_Path_Tiny_enables_optional_test
b9d9b1
%else
b9d9b1
%bcond_with perl_Path_Tiny_enables_optional_test
b9d9b1
%endif
b9d9b1
b9d9b1
Name:		perl-Path-Tiny
b9d9b1
Version:	0.104
b9d9b1
Release:	5%{?dist}
b9d9b1
Summary:	File path utility
b9d9b1
License:	ASL 2.0
b9d9b1
URL:		http://search.cpan.org/dist/Path-Tiny/
b9d9b1
Source0:	http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Path-Tiny-%{version}.tar.gz
b9d9b1
BuildArch:	noarch
b9d9b1
# Module Build
b9d9b1
BuildRequires:	coreutils
b9d9b1
BuildRequires:	findutils
b9d9b1
BuildRequires:	make
b9d9b1
BuildRequires:	perl-interpreter
b9d9b1
BuildRequires:	perl-generators
b9d9b1
BuildRequires:	perl(ExtUtils::MakeMaker)
b9d9b1
# Module Runtime
b9d9b1
BuildRequires:	perl(Carp)
b9d9b1
BuildRequires:	perl(Config)
b9d9b1
BuildRequires:	perl(constant)
b9d9b1
BuildRequires:	perl(Cwd)
b9d9b1
BuildRequires:	perl(Digest) >= 1.03
b9d9b1
BuildRequires:	perl(Digest::MD5)
b9d9b1
BuildRequires:	perl(Digest::SHA) >= 5.45
b9d9b1
BuildRequires:	perl(Exporter) >= 5.57
b9d9b1
BuildRequires:	perl(Fcntl)
b9d9b1
BuildRequires:	perl(File::Copy)
b9d9b1
BuildRequires:	perl(File::Glob)
b9d9b1
BuildRequires:	perl(File::Path) >= 2.07
b9d9b1
BuildRequires:	perl(File::Spec) >= 0.86
b9d9b1
BuildRequires:	perl(File::stat)
b9d9b1
BuildRequires:	perl(File::Temp) >= 0.19
b9d9b1
BuildRequires:	perl(if)
b9d9b1
BuildRequires:	perl(overload)
b9d9b1
BuildRequires:	perl(strict)
b9d9b1
BuildRequires:	perl(threads)
b9d9b1
BuildRequires:	perl(warnings)
b9d9b1
# Test Suite
b9d9b1
BuildRequires:	perl(blib)
b9d9b1
BuildRequires:	perl(File::Basename)
b9d9b1
BuildRequires:	perl(File::Spec::Functions)
b9d9b1
BuildRequires:	perl(File::Spec::Unix)
b9d9b1
BuildRequires:	perl(File::Temp) >= 0.19
b9d9b1
BuildRequires:	perl(lib)
b9d9b1
BuildRequires:	perl(open)
b9d9b1
BuildRequires:	perl(Test::More) >= 0.96
b9d9b1
%if %{with perl_Path_Tiny_enables_optional_test}
b9d9b1
# Optional Tests
b9d9b1
BuildRequires:	perl(CPAN::Meta) >= 2.120900
b9d9b1
BuildRequires:	perl(CPAN::Meta::Prereqs)
b9d9b1
BuildRequires:	perl(Test::FailWarnings)
b9d9b1
BuildRequires:	perl(Test::MockRandom)
b9d9b1
%endif
b9d9b1
# Runtime
b9d9b1
Requires:	perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
b9d9b1
Requires:	perl(Cwd)
b9d9b1
Requires:	perl(Digest) >= 1.03
b9d9b1
Requires:	perl(Digest::MD5)
b9d9b1
Requires:	perl(Digest::SHA) >= 5.45
b9d9b1
Requires:	perl(Fcntl)
b9d9b1
Requires:	perl(File::Copy)
b9d9b1
Requires:	perl(File::Glob)
b9d9b1
Requires:	perl(File::Path) >= 2.07
b9d9b1
Requires:	perl(File::stat)
b9d9b1
Requires:	perl(File::Temp) >= 0.18
b9d9b1
Requires:	perl(threads)
b9d9b1
b9d9b1
# For performance and consistency
b9d9b1
BuildRequires:	perl(Unicode::UTF8) >= 0.58
b9d9b1
Requires:	perl(Unicode::UTF8) >= 0.58
b9d9b1
b9d9b1
%description
b9d9b1
This module attempts to provide a small, fast utility for working with file
b9d9b1
paths. It is friendlier to use than File::Spec and provides easy access to
b9d9b1
functions from several other core file handling modules.
b9d9b1
b9d9b1
It doesn't attempt to be as full-featured as IO::All or Path::Class, nor does
b9d9b1
it try to work for anything except Unix-like and Win32 platforms. Even then, it
b9d9b1
might break if you try something particularly obscure or tortuous.
b9d9b1
b9d9b1
All paths are forced to have Unix-style forward slashes. Stringifying the
b9d9b1
object gives you back the path (after some clean up).
b9d9b1
b9d9b1
File input/output methods flock handles before reading or writing, as
b9d9b1
appropriate.
b9d9b1
b9d9b1
The *_utf8 methods (slurp_utf8, lines_utf8, etc.) operate in raw mode without
b9d9b1
CRLF translation.
b9d9b1
b9d9b1
%prep
b9d9b1
%setup -q -n Path-Tiny-%{version}
b9d9b1
b9d9b1
%build
b9d9b1
perl Makefile.PL INSTALLDIRS=vendor
b9d9b1
make %{?_smp_mflags}
b9d9b1
b9d9b1
%install
b9d9b1
make pure_install DESTDIR=%{buildroot}
b9d9b1
find %{buildroot} -type f -name .packlist -delete
b9d9b1
%{_fixperms} -c %{buildroot}
b9d9b1
b9d9b1
%check
b9d9b1
make test
b9d9b1
b9d9b1
%files
b9d9b1
%license LICENSE
b9d9b1
%doc Changes CONTRIBUTING.mkdn README
b9d9b1
%{perl_vendorlib}/Path/
b9d9b1
%{_mandir}/man3/Path::Tiny.3*
b9d9b1
b9d9b1
%changelog
b9d9b1
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.104-5
b9d9b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b9d9b1
b9d9b1
* Fri Dec 08 2017 Petr Pisar <ppisar@redhat.com> - 0.104-4
b9d9b1
- Enable Test::MockRandom test
b9d9b1
b9d9b1
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.104-3
b9d9b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b9d9b1
b9d9b1
* Tue Jun 06 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.104-2
b9d9b1
- Perl 5.26 rebuild
b9d9b1
b9d9b1
* Sat Feb 18 2017 Paul Howarth <paul@city-fan.org> - 0.104-1
b9d9b1
- Update to 0.104
b9d9b1
  - The 'absolute' method now always returns an absolute path, even if a user
b9d9b1
    provided a relative path for the base path; the old, odd behavior was
b9d9b1
    documented, but people often don't read docs so the new behavior avoids
b9d9b1
    surprises
b9d9b1
  - Added 'cached_temp' method
b9d9b1
b9d9b1
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.100-2
b9d9b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b9d9b1
b9d9b1
* Sun Jan 15 2017 Paul Howarth <paul@city-fan.org> - 0.100-1
b9d9b1
- Update to 0.100
b9d9b1
  - Fixed tests for eventual removal of '.' from @INC in Perl
b9d9b1
  - Fixed filehandle mode doc typo
b9d9b1
  - Fixed doc typo in relative() that mentioned rel2abs instead of abs2rel
b9d9b1
b9d9b1
* Mon Oct 10 2016 Paul Howarth <paul@city-fan.org> - 0.098-1
b9d9b1
- Update to 0.098
b9d9b1
  - Added 'realpath' option for 'tempfile' and 'tempdir' for situations where
b9d9b1
    an absolute temporary path just isn't enough
b9d9b1
b9d9b1
* Sun Jul  3 2016 Paul Howarth <paul@city-fan.org> - 0.096-1
b9d9b1
- Update to 0.096
b9d9b1
  - Improved method for hiding some modules during tests
b9d9b1
- BR: perl-generators unconditionally
b9d9b1
b9d9b1
* Mon May 23 2016 Paul Howarth <paul@city-fan.org> - 0.094-1
b9d9b1
- Update to 0.094
b9d9b1
  - Path::Tiny will prefer PerlIO::utf8_strict over encoding(UTF-8) if
b9d9b1
    available and Unicode::UTF8 is not installed
b9d9b1
  - The 'touch' method can now set the current time on files that aren't owned,
b9d9b1
    as long as they are writeable
b9d9b1
  - Improved consistency of symlink support inspection; now always looks at
b9d9b1
    $Config{d_symlink}
b9d9b1
  - Skips impossible test on 'msys' platform.
b9d9b1
- BR: perl-generators where possible
b9d9b1
- Drop redundant Group: tag
b9d9b1
b9d9b1
* Mon May 16 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.090-2
b9d9b1
- Perl 5.24 rebuild
b9d9b1
b9d9b1
* Tue May  3 2016 Paul Howarth <paul@city-fan.org> - 0.090-1
b9d9b1
- Update to 0.090
b9d9b1
  - Fix spew_utf8 to allow array references as input
b9d9b1
b9d9b1
* Mon Apr 18 2016 Paul Howarth <paul@city-fan.org> - 0.088-1
b9d9b1
- Update to 0.088
b9d9b1
  - Fixed bugs in relative symlink resolution for realpath, spew and edit_lines
b9d9b1
  - Symlink resolution will detect circular loops and throw an error
b9d9b1
b9d9b1
* Mon Apr  4 2016 Paul Howarth <paul@city-fan.org> - 0.086-1
b9d9b1
- Update to 0.086
b9d9b1
  - Improved documentation of copy and move
b9d9b1
- Simplify find command using -delete
b9d9b1
b9d9b1
* Fri Mar  4 2016 Paul Howarth <paul@city-fan.org> - 0.084-1
b9d9b1
- Update to 0.084
b9d9b1
  - Fixed relative() for the case with regex metacharacters in the path
b9d9b1
b9d9b1
* Wed Mar  2 2016 Paul Howarth <paul@city-fan.org> - 0.082-1
b9d9b1
- Update to 0.082
b9d9b1
  - The relative() method no longer uses File::Spec's buggy rel2abs method;
b9d9b1
    the new Path::Tiny algorithm should be comparable and passes File::Spec
b9d9b1
    rel2abs test cases, except that it correctly accounts for symlinks
b9d9b1
  - Added 'edit' and 'edit_lines' plus _utf8 and _raw variants; this is
b9d9b1
    similar to perl's -i flag (though without backups)
b9d9b1
  - Fixed lines_utf8() with chomping for repeated empty lines
b9d9b1
  - Fixed lines_utf8+chomp and relative() bugs on Windows
b9d9b1
  - Documented that subclassing is not supported
b9d9b1
b9d9b1
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.076-2
b9d9b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b9d9b1
b9d9b1
* Mon Nov 16 2015 Paul Howarth <paul@city-fan.org> - 0.076-1
b9d9b1
- Update to 0.076
b9d9b1
  - Tilde expansion on Windows was resulting in backslashes; now they are
b9d9b1
    correctly normalized to forward slashes
b9d9b1
  - Typos fixed
b9d9b1
  - Fixed spewing to a symlink that crosses a filesystem boundary
b9d9b1
  - Add Test::MockRandom to META as a recommended test prerequisite
b9d9b1
b9d9b1
* Tue Jul 21 2015 Paul Howarth <paul@city-fan.org> - 0.072-1
b9d9b1
- Update to 0.072
b9d9b1
  - Fixed incorrect error argument for File::Path functions (mkpath and
b9d9b1
    remove_tree)
b9d9b1
b9d9b1
* Mon Jul 20 2015 Paul Howarth <paul@city-fan.org> - 0.070-2
b9d9b1
- Fixed incorrect error argument for File::Path functions (mkpath and
b9d9b1
  remove_tree) (GH#144)
b9d9b1
b9d9b1
* Mon Jun 29 2015 Paul Howarth <paul@city-fan.org> - 0.070-1
b9d9b1
- Update to 0.070
b9d9b1
  - The 'copy' method now returns the object for the copied file
b9d9b1
  - The 'visit' method only dereferences the callback return value for scalar
b9d9b1
    refs, avoiding some common bugs
b9d9b1
b9d9b1
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.068-3
b9d9b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b9d9b1
b9d9b1
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.068-2
b9d9b1
- Perl 5.22 rebuild
b9d9b1
b9d9b1
* Tue Mar 24 2015 Paul Howarth <paul@city-fan.org> - 0.068-1
b9d9b1
- Update to 0.068
b9d9b1
  - Added exclusive locking option to filehandle opens; spew now exclusively
b9d9b1
    locks tempfile used for atomic writes
b9d9b1
b9d9b1
* Fri Mar  6 2015 Paul Howarth <paul@city-fan.org> - 0.065-1
b9d9b1
- Update to 0.065
b9d9b1
  - Added 'assert' method
b9d9b1
  - Added 'visit' method
b9d9b1
  - Added support for a negative count for 'lines' to get the last lines of a
b9d9b1
    file
b9d9b1
  - Fixed tilde expansion if path has spaces
b9d9b1
  - Make realpath non-fatal if the parent path exists and only the final path
b9d9b1
    component does not (was fatal on Windows and some Unixes)
b9d9b1
  - Removed redundant locking on tempfile use for spewing
b9d9b1
  - Work around File::Temp bugs on older ActiveState Windows Perls
b9d9b1
    https://bugs.activestate.com/show_bug.cgi?id=104767
b9d9b1
  - Fixed SYNOPSIS example
b9d9b1
b9d9b1
* Fri Nov 14 2014 Paul Howarth <paul@city-fan.org> - 0.061-1
b9d9b1
- Update to 0.061
b9d9b1
  - Fixed append_utf8 and append_raw with 'truncate' option
b9d9b1
b9d9b1
* Thu Nov  6 2014 Paul Howarth <paul@city-fan.org> - 0.060-1
b9d9b1
- Update to 0.060
b9d9b1
  - Added 'truncate' option to append for in-place replacement of file contents
b9d9b1
b9d9b1
* Tue Oct 14 2014 Paul Howarth <paul@city-fan.org> - 0.059-1
b9d9b1
- Update to 0.059
b9d9b1
  - Fixed precedence bug in the check for Unicode::UTF8
b9d9b1
b9d9b1
* Thu Sep 25 2014 Paul Howarth <paul@city-fan.org> - 0.058-1
b9d9b1
- Update to 0.058
b9d9b1
  - Added a 'sibling' method as a more efficient form of calling
b9d9b1
    $path->parent->child(...).
b9d9b1
  - Documentation for every method annotated with the version number of the
b9d9b1
    last API change
b9d9b1
b9d9b1
* Tue Sep 23 2014 Paul Howarth <paul@city-fan.org> - 0.057-1
b9d9b1
- Update to 0.057
b9d9b1
  - On AIX, reads that default to locking would fail without write permissions,
b9d9b1
    because locking needs write permissions; the fix is only to lock reads if
b9d9b1
    write permissions exist, otherwise locking is skipped
b9d9b1
b9d9b1
* Fri Aug 29 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.056-2
b9d9b1
- Perl 5.20 rebuild
b9d9b1
b9d9b1
* Thu Aug 14 2014 Paul Howarth <paul@city-fan.org> - 0.056-1
b9d9b1
- Update to 0.056
b9d9b1
  - Fixed problem throwing errors from 'remove'
b9d9b1
  - The 'digest' method now takes a 'chunk_size' option to avoid slurping files
b9d9b1
    entirely into memory
b9d9b1
  - The 'dirname' method is deprecated due to exposing File::Spec
b9d9b1
    inconsistencies
b9d9b1
- Use %%license
b9d9b1
b9d9b1
* Tue Jul  1 2014 Paul Howarth <paul@city-fan.org> - 0.055-1
b9d9b1
- Update to 0.055
b9d9b1
  - tempfile/tempdir won't warn if used as functions without arguments
b9d9b1
b9d9b1
* Sat Jun  7 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.054-2
b9d9b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b9d9b1
b9d9b1
* Tue May  6 2014 Paul Howarth <paul@city-fan.org> - 0.054-1
b9d9b1
- Update to 0.054
b9d9b1
  - The 'is_file' method now does -e && ! -d and not -f because -f is often
b9d9b1
    more restrictive than people intend or expect
b9d9b1
  - Added 'chmod' method with symbolic chmod support ("a=r,u+rx")
b9d9b1
  - The 'basename' method now takes a list of suffixes to remove before
b9d9b1
    returning the name
b9d9b1
  - Added FREEZE/THAW/TO_JSON serialization helpers
b9d9b1
  - When constructing a Path::Tiny object from another, the original is
b9d9b1
    returned unless it's a temp dir/file, which significantly speeds up calling
b9d9b1
    path($path) if $path is already a Path::Tiny object
b9d9b1
  - Constructing any path - e.g. with child() - with undef or zero-length
b9d9b1
    parts throws an error instead of constructing an invalid path
b9d9b1
b9d9b1
* Wed Jan 15 2014 Paul Howarth <paul@city-fan.org> - 0.052-1
b9d9b1
- Update to 0.052
b9d9b1
  - Backslash-to-slash conversion now only happens on Windows (since backslash
b9d9b1
    is legal on Unix, we must allow it)
b9d9b1
b9d9b1
* Sat Dec 21 2013 Paul Howarth <paul@city-fan.org> - 0.051-1
b9d9b1
- Update to 0.051
b9d9b1
  - Recursive iteration won't throw an exception if a directory is removed or
b9d9b1
    unreadable during iteration
b9d9b1
b9d9b1
* Thu Dec 12 2013 Paul Howarth <paul@city-fan.org> - 0.049-1
b9d9b1
- Update to 0.049
b9d9b1
  - Added 'subsumes' method
b9d9b1
  - The 'chomp' option for 'lines' will remove any end-of-line sequences fully
b9d9b1
    instead of just chomping the last character
b9d9b1
  - Fixed locking test on AIX
b9d9b1
  - Revised locking tests for portability again: locks are now tested from a
b9d9b1
    separate process
b9d9b1
  - The 'flock' package will no longer indexed by PAUSE
b9d9b1
  - Hides warnings and fixes possible fatal errors from pure-perl Cwd,
b9d9b1
    particularly on MSWin32
b9d9b1
  - Generates filename for atomic writes independent of thread-ID, which fixes
b9d9b1
    crashing bug on Win32 when fork() is called
b9d9b1
b9d9b1
* Fri Oct 18 2013 Paul Howarth <paul@city-fan.org> - 0.044-1
b9d9b1
- Update to 0.044
b9d9b1
  - Fixed child path construction against the root path
b9d9b1
  - Fixed path construction when a relative volume is provided as the first
b9d9b1
    argument on Windows; e.g. path("C:", "lib") must be like path("C:lib"),
b9d9b1
    not path("C:/lib")
b9d9b1
  - On AIX, shared locking is replaced by exclusive locking on a R/W
b9d9b1
    filehandle, as locking read handles is not supported
b9d9b1
b9d9b1
* Mon Oct 14 2013 Paul Howarth <paul@city-fan.org> - 0.043-1
b9d9b1
- Update to 0.043
b9d9b1
  - Calling 'absolute' on Windows will add the volume if it is missing (e.g.
b9d9b1
    "/foo" will become "C:/foo"); this matches the behavior of
b9d9b1
    File::Spec->rel2abs
b9d9b1
  - Fixed t/00-report-prereqs.t for use with older versions of
b9d9b1
    CPAN::Meta::Requirements
b9d9b1
b9d9b1
* Sun Oct 13 2013 Paul Howarth <paul@city-fan.org> - 0.042-1
b9d9b1
- Update to 0.042
b9d9b1
  - When 'realpath' can't be resolved (because intermediate directories don't
b9d9b1
    exist), the exception now explains the error clearly instead of complaining
b9d9b1
    about path() needing a defined, positive-length argument
b9d9b1
  - On Windows, fixed resolution of relative paths with a volume, e.g. "C:foo"
b9d9b1
    is now correctly translated into getdcwd on "C:" plus "foo"
b9d9b1
b9d9b1
* Fri Oct 11 2013 Paul Howarth <paul@city-fan.org> - 0.041-1
b9d9b1
- Update to 0.041
b9d9b1
  - Remove duplicate test dependency on File::Spec that triggers a CPAN.pm bug
b9d9b1
b9d9b1
* Wed Oct  9 2013 Paul Howarth <paul@city-fan.org> - 0.040-1
b9d9b1
- Update to 0.040
b9d9b1
  - The 'filehandle' method now offers an option to return locked handles
b9d9b1
    based on the file mode
b9d9b1
  - The 'filehandle' method now respects default encoding set by the caller's
b9d9b1
    open pragma
b9d9b1
b9d9b1
* Wed Oct  2 2013 Paul Howarth <paul@city-fan.org> - 0.038-1
b9d9b1
- Update to 0.038
b9d9b1
  - Added 'is_rootdir' method to simplify testing if a path is the root
b9d9b1
    directory
b9d9b1
b9d9b1
* Thu Sep 26 2013 Paul Howarth <paul@city-fan.org> - 0.037-1
b9d9b1
- Update to 0.037
b9d9b1
  - No longer lists 'threads' as a prerequisite; if you have a threaded perl,
b9d9b1
    you have it and if you've not, Path::Tiny doesn't care
b9d9b1
  - Fixed for v5.8
b9d9b1
b9d9b1
* Tue Sep 24 2013 Paul Howarth <paul@city-fan.org> - 0.035-1
b9d9b1
- Update to 0.035
b9d9b1
  - Fixed flock warning on BSD that was broken with the autodie removal; now
b9d9b1
    also applies to all BSD flavors
b9d9b1
b9d9b1
* Tue Sep 24 2013 Paul Howarth <paul@city-fan.org> - 0.034-1
b9d9b1
- Update to 0.034
b9d9b1
  - Exceptions are now Path::Tiny::Error objects, not autodie exceptions; this
b9d9b1
    removes the last dependency on autodie, which allows us to support Perls as
b9d9b1
    far back as v5.8.1
b9d9b1
  - BSD/NFS flock fix was not backwards compatible before v5.14; this fixes it
b9d9b1
    harder
b9d9b1
  - Lowered ExtUtils::MakeMaker configure_requires version to 6.17
b9d9b1
b9d9b1
* Thu Sep 12 2013 Paul Howarth <paul@city-fan.org> - 0.033-1
b9d9b1
- Update to 0.033
b9d9b1
  - Perl on BSD may not support locking on an NFS filesystem: if this is
b9d9b1
    detected, Path::Tiny warns and continues in an unsafe mode (the 'flock'
b9d9b1
    warning category may be fatalized to die instead)
b9d9b1
  - Added 'iterator' example showing defaults
b9d9b1
b9d9b1
* Fri Sep  6 2013 Paul Howarth <paul@city-fan.org> - 0.032-1
b9d9b1
- Update to 0.032
b9d9b1
  - Removed several test dependencies; Path::Tiny now only needs core modules,
b9d9b1
    though some must be upgraded on old Perls
b9d9b1
b9d9b1
* Tue Sep  3 2013 Paul Howarth <paul@city-fan.org> - 0.031-3
b9d9b1
- BR: perl(Config) for the test suite (#1003660)
b9d9b1
b9d9b1
* Mon Sep  2 2013 Paul Howarth <paul@city-fan.org> - 0.031-2
b9d9b1
- Sanitize for Fedora submission
b9d9b1
b9d9b1
* Mon Sep  2 2013 Paul Howarth <paul@city-fan.org> - 0.031-1
b9d9b1
- Initial RPM version