- updated to 0.07

- If the C<< RELEASE_TESTING >> environment variable is true, then instead
          of skipping tests, Test::Requires bails out.
          (tobyink)
        - document that use Test::Requires "5.010" works.
          (tobyink)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Test-Requires?expand=0&rev=15
This commit is contained in:
Stephan Kulow 2013-07-27 12:43:01 +00:00 committed by Git OBS Bridge
parent fdb8987a40
commit 910aff16e7
4 changed files with 40 additions and 28 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9b6f9e4c0b6f0ebe1d761b94938ec1446589c9a91920a98553aef47f2d795ecf
size 20077

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cc0273f1b68817dc715e374c7abf245f13db28223a734d2bd72ab1d48a33cef0
size 11023

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Sat Jul 27 11:58:05 UTC 2013 - coolo@suse.com
- updated to 0.07
- If the C<< RELEASE_TESTING >> environment variable is true, then instead
of skipping tests, Test::Requires bails out.
(tobyink)
- document that use Test::Requires "5.010" works.
(tobyink)
-------------------------------------------------------------------
Fri Nov 18 11:09:45 UTC 2011 - coolo@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package perl-Test-Requires
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -15,54 +15,56 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: perl-Test-Requires
Version: 0.07
Release: 0
%define cpan_name Test-Requires
Summary: Checks to see if the module can be loaded
Version: 0.06
Release: 2
License: GPL+ or Artistic
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Test-Requires/
#Source: http://search.cpan.org/CPAN/authors/id/T/TO/TOKUHIROM/Test-Requires-0.06.tar.gz
Source: %{cpan_name}-%{version}.tar.gz
Source: http://www.cpan.org/authors/id/T/TO/TOKUHIROM/%{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Test::More) >= 0.61
Requires: perl(Test::More) >= 0.61
BuildRequires: perl(CPAN::Meta)
BuildRequires: perl(CPAN::Meta::Prereqs)
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.59
BuildRequires: perl(Module::Build) >= 0.38
#BuildRequires: perl(Test::Perl::Critic)
#BuildRequires: perl(Test::Requires)
%{perl_requires}
%description
Test::Requires checks to see if the module can be loaded.
If this fails rather than failing tests this *skips all tests*.
Test::Requires can also be used to require a minimum version of Perl:
use Test::Requires "5.010"; # quoting is necessary!!
# or
use Test::Requires "v5.10";
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%{__perl} Build.PL installdirs=vendor
./Build build flags=%{?_smp_mflags}
%check
%{__make} test
./Build test
%install
%perl_make_install
# do not perl_process_packlist (noarch)
# remove .packlist file
%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
# remove perllocal.pod file
%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
./Build install destdir=%{buildroot} create_packlist=0
%perl_gen_filelist
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files -f %{name}.files
%defattr(-,root,root,-)
%doc Changes README
%defattr(-,root,root,755)
%doc Changes cpanfile LICENSE README.md
%changelog