Sophie

Sophie

distrib > Mageia > 3 > i586 > media > core-release-src > by-pkgid > c6ce673247bb2659d768d0398f7109a7 > files > 2

perl-Shell-0.720.0-2.mga3.src.rpm

%define upstream_name    Shell
%define upstream_version 0.72

Name:       perl-%{upstream_name}
Version:    %perl_convert_version %{upstream_version}
Release:    %mkrel 2

Summary:    Run shell commands transparently within perl
License:    GPL+ or Artistic
Group:      Development/Perl
Url:        http://search.cpan.org/dist/%{upstream_name}
Source0:    http://www.cpan.org/modules/by-module//%{upstream_name}-%{upstream_version}.tar.gz

BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(Test::More)
BuildArch: noarch

%description
Caveats
    This package is included as a show case, illustrating a few Perl
    features. It shouldn't be used for production programs. Although it
    does provide a simple interface for obtaining the standard output of
    arbitrary commands, there may be better ways of achieving what you
    need.

    Running shell commands while obtaining standard output can be done with
    the C<qx/STRING/> operator, or by calling C<open> with a filename
    expression that ends with C<|>, giving you the option to process one
    line at a time. If you don't need to process standard output at all,
    you might use C<system> (in preference of doing a print with the
    collected standard output).

    Since Shell.pm and all of the aforementioned techniques use your
    system's shell to call some local command, none of them is portable
    across different systems. Note, however, that there are several built
    in functions and library packages providing portable implementations of
    functions operating on files, such as: C<glob>, C<link> and C<unlink>,
    C<mkdir> and C<rmdir>, C<rename>, C<File::Compare>, C<File::Copy>,
    C<File::Find> etc.

%prep
%setup -q -n %{upstream_name}-%{upstream_version}

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor

%make

%check
%make test

%install
%makeinstall_std

%files
%doc Changes README META.yml
%{_mandir}/man3/*
%perl_vendorlib/*




%changelog

* Sun Jan 13 2013 umeabot <umeabot> 0.720.0-2.mga3
+ Revision: 372628
- Mass Rebuild - https://wiki.mageia.org/en/Feature:Mageia3MassRebuild

* Mon Aug 13 2012 jquelin <jquelin> 0.720.0-1.mga3
+ Revision: 281087
- imported package perl-Shell