Drop testmore patch. Catch Test::YAML module and man page in file list.

This commit is contained in:
Steven Pritchard 2006-05-09 17:19:22 +00:00
parent 5e2ec03972
commit a2a00c4cd6
2 changed files with 7 additions and 18 deletions

View File

@ -1,15 +0,0 @@
--- 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,12 +1,11 @@
Name: perl-YAML
Version: 0.58
Release: 1%{?dist}
Release: 2%{?dist}
Summary: YAML Ain't Markup Language (tm)
License: GPL or Artistic
Group: Development/Libraries
URL: http://search.cpan.org/dist/YAML/
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)
BuildArch: noarch
BuildRequires: perl(Test::Base) >= 0.49
@ -23,7 +22,6 @@ specification.
%prep
%setup -q -n YAML-%{version}
%patch0 -p0
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
@ -50,10 +48,16 @@ rm -rf $RPM_BUILD_ROOT
%doc Changes README
%{_bindir}/ysh
%{perl_vendorlib}/YAML*
%{perl_vendorlib}/Test/YAML*
%{_mandir}/man1/ysh.1*
%{_mandir}/man3/YAML*.3*
%{_mandir}/man3/Test::YAML*.3*
%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.