2010-01-29 18:46:58 +01:00
|
|
|
#
|
|
|
|
# spec file for package perl-IPC-Run3 (Version 0.043)
|
|
|
|
#
|
|
|
|
# Copyright (c) 2010 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/
|
|
|
|
#
|
|
|
|
|
2010-03-05 11:05:08 +01:00
|
|
|
# norootforbuild
|
2010-01-29 18:46:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
Name: perl-IPC-Run3
|
2010-03-05 11:05:08 +01:00
|
|
|
%define cpan_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
|
2010-01-29 18:46:58 +01:00
|
|
|
Summary: Run a subprocess with input/ouput redirection
|
2010-03-05 11:05:08 +01:00
|
|
|
Version: 0.043
|
2010-03-18 16:18:25 +01:00
|
|
|
Release: 3
|
2010-02-09 22:41:31 +01:00
|
|
|
License: BSDv1+ ; Artistic V1+ ; GPLv1+
|
|
|
|
Group: Development/Libraries/Perl
|
2010-01-29 18:46:58 +01:00
|
|
|
Url: http://search.cpan.org/dist/IPC-Run3/
|
|
|
|
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/IPC-Run3-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2010-03-05 11:05:08 +01:00
|
|
|
BuildRequires: perl
|
|
|
|
%if 0%{?suse_version} < 1120
|
|
|
|
BuildRequires: perl-macros
|
|
|
|
%endif
|
|
|
|
BuildRequires: perl(Test::More) >= 0.31
|
|
|
|
BuildRequires: perl(Test::Pod) >= 1.00
|
|
|
|
BuildRequires: perl(Test::Pod::Coverage) >= 1.04
|
|
|
|
BuildRequires: perl(Time::HiRes)
|
2010-01-29 18:46:58 +01:00
|
|
|
Requires: perl = %{perl_version}
|
2010-03-05 11:05:08 +01:00
|
|
|
Provides: %{cpan_name}
|
2010-01-29 18:46:58 +01:00
|
|
|
|
|
|
|
%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.
|
|
|
|
|
|
|
|
%prep
|
2010-03-05 11:05:08 +01:00
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
2010-01-29 18:46:58 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
2010-03-05 11:05:08 +01:00
|
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
|
|
|
|
%check
|
|
|
|
%{__make} test
|
2010-01-29 18:46:58 +01:00
|
|
|
|
|
|
|
%install
|
2010-02-09 22:41:31 +01:00
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
2010-03-05 11:05:08 +01:00
|
|
|
%perl_gen_filelist
|
2010-01-29 18:46:58 +01:00
|
|
|
|
|
|
|
%clean
|
2010-03-05 11:05:08 +01:00
|
|
|
%{__rm} -rf $RPM_BUILD_ROOT
|
2010-01-29 18:46:58 +01:00
|
|
|
|
2010-03-05 11:05:08 +01:00
|
|
|
%files -f %{name}.files
|
2010-01-29 18:46:58 +01:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc Changes LICENSE README
|
|
|
|
|
|
|
|
%changelog
|