rebuilt [release 1.08-2mamba;Thu Dec 03 2020]

This commit is contained in:
Silvan Calarco 2024-01-06 09:10:44 +01:00
parent 16da7b6a03
commit 7625b02c23
2 changed files with 12 additions and 28 deletions

View File

@ -1,15 +1,5 @@
# perl-IO-String # perl-IO-String
The "IO::String" module provides the "IO::File" interface for in-core 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.
strings. An "IO::String" object can be attached to a string, and 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.
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.

View File

@ -2,38 +2,29 @@
Name: perl-IO-String Name: perl-IO-String
Version: 1.08 Version: 1.08
Release: 1mamba Release: 2mamba
Summary: IO::String - Emulate file interface for in-core strings Summary: IO::String - Emulate file interface for in-core strings
Group: System/Libraries/Perl Group: System/Libraries/Perl
Vendor: openmamba Vendor: openmamba
Distribution: openmamba Distribution: openmamba
Packager: gil <puntogil@libero.it> Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.cpan.org URL: http://www.cpan.org
Source: http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/IO-String-%{version}.tar.gz Source: http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/IO-String-%{version}.tar.gz
License: GPL, Artistic License: GPL, Artistic
BuildRequires: perl(ExtUtils::MakeMaker) ## AUTOBUILDREQ-BEGIN
BuildRequires: perl-devel BuildRequires: perl-devel
## AUTOBUILDREQ-END
BuildRequires: perl(ExtUtils::MakeMaker)
Requires: perl >= %perl_major_ver Requires: perl >= %perl_major_ver
BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description %description
The "IO::String" module provides the "IO::File" interface for in-core 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.
strings. An "IO::String" object can be attached to a string, and 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.
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 %prep
%setup -q -n IO-String-%{version} %setup -q -n IO-String-%{version}
%build %build
perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor
%make %make
@ -57,5 +48,8 @@ chmod -R u+w %{buildroot}/*
%doc Changes README %doc Changes README
%changelog %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 * Thu Feb 17 2011 gil <puntogil@libero.it> 1.08-1mamba
- package created by autospec - package created by autospec