forked from pool/perl-Test-Requires
Accepting request 184804 from devel:languages:perl
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/184804 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Test-Requires?expand=0&rev=11
This commit is contained in:
commit
a1b05f0476
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9b6f9e4c0b6f0ebe1d761b94938ec1446589c9a91920a98553aef47f2d795ecf
|
|
||||||
size 20077
|
|
3
Test-Requires-0.07.tar.gz
Normal file
3
Test-Requires-0.07.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cc0273f1b68817dc715e374c7abf245f13db28223a734d2bd72ab1d48a33cef0
|
||||||
|
size 11023
|
@ -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
|
Fri Nov 18 11:09:45 UTC 2011 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Test-Requires
|
# 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
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -15,54 +15,56 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
|
|
||||||
Name: perl-Test-Requires
|
Name: perl-Test-Requires
|
||||||
|
Version: 0.07
|
||||||
|
Release: 0
|
||||||
%define cpan_name Test-Requires
|
%define cpan_name Test-Requires
|
||||||
Summary: Checks to see if the module can be loaded
|
Summary: Checks to see if the module can be loaded
|
||||||
Version: 0.06
|
License: Artistic-1.0 or GPL-1.0+
|
||||||
Release: 2
|
|
||||||
License: GPL-1.0+ or Artistic-1.0
|
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/Test-Requires/
|
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: http://www.cpan.org/authors/id/T/TO/TOKUHIROM/%{cpan_name}-%{version}.tar.gz
|
||||||
Source: %{cpan_name}-%{version}.tar.gz
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%{perl_requires}
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(Test::More) >= 0.61
|
BuildRequires: perl(CPAN::Meta)
|
||||||
Requires: perl(Test::More) >= 0.61
|
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
|
%description
|
||||||
Test::Requires checks to see if the module can be loaded.
|
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
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
%{__perl} Build.PL installdirs=vendor
|
||||||
%{__make} %{?_smp_mflags}
|
./Build build flags=%{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__make} test
|
./Build test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
./Build install destdir=%{buildroot} create_packlist=0
|
||||||
# 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
|
|
||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%clean
|
|
||||||
%{__rm} -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes README
|
%doc Changes cpanfile LICENSE README.md
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user