initial commit of file from CVS for perl-Tie-Array-CSV on Sun Mar 24 22:29:26 AEDT 2024

master
Trevor Batley 2 months ago
parent ae61ae9f25
commit dfb7db7821

1
.gitattributes vendored

@ -0,0 +1 @@
*. filter=lfs diff=lfs merge=lfs -text

3
.gitignore vendored

@ -0,0 +1,3 @@
*.rpm
*.log
*spec-20*

@ -1,3 +1,9 @@
# perl-Tie-Array-CSV
3rd Party (Maintained by Koozali) git repo for perl-Tie-Array-CSV smeserver
3rd Party (Maintained by Koozali) git repo for perl-Tie-Array-CSV smeserver
## Description
<br />*This description has been generated by an LLM AI system and cannot be relied on to be fully correct.*
*Once it has been checked, then this comment will be deleted*
<br />

Binary file not shown.

@ -0,0 +1 @@
sme10

@ -0,0 +1,56 @@
Name: perl-Tie-Array-CSV
Version: 0.08
Release: 1%{?dist}
Summary: Tied array which combines the power of Tie::File and Text::CSV
License: GPL+ or Artistic
Group: Development/Libraries
URL: http://search.cpan.org/dist/Tie-Array-CSV/
Source0: http://www.cpan.org/authors/id/J/JB/JBERGER/Tie-Array-CSV-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: perl >= 0:5.006001
BuildRequires: perl(Module::Build)
BuildRequires: perl(Scalar::Util)
BuildRequires: perl(Text::CSV)
BuildRequires: perl(Tie::File)
Requires: perl(Scalar::Util)
Requires: perl(Text::CSV)
Requires: perl(Tie::File)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
%description
This module allows an array to be tied to a CSV file for reading and
writing. The array is a standard Perl 2D array (i.e. an array of array
references) which gives access to the row and column of the user's
choosing. This is done using the well established modules:
%prep
%setup -q -n Tie-Array-CSV-%{version}
%build
%{__perl} Build.PL --installdirs=vendor
./Build
%install
rm -rf $RPM_BUILD_ROOT
./Build install --destdir=$RPM_BUILD_ROOT --create_packlist=0
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
%{_fixperms} $RPM_BUILD_ROOT/*
%check
./Build test
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc Changes META.json
%{perl_vendorlib}/*
%{_mandir}/man3/*
%changelog
* Sun Mar 24 2024 Trevor Batley <trevor@batley.id.au> 0.08-1
- Specfile autogenerated by cpanspec 1.78.
Loading…
Cancel
Save