* Apply a patch from Petya Kohts, RT #65276, with changes for run_forked: 1) fix for the typo in the name of the signal 2) changed default for clean_up_children (which seems to be the behavior expected by the majority of the users) 3) added detection (and forwarding to the caller) of the case when run program is killed by signal 4) kill_gently is now used in cases when parent died and when the executed program times out 5) added options which allow to execute some user code in the beginning and at the end of the child OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-IPC-Cmd?expand=0&rev=2
77 lines
2.4 KiB
RPMSpec
77 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package perl-IPC-Cmd (Version 0.70)
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
Name: perl-IPC-Cmd
|
|
Version: 0.70
|
|
Release: 1
|
|
License: GPL+ or Artistic
|
|
%define cpan_name IPC-Cmd
|
|
Summary: finding and running system commands made easy
|
|
Url: http://search.cpan.org/dist/IPC-Cmd/
|
|
Group: Development/Libraries/Perl
|
|
Source: http://www.cpan.org/authors/id/B/BI/BINGOS/%{cpan_name}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
BuildRequires: perl(File::Spec)
|
|
BuildRequires: perl(Locale::Maketext::Simple)
|
|
BuildRequires: perl(Module::Load::Conditional)
|
|
BuildRequires: perl(Params::Check) >= 0.20
|
|
BuildRequires: perl(Test::More)
|
|
Requires: perl(ExtUtils::MakeMaker)
|
|
Requires: perl(File::Spec)
|
|
Requires: perl(Locale::Maketext::Simple)
|
|
Requires: perl(Module::Load::Conditional)
|
|
Requires: perl(Params::Check) >= 0.20
|
|
Requires: perl(Test::More)
|
|
%{perl_requires}
|
|
|
|
%description
|
|
IPC::Cmd allows you to run commands platform independently, interactively
|
|
if desired, but have them still work.
|
|
|
|
The 'can_run' function can tell you if a certain binary is installed and if
|
|
so where, whereas the 'run' function can actually execute any of the
|
|
commands you give it and give you a clear return value, as well as adhere
|
|
to your verbosity settings.
|
|
|
|
%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
|
|
|
|
%clean
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc CHANGES README
|
|
|
|
%changelog
|