fae28f006b
Copy from devel:languages:perl/perl-File-Slurp based on submit request 17369 from user coolo OBS-URL: https://build.opensuse.org/request/show/17369 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-File-Slurp?expand=0&rev=1
71 lines
2.1 KiB
RPMSpec
71 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package perl-File-Slurp (Version 9999.13)
|
|
#
|
|
# Copyright (c) 2009 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/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
|
|
Name: perl-File-Slurp
|
|
%define cpan_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
|
|
Summary: Efficient Reading/Writing of Complete Files
|
|
Version: 9999.13
|
|
Release: 1
|
|
License: Artistic License ..
|
|
Group: Development/Libraries/Perl
|
|
Url: http://search.cpan.org/dist/File-Slurp
|
|
Source0: %{cpan_name}-%{version}.tar.bz2
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Test::Pod) >= 1.14
|
|
BuildRequires: perl(Test::Pod::Coverage) >= 1.04
|
|
#BuildRequires: perl(Module::Build)
|
|
Requires: perl = %{perl_version}
|
|
|
|
%description
|
|
This module provides subs that allow you to read or write entire files with one
|
|
simple call. They are designed to be simple to use, have flexible ways to pass
|
|
in or get the file contents and to be very efficient. There is also a sub to
|
|
read in all the files in a directory other than . and ..
|
|
|
|
These slurp/spew subs work for files, pipes and sockets,
|
|
and stdio, pseudo-files, and DATA.
|
|
|
|
Author: Uri Guttman, <uri@stemsystems.com>
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
perl Makefile.PL OPTIMIZE="$RPM_OPT_FLAGS -Wall"
|
|
%{__make}
|
|
|
|
%check
|
|
%{__make} test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%clean
|
|
%{__rm} -rf $RPM_BUILD_ROOT
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root)
|
|
%doc Changes README
|
|
|
|
%changelog
|