From 910aff16e753001c9ccd62e7adb9193c117aedc06df2296253d77ba2d4ed35fc Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Sat, 27 Jul 2013 12:43:01 +0000 Subject: [PATCH] - 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 --- Test-Requires-0.06.tar.gz | 3 --- Test-Requires-0.07.tar.gz | 3 +++ perl-Test-Requires.changes | 10 ++++++++ perl-Test-Requires.spec | 52 ++++++++++++++++++++------------------ 4 files changed, 40 insertions(+), 28 deletions(-) delete mode 100644 Test-Requires-0.06.tar.gz create mode 100644 Test-Requires-0.07.tar.gz diff --git a/Test-Requires-0.06.tar.gz b/Test-Requires-0.06.tar.gz deleted file mode 100644 index 08f98a9..0000000 --- a/Test-Requires-0.06.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9b6f9e4c0b6f0ebe1d761b94938ec1446589c9a91920a98553aef47f2d795ecf -size 20077 diff --git a/Test-Requires-0.07.tar.gz b/Test-Requires-0.07.tar.gz new file mode 100644 index 0000000..6ba2a80 --- /dev/null +++ b/Test-Requires-0.07.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc0273f1b68817dc715e374c7abf245f13db28223a734d2bd72ab1d48a33cef0 +size 11023 diff --git a/perl-Test-Requires.changes b/perl-Test-Requires.changes index b5feaa0..c99cdc5 100644 --- a/perl-Test-Requires.changes +++ b/perl-Test-Requires.changes @@ -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 diff --git a/perl-Test-Requires.spec b/perl-Test-Requires.spec index f1ef794..e18f5f5 100644 --- a/perl-Test-Requires.spec +++ b/perl-Test-Requires.spec @@ -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