Update to 1.005

- New upstream release 1.005
  - Ensured no non-core test dependencies
  - Various non-functional changes to files and metadata included with
    the distribution
- Add patch with additional stopwords for the spell checker
- Reinstate EPEL support as we no longer require Capture::Tiny
This commit is contained in:
Paul Howarth 2013-09-11 16:54:20 +01:00
parent da5e5cb153
commit 48e91b9c20
4 changed files with 76 additions and 4 deletions

View File

@ -0,0 +1,34 @@
--- t/OSType.t
+++ t/OSType.t
@@ -1,7 +1,7 @@
use strict;
use warnings;
-use Test::More 0.88;
+use Test::More tests => 19;
use constant NON_EXISTENT_OS => 'titanix'; #the system they said could not go down...
@@ -65,5 +65,3 @@ can_ok( $test_pkg, @functions );
ok( !is_os_type(), "$fcn: false if no type provided" );
}
-done_testing;
-
--- xt/release/test-version.t
+++ xt/release/test-version.t
@@ -1,6 +1,6 @@
use strict;
use warnings;
-use Test::More;
+use Test::More tests => 2;
# generated by Dist::Zilla::Plugin::Test::Version 0.002004
BEGIN { eval "use Test::Version; 1;" or die $@; }
@@ -18,5 +18,4 @@ push @imports, $params
Test::Version->import(@imports);
-version_all_ok;
-done_testing;
+version_all_ok();

View File

@ -0,0 +1,11 @@
--- lib/Perl/OSType.pm
+++ lib/Perl/OSType.pm
@@ -103,6 +103,8 @@
=head1 DESCRIPTION
+=for :stopwords Unix Win32 Windows
+
Modules that provide OS-specific behaviors often need to know if
the current operating system matches a more generic type of
operating systems. For example, 'linux' is a type of 'Unix' operating system

View File

@ -1,11 +1,17 @@
# Test suite needs patching if we have Test::More < 0.88
%global old_test_more %(perl -MTest::More -e 'print (($Test::More::VERSION < 0.88) ? 1 : 0);' 2>/dev/null || echo 0)
Name: perl-Perl-OSType
Version: 1.004
Version: 1.005
Release: 1%{?dist}
Summary: Map Perl operating system names to generic types
License: GPL+ or Artistic
Group: Development/Libraries
URL: http://search.cpan.org/dist/Perl-OSType/
Source0: http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Perl-OSType-%{version}.tar.gz
Patch1: Perl-OSType-1.005-old-Test::More.patch
Patch2: Perl-OSType-1.005-stopwords.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
BuildArch: noarch
# Build
BuildRequires: perl(ExtUtils::MakeMaker)
@ -15,10 +21,11 @@ BuildRequires: perl(strict)
BuildRequires: perl(warnings)
# Test Suite
BuildRequires: perl(blib)
BuildRequires: perl(Capture::Tiny)
BuildRequires: perl(constant)
BuildRequires: perl(File::Spec::Functions)
BuildRequires: perl(File::Temp)
BuildRequires: perl(IO::Handle)
BuildRequires: perl(IPC::Open3)
BuildRequires: perl(List::Util)
BuildRequires: perl(Test::More)
# Optional tests, not run for this dual-lived module when bootstrapping
@ -52,11 +59,20 @@ systems are given the type 'Windows' rather than 'Win32').
%prep
%setup -q -n Perl-OSType-%{version}
# Fix test suite for Test::More < 0.88
%if %{old_test_more}
%patch1
%endif
# More stopwords for the spell checker
%patch2
%build
perl Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make pure_install DESTDIR=%{buildroot}
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
%{_fixperms} %{buildroot}
@ -64,15 +80,26 @@ find %{buildroot} -type f -name .packlist -exec rm -f {} \;
%check
make test
%if !%{defined perl_bootstrap} && 0%{?fedora}
make test TEST_FILES="$(echo $(find xt/ -name '*.t'))"
LANG=en_US make test TEST_FILES="$(echo $(find xt/ -name '*.t'))"
%endif
%clean
rm -rf %{buildroot}
%files
%doc Changes CONTRIBUTING LICENSE README
%{perl_vendorlib}/Perl/
%{_mandir}/man3/Perl::OSType.3pm*
%changelog
* Wed Sep 11 2013 Paul Howarth <paul@city-fan.org> - 1.005-1
- Update to 1.005
- Ensured no non-core test dependencies
- Various non-functional changes to files and metadata included with
the distribution
- Add patch with additional stopwords for the spell checker
- Reinstate EPEL support as we no longer require Capture::Tiny
* Thu Aug 22 2013 Paul Howarth <paul@city-fan.org> - 1.004-1
- Update to 1.004
- 'bitrig' is a Unix

View File

@ -1 +1 @@
00db898f95253d4ac3bc45d9beb6815c Perl-OSType-1.004.tar.gz
9a0c41e9ccd937ae0c865ac501cc0dc6 Perl-OSType-1.005.tar.gz