perl-Capture-Tiny/perl-Capture-Tiny.spec
Stephan Kulow 5453da6b9e - updated to 0.18
Added
  - When capture or tee are called in void context, Capture::Tiny
    skips reading back from the capture handles if it can do so safely
  Fixed:
  - Tied STDIN is always localized before redirections to avoid tees
    hanging on MSWin32
    
  - Copying and reopening STDIN is necessary to avoid tees hanging on MSWin32.
  Fixed:
  - Avoids reopening STDIN while setting up a capture, which avoids
    some problems with pathological tied filehandle implementations
    such as in FCGI
  Tested:
  - Re-enabled tied STDIN testing for MSWin32 to see if changes above
    avoid crashes seen historically

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Capture-Tiny?expand=0&rev=21
2012-05-23 13:22:18 +00:00

75 lines
2.4 KiB
RPMSpec

#
# spec file for package perl-Capture-Tiny
#
# Copyright (c) 2012 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: perl-Capture-Tiny
Version: 0.18
Release: 0
%define cpan_name Capture-Tiny
Summary: Capture STDOUT and STDERR from Perl, XS or external programs
License: Apache-2.0
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Capture-Tiny/
Source: http://www.cpan.org/authors/id/D/DA/DAGOLDEN/%{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
#BuildRequires: perl(Capture::Tiny)
#BuildRequires: perl(Cases)
#BuildRequires: perl(Inline)
#BuildRequires: perl(Test::Differences)
#BuildRequires: perl(Test::Requires)
#BuildRequires: perl(TieEvil)
#BuildRequires: perl(TieLC)
#BuildRequires: perl(Utils)
%{perl_requires}
%description
Capture::Tiny provides a simple, portable way to capture almost anything
sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
code or from an external program. Optionally, output can be teed so that it
is captured while being passed through to the original filehandles. Yes, it
even works on Windows (usually). Stop guessing which of a dozen capturing
modules to use in any particular situation and just use this one.
%prep
%setup -q -n %{cpan_name}-%{version}
# MANUAL BEGIN
%if 0%{?sles_version} == 10 || 0%{?rhel_version} || 0%{?centos_version}
%{__perl} -p -i -e 's|6.31|6.30|' Makefile.PL
%endif
# MANUAL END
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes examples LICENSE perlcritic.rc README README.PATCHING Todo
%changelog