2004-11-08 05:11:29 +00:00
|
|
|
Name: perl-YAML
|
2015-04-21 07:51:59 +00:00
|
|
|
Version: 1.15
|
2015-06-10 13:32:05 +00:00
|
|
|
Release: 3%{?dist}
|
2004-11-08 05:11:29 +00:00
|
|
|
Summary: YAML Ain't Markup Language (tm)
|
2007-10-16 16:36:16 +00:00
|
|
|
License: GPL+ or Artistic
|
2006-05-20 20:34:05 +00:00
|
|
|
Group: Development/Libraries
|
2004-11-08 05:11:29 +00:00
|
|
|
URL: http://search.cpan.org/dist/YAML/
|
2014-02-10 09:46:22 +00:00
|
|
|
Source0: http://search.cpan.org/CPAN/authors/id/I/IN/INGY/YAML-%{version}.tar.gz
|
2004-11-08 05:11:29 +00:00
|
|
|
BuildArch: noarch
|
2014-09-24 15:43:08 +00:00
|
|
|
# Module Build
|
2014-05-28 11:07:51 +00:00
|
|
|
BuildRequires: perl
|
2014-09-24 15:43:08 +00:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) > 6.75
|
|
|
|
# Module Runtime
|
2012-04-23 12:11:31 +00:00
|
|
|
BuildRequires: perl(Carp)
|
|
|
|
BuildRequires: perl(constant)
|
|
|
|
BuildRequires: perl(Exporter)
|
2014-02-10 09:46:22 +00:00
|
|
|
BuildRequires: perl(overload)
|
|
|
|
BuildRequires: perl(strict)
|
2014-09-24 15:43:08 +00:00
|
|
|
BuildRequires: perl(warnings)
|
|
|
|
# Test Suite
|
2014-08-26 11:25:32 +00:00
|
|
|
# Avoid circular build deps Test::YAML → Test::Base → YAML when bootstrapping
|
2014-08-12 11:04:37 +00:00
|
|
|
%if !%{defined perl_bootstrap}
|
2014-09-24 15:43:08 +00:00
|
|
|
BuildRequires: perl(B::Deparse)
|
|
|
|
BuildRequires: perl(Data::Dumper)
|
|
|
|
BuildRequires: perl(File::Find)
|
|
|
|
BuildRequires: perl(lib)
|
2014-06-15 20:32:18 +00:00
|
|
|
BuildRequires: perl(Test::More) >= 0.88
|
2014-02-10 09:46:22 +00:00
|
|
|
BuildRequires: perl(Test::Pod) >= 1.41
|
2014-08-26 11:25:32 +00:00
|
|
|
BuildRequires: perl(Test::YAML) >= 1.05
|
2014-09-24 15:43:08 +00:00
|
|
|
BuildRequires: perl(utf8)
|
2014-08-12 11:04:37 +00:00
|
|
|
%endif
|
2014-09-24 15:43:08 +00:00
|
|
|
# Runtime
|
2012-07-16 14:24:19 +00:00
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
2012-04-23 12:11:31 +00:00
|
|
|
Requires: perl(Carp)
|
2004-11-08 05:11:29 +00:00
|
|
|
|
2012-07-17 11:54:40 +00:00
|
|
|
# Filter private provides:
|
|
|
|
# perl(yaml_mapping) perl(yaml_scalar) perl(yaml_sequence)
|
|
|
|
%global __provides_exclude ^perl\\(yaml_
|
|
|
|
|
2004-11-08 05:11:29 +00:00
|
|
|
%description
|
|
|
|
The YAML.pm module implements a YAML Loader and Dumper based on the
|
|
|
|
YAML 1.0 specification. http://www.yaml.org/spec/
|
|
|
|
YAML is a generic data serialization language that is optimized for
|
|
|
|
human readability. It can be used to express the data structures of
|
|
|
|
most modern programming languages, including Perl.
|
|
|
|
For information on the YAML syntax, please refer to the YAML
|
|
|
|
specification.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n YAML-%{version}
|
2014-07-15 08:43:47 +00:00
|
|
|
|
2004-11-08 05:11:29 +00:00
|
|
|
%build
|
2014-08-08 14:18:10 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
2004-11-08 05:11:29 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
2014-08-08 14:18:10 +00:00
|
|
|
make install DESTDIR=%{buildroot}
|
2004-11-08 05:11:29 +00:00
|
|
|
|
2006-05-20 20:34:05 +00:00
|
|
|
%check
|
2014-08-29 13:16:48 +00:00
|
|
|
# Avoid circular build deps Test::YAML → Test::Base → YAML when bootstrapping
|
2014-08-12 11:04:37 +00:00
|
|
|
%if !%{defined perl_bootstrap}
|
|
|
|
make test
|
|
|
|
%endif
|
2006-05-17 19:14:32 +00:00
|
|
|
|
2004-11-08 05:11:29 +00:00
|
|
|
%files
|
2014-07-31 13:55:59 +00:00
|
|
|
%license LICENSE
|
|
|
|
%doc Changes CONTRIBUTING README
|
2014-06-15 20:32:18 +00:00
|
|
|
%dir %{perl_vendorlib}/YAML/
|
|
|
|
%dir %{perl_vendorlib}/YAML/Dumper/
|
|
|
|
%dir %{perl_vendorlib}/YAML/Loader/
|
|
|
|
%doc %{perl_vendorlib}/YAML.pod
|
2014-07-17 12:45:32 +00:00
|
|
|
%doc %{perl_vendorlib}/YAML/Any.pod
|
|
|
|
%doc %{perl_vendorlib}/YAML/Dumper.pod
|
|
|
|
%doc %{perl_vendorlib}/YAML/Dumper/Base.pod
|
|
|
|
%doc %{perl_vendorlib}/YAML/Error.pod
|
|
|
|
%doc %{perl_vendorlib}/YAML/Loader.pod
|
|
|
|
%doc %{perl_vendorlib}/YAML/Loader/Base.pod
|
|
|
|
%doc %{perl_vendorlib}/YAML/Marshall.pod
|
|
|
|
%doc %{perl_vendorlib}/YAML/Node.pod
|
|
|
|
%doc %{perl_vendorlib}/YAML/Tag.pod
|
|
|
|
%doc %{perl_vendorlib}/YAML/Types.pod
|
2014-02-10 09:46:22 +00:00
|
|
|
%{perl_vendorlib}/YAML.pm
|
2014-06-15 20:32:18 +00:00
|
|
|
%{perl_vendorlib}/YAML/Any.pm
|
|
|
|
%{perl_vendorlib}/YAML/Dumper.pm
|
|
|
|
%{perl_vendorlib}/YAML/Dumper/Base.pm
|
|
|
|
%{perl_vendorlib}/YAML/Error.pm
|
|
|
|
%{perl_vendorlib}/YAML/Loader.pm
|
|
|
|
%{perl_vendorlib}/YAML/Loader/Base.pm
|
|
|
|
%{perl_vendorlib}/YAML/Marshall.pm
|
|
|
|
%{perl_vendorlib}/YAML/Mo.pm
|
|
|
|
%{perl_vendorlib}/YAML/Node.pm
|
|
|
|
%{perl_vendorlib}/YAML/Tag.pm
|
|
|
|
%{perl_vendorlib}/YAML/Types.pm
|
2015-01-26 10:32:51 +00:00
|
|
|
%{_mandir}/man3/YAML.3*
|
|
|
|
%{_mandir}/man3/YAML::Any.3*
|
|
|
|
%{_mandir}/man3/YAML::Dumper.3*
|
|
|
|
%{_mandir}/man3/YAML::Dumper::Base.3*
|
|
|
|
%{_mandir}/man3/YAML::Error.3*
|
|
|
|
%{_mandir}/man3/YAML::Loader.3*
|
|
|
|
%{_mandir}/man3/YAML::Loader::Base.3*
|
|
|
|
%{_mandir}/man3/YAML::Marshall.3*
|
|
|
|
%{_mandir}/man3/YAML::Node.3*
|
|
|
|
%{_mandir}/man3/YAML::Tag.3*
|
|
|
|
%{_mandir}/man3/YAML::Types.3*
|
2006-05-04 16:32:39 +00:00
|
|
|
|
2006-05-17 19:14:32 +00:00
|
|
|
%changelog
|
2015-06-10 13:32:05 +00:00
|
|
|
* Wed Jun 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.15-3
|
|
|
|
- Perl 5.22 re-rebuild of bootstrapped packages
|
|
|
|
|
2015-06-03 16:45:41 +00:00
|
|
|
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.15-2
|
|
|
|
- Perl 5.22 rebuild
|
|
|
|
|
2015-04-21 07:51:59 +00:00
|
|
|
* Mon Apr 20 2015 Paul Howarth <paul@city-fan.org> - 1.15-1
|
|
|
|
- Update to 1.15
|
|
|
|
- Don't require newlines at end of YAML (GH#149)
|
|
|
|
|
2015-01-26 10:32:51 +00:00
|
|
|
* Mon Jan 26 2015 Paul Howarth <paul@city-fan.org> - 1.14-1
|
|
|
|
- Update to 1.14
|
|
|
|
- Add support for QuoteNumericStrings global setting (PR/145)
|
|
|
|
|
2014-10-12 11:39:28 +00:00
|
|
|
* Sun Oct 12 2014 Paul Howarth <paul@city-fan.org> - 1.13-1
|
|
|
|
- Update to 1.13
|
|
|
|
- Disable some warnings in YAML::Any (PR/140)
|
|
|
|
|
2014-09-24 15:43:08 +00:00
|
|
|
* Wed Sep 24 2014 Paul Howarth <paul@city-fan.org> - 1.12-1
|
|
|
|
- Update to 1.12
|
|
|
|
- Fix parsing of unquoted strings (CPAN RT#97870)
|
|
|
|
- Classify buildreqs by usage
|
|
|
|
|
2014-09-08 12:58:33 +00:00
|
|
|
* Sun Sep 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.11-3
|
|
|
|
- Perl 5.20 re-rebuild of bootstrapped packages
|
|
|
|
|
2014-09-03 14:28:45 +00:00
|
|
|
* Wed Sep 03 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.11-2
|
|
|
|
- Perl 5.20 rebuild
|
|
|
|
|
2014-09-02 12:47:21 +00:00
|
|
|
* Tue Sep 2 2014 Paul Howarth <paul@city-fan.org> - 1.11-1
|
|
|
|
- Update to 1.11
|
|
|
|
- Apply PR/139:
|
|
|
|
- Remove die() that can't be called (regex always matches)
|
|
|
|
|
|
|
|
* Fri Aug 29 2014 Paul Howarth <paul@city-fan.org> - 1.10-1
|
2014-08-29 13:16:48 +00:00
|
|
|
- Update to 1.10
|
|
|
|
- Apply PR/138:
|
|
|
|
- Report an error message mentioning indentation when choking on non-space
|
|
|
|
indentation
|
|
|
|
- die() should be called as a method of $self
|
|
|
|
|
2014-08-27 16:59:46 +00:00
|
|
|
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.09-2
|
|
|
|
- Perl 5.20 rebuild
|
|
|
|
|
2014-08-26 11:25:32 +00:00
|
|
|
* Tue Aug 26 2014 Paul Howarth <paul@city-fan.org> - 1.09-1
|
|
|
|
- Update to 1.09
|
|
|
|
- Add t/000-compile-modules.t
|
|
|
|
- Eliminate File::Basename from test/
|
|
|
|
- Eliminate spurious trailing whitespace
|
|
|
|
- Meta 0.0.2
|
|
|
|
- Change testdir to t
|
|
|
|
- Add doc examples for YAML::Any (PR/8)
|
|
|
|
- Dep on Test::YAML 1.05
|
|
|
|
- Replace tabs with spaces
|
|
|
|
|
2014-08-12 11:04:37 +00:00
|
|
|
* Tue Aug 12 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.01-2
|
|
|
|
- Disable tests when bootstrapping
|
|
|
|
|
2014-08-08 15:19:34 +00:00
|
|
|
* Fri Aug 8 2014 Paul Howarth <paul@city-fan.org> - 1.01-1
|
|
|
|
- Update to 1.01
|
|
|
|
- Depend on patched Test::YAML
|
|
|
|
|
2014-08-08 14:18:10 +00:00
|
|
|
* Fri Aug 8 2014 Paul Howarth <paul@city-fan.org> - 1.00-1
|
|
|
|
- Update to 1.00
|
|
|
|
- Switch to external Test::Base
|
|
|
|
- Fix bad encoding in Pod
|
|
|
|
- Test::YAML is now unbundled
|
|
|
|
- Take advantage of new features in recent EU::MM to simplify spec
|
|
|
|
|
2014-07-31 13:55:59 +00:00
|
|
|
* Thu Jul 31 2014 Paul Howarth <paul@city-fan.org> - 0.98-1
|
|
|
|
- Update to 0.98
|
|
|
|
- Fix indexing of YAML::Any
|
|
|
|
- Change IRC to irc.perl.org#yaml
|
|
|
|
- Use %%license
|
|
|
|
- Drop workaround for #1115971
|
|
|
|
|
2014-07-17 12:45:32 +00:00
|
|
|
* Thu Jul 17 2014 Paul Howarth <paul@city-fan.org> - 0.97-1
|
|
|
|
- Update to 0.97
|
|
|
|
- Move remaining docs to Swim
|
|
|
|
- Upstream reinstated all those pod files and manpages again
|
|
|
|
|
2014-07-15 08:43:47 +00:00
|
|
|
* Mon Jul 14 2014 Paul Howarth <paul@city-fan.org> - 0.96-1
|
|
|
|
- Update to 0.96
|
|
|
|
- Fix Metadata and add Contributing file
|
|
|
|
- Change Kwim to Swim
|
|
|
|
- Upstream dropped all those pod files and manpages again
|
|
|
|
|
2014-07-03 14:13:10 +00:00
|
|
|
* Thu Jul 03 2014 Petr Pisar <ppisar@redhat.com> - 0.95-2
|
|
|
|
- Inject VERSION into each module (bug #1115971)
|
|
|
|
|
2014-06-23 14:34:05 +00:00
|
|
|
* Mon Jun 23 2014 Paul Howarth <paul@city-fan.org> - 0.95-1
|
|
|
|
- Update to 0.95
|
|
|
|
- Fix dumping blessed globs
|
|
|
|
|
2014-06-15 20:32:18 +00:00
|
|
|
* Sun Jun 15 2014 Paul Howarth <paul@city-fan.org> - 0.94-1
|
|
|
|
- Update to 0.94
|
|
|
|
- Switch to Zilla::Dist
|
|
|
|
- Add badges to doc
|
|
|
|
- Fix regression introduced with earlier fix for complex regular
|
|
|
|
subexpression recursion limit (GH#18)
|
|
|
|
- Fix reference to non-existent sub Carp::Croak (GH#19)
|
|
|
|
- Enumerate all files so we can mark POD files as %%doc
|
|
|
|
- Bump Test::More version requirement to 0.88 due to use of done_testing
|
|
|
|
|
2014-06-07 12:39:50 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.92-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-06-03 11:21:48 +00:00
|
|
|
* Tue Jun 03 2014 Petr Pisar <ppisar@redhat.com> - 0.92-2
|
|
|
|
- Do not run release tests on bootstrap (bug #1104137)
|
|
|
|
|
2014-05-29 09:18:43 +00:00
|
|
|
* Thu May 29 2014 Paul Howarth <paul@city-fan.org> 0.92-1
|
|
|
|
- Update to 0.92
|
|
|
|
- Metadata fixes (https://github.com/ingydotnet/yaml-pm/pull/23)
|
|
|
|
|
2014-05-28 11:07:51 +00:00
|
|
|
* Wed May 28 2014 Paul Howarth <paul@city-fan.org> - 0.91-1
|
|
|
|
- Update to 0.91
|
|
|
|
- Force escaping of single '-'
|
|
|
|
(https://github.com/ingydotnet/yaml-pm/pull/22)
|
|
|
|
|
2014-02-28 19:36:24 +00:00
|
|
|
* Fri Feb 28 2014 Paul Howarth <paul@city-fan.org> - 0.90-2
|
|
|
|
- Avoid circular build deps via Module::Build when bootstrapping
|
|
|
|
|
2014-02-11 11:12:25 +00:00
|
|
|
* Tue Feb 11 2014 Paul Howarth <paul@city-fan.org> - 0.90-1
|
|
|
|
- Update to 0.90
|
|
|
|
- Revert Mo from 0.38 to 0.31 following a report of it breaking cpan client
|
|
|
|
|
2014-02-10 09:46:22 +00:00
|
|
|
* Mon Feb 10 2014 Paul Howarth <paul@city-fan.org> - 0.89-1
|
|
|
|
- Update to 0.89
|
|
|
|
- Synopsis in YAML::Dumper didn't work as expected (CPAN RT#19838)
|
|
|
|
- Address complex regular subexpression recursion limit (CPAN RT#90593)
|
|
|
|
- Use latest Test::Builder (CPAN RT#90847)
|
|
|
|
- Fixed tests to work under parallel testing
|
|
|
|
- Switched to dzil release process
|
|
|
|
- This release by INGY -> update source URL
|
|
|
|
- Make %%files list more explicit
|
|
|
|
- Specify all dependencies
|
|
|
|
|
2013-08-04 02:08:28 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.84-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-15 13:22:28 +00:00
|
|
|
* Mon Jul 15 2013 Petr Pisar <ppisar@redhat.com> - 0.84-6
|
|
|
|
- Perl 5.18 rebuild
|
|
|
|
|
2013-02-14 16:24:39 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.84-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-08-28 14:20:40 +00:00
|
|
|
* Tue Aug 28 2012 Jitka Plesnikova <jplesnik@redhat.com> - 0.84-4
|
2014-02-10 09:46:22 +00:00
|
|
|
- Specify all dependencies
|
2012-08-28 14:20:40 +00:00
|
|
|
|
2012-07-20 22:43:29 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.84-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-17 11:54:40 +00:00
|
|
|
* Tue Jul 17 2012 Paul Howarth <paul@city-fan.org> - 0.84-2
|
|
|
|
- Haven't needed to fix documentation character encoding since 0.79
|
|
|
|
- Drop Test::Base build dependency again to avoid a BR loop (#215637)
|
|
|
|
- Filter private provides perl(yaml_mapping), perl(yaml_scalar) and
|
|
|
|
perl(yaml_sequence)
|
|
|
|
- Don't need to remove empty directories from the buildroot
|
|
|
|
- This release by MSTROUT -> update source URL
|
|
|
|
|
2012-07-16 14:24:19 +00:00
|
|
|
* Mon Jul 16 2012 Petr Šabata <contyk@redhat.com> - 0.84-1
|
|
|
|
- 0.84 bump
|
|
|
|
- Drop command macros
|
|
|
|
- Drop previously added patch (included in 0.82)
|
|
|
|
|
2012-06-22 10:02:29 +00:00
|
|
|
* Fri Jun 22 2012 Jitka Plesnikova <jplesnik@redhat.com> 0.81-4
|
2014-02-10 09:46:22 +00:00
|
|
|
- Apply patch to for YAML::Any RT#74226
|
2012-06-22 10:02:29 +00:00
|
|
|
|
2012-06-06 21:27:16 +00:00
|
|
|
* Wed Jun 06 2012 Petr Pisar <ppisar@redhat.com> - 0.81-3
|
|
|
|
- Perl 5.16 rebuild
|
|
|
|
|
2012-04-23 12:11:31 +00:00
|
|
|
* Mon Apr 23 2012 Paul Howarth <paul@city-fan.org> - 0.81-2
|
|
|
|
- R: perl(Carp) and perl(Data::Dumper)
|
|
|
|
- BR: perl(Carp), perl(constant) and perl(Exporter)
|
|
|
|
- Release tests no longer shipped, so drop buildreqs for them and don't bother
|
|
|
|
setting AUTOMATED_TESTING; run tests even when bootstrapping
|
|
|
|
|
2012-04-23 12:09:23 +00:00
|
|
|
* Mon Apr 23 2012 Marcela Mašláňová <mmaslano@redhat.com> - 0.81-1
|
2012-04-23 12:11:31 +00:00
|
|
|
- Update to 0.81
|
|
|
|
- Add BR Data::Dumper
|
2012-04-23 12:09:23 +00:00
|
|
|
|
2012-01-13 20:36:35 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.73-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-06-28 16:59:17 +00:00
|
|
|
* Tue Jun 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.73-2
|
|
|
|
- Perl mass rebuild
|
|
|
|
- add perl_bootstrap macro
|
|
|
|
|
2011-05-14 07:00:58 +00:00
|
|
|
* Sat May 14 2011 Iain Arnell <iarnell@gmail.com> 0.73-1
|
|
|
|
- update to latest upstream version
|
|
|
|
- clean up spec for modern rpmbuild
|
|
|
|
|
2011-02-09 10:51:30 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.72-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-08 15:26:35 +00:00
|
|
|
* Wed Dec 08 2010 Steven Pritchard <steve@kspei.com> 0.72-1
|
|
|
|
- Update to 0.72.
|
|
|
|
|
2010-08-18 12:21:31 +00:00
|
|
|
* Wed Aug 18 2010 Paul Howarth <paul@city-fan.org> - 0.71-1
|
|
|
|
- Update to 0.71 (use UTF-8 encoding in LoadFile/DumpFile: CPAN RT#25434)
|
|
|
|
- Enable AUTOMATED_TESTING
|
|
|
|
- BR: perl(Test::CPAN::Meta), perl(Test::MinimumVersion), perl(Test::Pod)
|
|
|
|
- This release by ADAMK -> update source URL
|
|
|
|
- Re-code docs as UTF-8
|
|
|
|
|
2010-04-29 10:55:35 +00:00
|
|
|
* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.70-5
|
|
|
|
- Mass rebuild with perl-5.12.0
|
|
|
|
|
2010-02-25 14:00:41 +00:00
|
|
|
* Thu Feb 25 2010 Marcela Mašláňová <mmaslano@redhat.com> - 0.70-4
|
|
|
|
- add license
|
|
|
|
|
2009-12-07 03:41:53 +00:00
|
|
|
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.70-3
|
|
|
|
- rebuild against perl 5.10.1
|
|
|
|
|
2009-10-07 08:10:44 +00:00
|
|
|
* Wed Oct 7 2009 Marcela Mašláňová <mmaslano@redhat.com> - 0.70-2
|
|
|
|
- rebuild for push
|
|
|
|
|
2009-10-06 10:08:04 +00:00
|
|
|
* Tue Oct 6 2009 Marcela Mašláňová <mmaslano@redhat.com> - 0.70-1
|
|
|
|
- new upstream version
|
|
|
|
|
2009-07-26 17:42:17 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.68-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-27 04:57:23 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.68-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-10 16:55:08 +00:00
|
|
|
* Wed Dec 10 2008 Steven Pritchard <steve@kspei.com> 0.68-1
|
|
|
|
- Update to 0.68.
|
|
|
|
- COMPATIBILITY went away.
|
|
|
|
- ysh moved to YAML::Shell.
|
|
|
|
|
2008-02-27 21:43:01 +00:00
|
|
|
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.66-3
|
|
|
|
- Rebuild for perl 5.10 (again)
|
|
|
|
|
2008-01-11 18:55:17 +00:00
|
|
|
* Fri Jan 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.66-2
|
|
|
|
- rebuild for new perl
|
|
|
|
|
2007-10-16 16:36:16 +00:00
|
|
|
* Tue Oct 16 2007 Steven Pritchard <steve@kspei.com> 0.66-1
|
|
|
|
- Update to 0.66.
|
|
|
|
- Update License tag.
|
|
|
|
|
2007-06-28 01:14:31 +00:00
|
|
|
* Wed Jun 27 2007 Steven Pritchard <steve@kspei.com> 0.65-1
|
|
|
|
- Update to 0.65.
|
|
|
|
|
2007-03-13 21:58:04 +00:00
|
|
|
* Tue Mar 13 2007 Steven Pritchard <steve@kspei.com> 0.62-3
|
|
|
|
- Use fixperms macro instead of our own chmod incantation.
|
2007-11-27 15:12:36 +00:00
|
|
|
- Drop Test::Base build dependency to avoid a BR loop (#215637).
|
2007-03-13 21:58:04 +00:00
|
|
|
- BR ExtUtils::MakeMaker.
|
|
|
|
|
2006-09-17 22:28:10 +00:00
|
|
|
* Sat Sep 16 2006 Steven Pritchard <steve@kspei.com> 0.62-2
|
|
|
|
- Fix find option order.
|
|
|
|
|
2006-07-07 13:50:55 +00:00
|
|
|
* Fri Jul 07 2006 Steven Pritchard <steve@kspei.com> 0.62-1
|
|
|
|
- Update to 0.62.
|
|
|
|
- Removed Test::YAML (bug #197539).
|
|
|
|
|
|
|
|
* Mon Jul 03 2006 Steven Pritchard <steve@kspei.com> 0.61-1
|
|
|
|
- Update to 0.61.
|
|
|
|
|
2006-05-20 20:35:35 +00:00
|
|
|
* Sat May 20 2006 Steven Pritchard <steve@kspei.com> 0.58-3
|
|
|
|
- Rebuild.
|
|
|
|
|
2006-05-20 20:34:05 +00:00
|
|
|
* Tue May 09 2006 Steven Pritchard <steve@kspei.com> 0.58-2
|
|
|
|
- Drop testmore patch.
|
|
|
|
- Catch Test::YAML module and man page in file list.
|
|
|
|
|
|
|
|
* Thu May 04 2006 Steven Pritchard <steve@kspei.com> 0.58-1
|
|
|
|
- Update to 0.58.
|
|
|
|
- Small spec cleanups.
|
|
|
|
|
2005-04-14 07:06:47 +00:00
|
|
|
* Thu Apr 14 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.39-2
|
|
|
|
- 0.39.
|
|
|
|
|
2014-02-10 09:46:22 +00:00
|
|
|
* Wed Apr 6 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
2005-04-06 22:13:29 +00:00
|
|
|
- rebuilt
|
|
|
|
|
2004-11-08 05:11:29 +00:00
|
|
|
* Sat May 15 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.35-0.fdr.5
|
|
|
|
- Avoid creation of the perllocal.pod file (make pure_install).
|
|
|
|
|
|
|
|
* Sun Apr 25 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.35-0.fdr.4
|
|
|
|
- Require perl(:MODULE_COMPAT_*).
|
|
|
|
- Cosmetic tweaks (bug 1383).
|
|
|
|
|
|
|
|
* Sun Mar 14 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.35-0.fdr.3
|
|
|
|
- Reduce directory ownership bloat.
|
|
|
|
|
|
|
|
* Tue Nov 18 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.35-0.fdr.2
|
|
|
|
- Use INSTALLARCHLIB workaround in %%install.
|
|
|
|
|
|
|
|
* Wed Sep 3 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.35-0.fdr.1
|
|
|
|
- First build.
|