Accepting request 226059 from devel:languages:perl
update OBS-URL: https://build.opensuse.org/request/show/226059 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-IO-CaptureOutput?expand=0&rev=3
This commit is contained in:
commit
c799e75fc6
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ea16dbecb21a3c2be49a93fb1e7e51275bed3f7ef3ac30cbdbff5d0178d43c7
|
||||
size 26126
|
3
IO-CaptureOutput-1.1103.tar.gz
Normal file
3
IO-CaptureOutput-1.1103.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a5826b36440b2f5c850213129aa607eccb366c4f016b0dcd527f697fd03d94ad
|
||||
size 27314
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 15 12:56:16 UTC 2014 - coolo@suse.com
|
||||
|
||||
- updated to 1.1103
|
||||
[FIXED]
|
||||
|
||||
- Fixed rt.cpan.org #71775: test failure on non-threaded Win32 perls
|
||||
|
||||
[CHANGED]
|
||||
|
||||
- Updated metadata, repo and bugtracker
|
||||
|
||||
- Switched distribution management to Dist::Zilla
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 30 19:20:21 UTC 2010 - coolo@novell.com
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
# vim: set sw=4 ts=4 et nu:
|
||||
#
|
||||
# spec file for package perl-IO-CaptureOutput
|
||||
#
|
||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2014 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
|
||||
@ -18,66 +17,48 @@
|
||||
|
||||
|
||||
Name: perl-IO-CaptureOutput
|
||||
Version: 1.1102
|
||||
Version: 1.1103
|
||||
Release: 0
|
||||
%define cpan_name IO-CaptureOutput
|
||||
Summary: Capture STDOUT and STDERR from Perl code, subprocesses or XS
|
||||
License: Artistic-1.0 or GPL-1.0+
|
||||
Group: Development/Libraries/Perl
|
||||
Source: http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-%{version}.tar.gz
|
||||
Url: http://search.cpan.org/dist/IO-CaptureOutput/
|
||||
Source: http://www.cpan.org/authors/id/D/DA/DAGOLDEN/%{cpan_name}-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%{perl_requires}
|
||||
BuildRequires: make
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Carp)
|
||||
BuildRequires: perl(Exporter)
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
BuildRequires: perl(File::Basename)
|
||||
BuildRequires: perl(File::Spec)
|
||||
BuildRequires: perl(File::Temp)
|
||||
BuildRequires: perl(IO::File)
|
||||
BuildRequires: perl(Symbol)
|
||||
BuildRequires: perl(Test::More)
|
||||
Requires: perl(Carp)
|
||||
Requires: perl(Exporter)
|
||||
Requires: perl(File::Basename)
|
||||
Requires: perl(File::Spec)
|
||||
Requires: perl(File::Temp)
|
||||
Requires: perl(IO::File)
|
||||
Requires: perl(Symbol)
|
||||
BuildRequires: perl(File::Spec) >= 3.27
|
||||
BuildRequires: perl(version)
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
*This module is no longer recommended by the maintainer* - see the
|
||||
Capture::Tiny manpage instead.
|
||||
|
||||
This module provides routines for capturing STDOUT and STDERR from perl
|
||||
subroutines, forked system calls (e.g. system(), fork()) and from XS or C
|
||||
modules.
|
||||
subroutines, forked system calls (e.g. 'system()', 'fork()') and from XS or
|
||||
C modules.
|
||||
|
||||
%prep
|
||||
%setup -q -n "IO-CaptureOutput-%{version}"
|
||||
%__sed -i '/^auto_install/d' Makefile.PL
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
find . -type f -print0 | xargs -0 chmod 644
|
||||
|
||||
%build
|
||||
%__perl Makefile.PL PREFIX="%{_prefix}"
|
||||
%__make %{?jobs:-j%{jobs}}
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
%{__make} %{?_smp_mflags}
|
||||
|
||||
%check
|
||||
%{__make} test
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%check
|
||||
%__make test
|
||||
|
||||
%clean
|
||||
%{?buildroot:%__rm -rf "%{buildroot}"}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc Changes README
|
||||
%dir %{perl_vendorlib}/IO
|
||||
%{perl_vendorlib}/IO/CaptureOutput.pm
|
||||
%{perl_vendorlib}/IO/CaptureOutput.pod
|
||||
%dir %{perl_vendorarch}/auto/IO
|
||||
%{perl_vendorarch}/auto/IO/CaptureOutput
|
||||
%doc %{perl_man3dir}/IO::CaptureOutput.%{perl_man3ext}%{ext_man}
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes CONTRIBUTING cpanfile examples LICENSE perlcritic.rc README
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user