Accepting request 296699 from devel:languages:perl
1 OBS-URL: https://build.opensuse.org/request/show/296699 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Test-SharedFork?expand=0&rev=13
This commit is contained in:
commit
e5b6c04c85
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3ea0100a5ca2f0eb9323651bc6019be16c54b44549c93743f96185d09c8ae7bc
|
|
||||||
size 14814
|
|
3
Test-SharedFork-0.29.tar.gz
Normal file
3
Test-SharedFork-0.29.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:63af7788cc35b9b7e6fa37c61220ca66abd6364d8bb90c20038e3d8241988a6e
|
||||||
|
size 15449
|
@ -1,3 +1,38 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 14 19:19:04 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.29
|
||||||
|
see /usr/share/doc/packages/perl-Test-SharedFork/Changes
|
||||||
|
|
||||||
|
0.29 2014-09-20T04:21:14Z
|
||||||
|
|
||||||
|
0.28 2014-07-04T07:37:50Z
|
||||||
|
|
||||||
|
- Fixed minor testing issue on Win32.
|
||||||
|
(charsbar++)
|
||||||
|
|
||||||
|
0.27 2014-07-03T05:37:00Z
|
||||||
|
|
||||||
|
commit fa8821ff5fe7b44a2461ea58e537ea01221504ed
|
||||||
|
Author: Chad Granum <chad.granum@dreamhost.com>
|
||||||
|
Date: Tue Jul 1 15:13:28 2014 -0700
|
||||||
|
|
||||||
|
Fix another issue with Result_Stream branch of TB
|
||||||
|
|
||||||
|
0.26 2014-06-27T04:20:47Z
|
||||||
|
|
||||||
|
- Fix support for Result_Stream Test::Builder branch
|
||||||
|
(exodist)
|
||||||
|
|
||||||
|
0.25 2014-06-24T01:34:10Z
|
||||||
|
|
||||||
|
- Switch to EUMM
|
||||||
|
|
||||||
|
0.24 2014-04-07T21:21:56Z
|
||||||
|
|
||||||
|
- Cygwin 64-bit - allow tests to pass
|
||||||
|
(rwhitworth)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 17 08:29:32 UTC 2014 - coolo@suse.com
|
Mon Mar 17 08:29:32 UTC 2014 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Test-SharedFork
|
# spec file for package perl-Test-SharedFork
|
||||||
#
|
#
|
||||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX 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
|
||||||
@ -17,22 +17,19 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-Test-SharedFork
|
Name: perl-Test-SharedFork
|
||||||
Version: 0.23
|
Version: 0.29
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name Test-SharedFork
|
%define cpan_name Test-SharedFork
|
||||||
Summary: fork test
|
Summary: fork test
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 or GPL-1.0+
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/Test-SharedFork/
|
Url: http://search.cpan.org/dist/Test-SharedFork/
|
||||||
Source: http://www.cpan.org/authors/id/T/TO/TOKUHIROM/%{cpan_name}-%{version}.tar.gz
|
Source: http://www.cpan.org/authors/id/E/EX/EXODIST/%{cpan_name}-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(App::Prove)
|
BuildRequires: perl(App::Prove)
|
||||||
BuildRequires: perl(CPAN::Meta)
|
|
||||||
BuildRequires: perl(CPAN::Meta::Prereqs)
|
|
||||||
BuildRequires: perl(Module::Build) >= 0.38
|
|
||||||
BuildRequires: perl(Test::More) >= 0.88
|
BuildRequires: perl(Test::More) >= 0.88
|
||||||
BuildRequires: perl(Test::Requires)
|
BuildRequires: perl(Test::Requires)
|
||||||
Requires: perl(Test::More) >= 0.88
|
Requires: perl(Test::More) >= 0.88
|
||||||
@ -49,18 +46,19 @@ This module merges test count with parent process & child process.
|
|||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Build.PL installdirs=vendor
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||||
./Build build flags=%{?_smp_mflags}
|
%{__make} %{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
./Build test
|
%{__make} test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
./Build install destdir=%{buildroot} create_packlist=0
|
%perl_make_install
|
||||||
|
%perl_process_packlist
|
||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes cpanfile LICENSE README.md README.mkdn
|
%doc Changes LICENSE minil.toml README.md README.mkdn
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user