Revert to 0.39 temporarily.

This commit is contained in:
Steven Pritchard 2006-05-17 19:14:32 +00:00
parent a2a00c4cd6
commit 2dbaa38bb8
3 changed files with 34 additions and 21 deletions

View File

@ -0,0 +1,15 @@
--- t/20load.t~ 2005-03-31 05:18:43.000000000 +0300
+++ t/20load.t 2005-04-13 17:35:47.000000000 +0300
@@ -1,7 +1,11 @@
use lib 'lib', 't';
use TestChunks;
plan tests => number_of_tests;
-test_load;
+SKIP: {
+ Test::More::skip "This test hangs with Test::More < 0.54", number_of_tests
+ unless $Test::More::VERSION && $Test::More::VERSION >= 0.54;
+ test_load;
+};
__DATA__
===

View File

@ -1,15 +1,18 @@
Name: perl-YAML Name: perl-YAML
Version: 0.58 Version: 0.39
Release: 2%{?dist} Release: 2%{?dist}
Summary: YAML Ain't Markup Language (tm) Summary: YAML Ain't Markup Language (tm)
License: GPL or Artistic
Group: Development/Libraries Group: Development/Libraries
License: GPL or Artistic
URL: http://search.cpan.org/dist/YAML/ URL: http://search.cpan.org/dist/YAML/
Source0: http://www.cpan.org/authors/id/I/IN/INGY/YAML-%{version}.tar.gz Source0: http://www.cpan.org/authors/id/I/IN/INGY/YAML-%{version}.tar.gz
Patch0: %{name}-testmore054.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch BuildArch: noarch
BuildRequires: perl(Test::Base) >= 0.49 BuildRequires: perl >= 1:5.6.1
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
%description %description
The YAML.pm module implements a YAML Loader and Dumper based on the The YAML.pm module implements a YAML Loader and Dumper based on the
@ -20,48 +23,43 @@ most modern programming languages, including Perl.
For information on the YAML syntax, please refer to the YAML For information on the YAML syntax, please refer to the YAML
specification. specification.
%prep %prep
%setup -q -n YAML-%{version} %setup -q -n YAML-%{version}
%patch0 -p0
%build %build
%{__perl} Makefile.PL INSTALLDIRS=vendor %{__perl} Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags} make %{?_smp_mflags}
%install %install
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
chmod -R u+w $RPM_BUILD_ROOT/*
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null \;
chmod -R u+rwX,go+rX,go-w $RPM_BUILD_ROOT/* %check || :
%check
make test make test
%clean %clean
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT
%files %files
%defattr(-,root,root,-) %defattr(-,root,root,-)
%doc Changes README %doc Changes README
%{_bindir}/ysh %{_bindir}/ysh
%{perl_vendorlib}/YAML* %{perl_vendorlib}/YAML*
%{perl_vendorlib}/Test/YAML*
%{_mandir}/man1/ysh.1* %{_mandir}/man1/ysh.1*
%{_mandir}/man3/YAML*.3* %{_mandir}/man3/YAML*.3*
%{_mandir}/man3/Test::YAML*.3*
%changelog %changelog
* 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.
* Thu Apr 14 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.39-2 * Thu Apr 14 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.39-2
- 0.39. - 0.39.

View File

@ -1 +1 @@
aa5ac653057914ca995dd74de8212ebc YAML-0.58.tar.gz b8a49f49cb0ee6d9698807fb3f606922 YAML-0.39.tar.gz