rebuilt [release 1.08-2mamba;Thu Dec 03 2020]
This commit is contained in:
14
README.md
14
README.md
@ -1,15 +1,5 @@
|
||||
# perl-IO-String
|
||||
|
||||
The "IO::String" module provides the "IO::File" interface for in-core
|
||||
strings. An "IO::String" object can be attached to a string, and
|
||||
makes it possible to use the normal file operations for reading or
|
||||
writing data, as well as for seeking to various locations of the
|
||||
string. This is useful when you want to use a library module that
|
||||
only provides an interface to file handles on data that you have in a
|
||||
string variable.
|
||||
|
||||
Note that perl-5.8 and better has built-in support for "in memory"
|
||||
files, which are set up by passing a reference instead of a filename
|
||||
to the open() call. The reason for using this module is that it makes
|
||||
the code backwards compatible with older versions of Perl.
|
||||
The "IO::String" module provides the "IO::File" interface for in-core strings. An "IO::String" object can be attached to a string, and makes it possible to use the normal file operations for reading or writing data, as well as for seeking to various locations of the string. This is useful when you want to use a library module that only provides an interface to file handles on data that you have in a string variable.
|
||||
Note that perl-5.8 and better has built-in support for "in memory" files, which are set up by passing a reference instead of a filename to the open() call. The reason for using this module is that it makes the code backwards compatible with older versions of Perl.
|
||||
|
||||
|
@ -2,38 +2,29 @@
|
||||
|
||||
Name: perl-IO-String
|
||||
Version: 1.08
|
||||
Release: 1mamba
|
||||
Release: 2mamba
|
||||
Summary: IO::String - Emulate file interface for in-core strings
|
||||
Group: System/Libraries/Perl
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: gil <puntogil@libero.it>
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: http://www.cpan.org
|
||||
Source: http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/IO-String-%{version}.tar.gz
|
||||
License: GPL, Artistic
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: perl-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
Requires: perl >= %perl_major_ver
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
%description
|
||||
The "IO::String" module provides the "IO::File" interface for in-core
|
||||
strings. An "IO::String" object can be attached to a string, and
|
||||
makes it possible to use the normal file operations for reading or
|
||||
writing data, as well as for seeking to various locations of the
|
||||
string. This is useful when you want to use a library module that
|
||||
only provides an interface to file handles on data that you have in a
|
||||
string variable.
|
||||
|
||||
Note that perl-5.8 and better has built-in support for "in memory"
|
||||
files, which are set up by passing a reference instead of a filename
|
||||
to the open() call. The reason for using this module is that it makes
|
||||
the code backwards compatible with older versions of Perl.
|
||||
The "IO::String" module provides the "IO::File" interface for in-core strings. An "IO::String" object can be attached to a string, and makes it possible to use the normal file operations for reading or writing data, as well as for seeking to various locations of the string. This is useful when you want to use a library module that only provides an interface to file handles on data that you have in a string variable.
|
||||
Note that perl-5.8 and better has built-in support for "in memory" files, which are set up by passing a reference instead of a filename to the open() call. The reason for using this module is that it makes the code backwards compatible with older versions of Perl.
|
||||
|
||||
%prep
|
||||
%setup -q -n IO-String-%{version}
|
||||
|
||||
|
||||
%build
|
||||
perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor
|
||||
%make
|
||||
@ -57,5 +48,8 @@ chmod -R u+w %{buildroot}/*
|
||||
%doc Changes README
|
||||
|
||||
%changelog
|
||||
* Thu Dec 03 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.08-2mamba
|
||||
- rebuilt
|
||||
|
||||
* Thu Feb 17 2011 gil <puntogil@libero.it> 1.08-1mamba
|
||||
- package created by autospec
|
||||
|
Reference in New Issue
Block a user