ac00ded5cc
license update: BSD-2-Clause or GPL-2.0+ or Artistic-1.0 See License OBS-URL: https://build.opensuse.org/request/show/108476 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-IPC-Run3?expand=0&rev=25
70 lines
2.2 KiB
RPMSpec
70 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package perl-IPC-Run3
|
|
#
|
|
# 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-IPC-Run3
|
|
Version: 0.045
|
|
Release: 0
|
|
%define cpan_name IPC-Run3
|
|
Summary: Run a subprocess with input/ouput redirection
|
|
License: BSD-2-Clause or GPL-2.0+ or Artistic-1.0
|
|
Group: Development/Libraries/Perl
|
|
Url: http://search.cpan.org/dist/IPC-Run3/
|
|
Source: http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
#BuildRequires: perl(IPC::Run3)
|
|
#BuildRequires: perl(IPC::Run3::ProfArrayBuffer)
|
|
#BuildRequires: perl(IPC::Run3::ProfLogger)
|
|
#BuildRequires: perl(IPC::Run3::ProfLogReader)
|
|
#BuildRequires: perl(IPC::Run3::ProfPP)
|
|
#BuildRequires: perl(IPC::Run3::ProfReporter)
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This module allows you to run a subprocess and redirect stdin, stdout,
|
|
and/or stderr to files and perl data structures. It aims to satisfy 99% of
|
|
the need for using 'system', 'qx', and 'open3' with a simple, extremely
|
|
Perlish API.
|
|
|
|
Speed, simplicity, and portability are paramount. (That's speed of Perl
|
|
code; which is often much slower than the kind of buffered I/O that this
|
|
module uses to spool input to and output from the child command.)
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%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 LICENSE README
|
|
|
|
%changelog
|