This commit is contained in:
parent
41eb2657d5
commit
027ef924d4
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:dde164fbaddc24d25b90d515c102bb17e04fcd2b4d92b70a863c7812abbedaf5
|
|
||||||
size 36480
|
|
3
Text-CSV_XS-0.37.tar.gz
Normal file
3
Text-CSV_XS-0.37.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:89d7da80694e5148005757e7cc16de2a2a93ea6969f36459d3352c43abfb8301
|
||||||
|
size 81883
|
@ -1,3 +1,26 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 4 11:35:03 CEST 2008 - ug@suse.de
|
||||||
|
|
||||||
|
- version to 0.37
|
||||||
|
- Fix leak / make meta info available to getline () + tests
|
||||||
|
- Updated ppport.h
|
||||||
|
- auto-load IO::Handle when needed
|
||||||
|
- Diagnostics for failed new ()
|
||||||
|
- New 'blank_is_undef' option
|
||||||
|
- Fixed allow_whitespace issue, revealed by blank_is_undef
|
||||||
|
- Fixed parse error that passed for q{1, "bar",2} with escape_char +
|
||||||
|
- Extended XS coverage
|
||||||
|
- Removed error 2033
|
||||||
|
- Text-CSV_XS now under git
|
||||||
|
- Added $csv->error_diag () to SYNOPSIS
|
||||||
|
- Added need for diag when new () fails to TODO
|
||||||
|
- Fixed a sneaked-in defined or in examples/csv2xls
|
||||||
|
- Plugged a 32byte memory leak in the cache code (valgrind++)
|
||||||
|
- Improved usage for examples/csv2xls (GetOpt::Long now does --help/-?)
|
||||||
|
- Extended examples/csv2xls to deal with Unicode (-u)
|
||||||
|
- Serious bug in Text::CSV_XS::NV () type setting, causing the
|
||||||
|
resulting field to be truncated to IV
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 16 12:19:26 CEST 2007 - ug@suse.de
|
Mon Jul 16 12:19:26 CEST 2007 - ug@suse.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Text-CSV_XS (Version 0.29)
|
# spec file for package perl-Text-CSV_XS (Version 0.37)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@ -10,20 +10,21 @@
|
|||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
|
|
||||||
Name: perl-Text-CSV_XS
|
Name: perl-Text-CSV_XS
|
||||||
Summary: Perl Module Text::CSV
|
Summary: Perl Module Text::CSV
|
||||||
Version: 0.29
|
Version: 0.37
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Source0: Text-CSV_XS-%{version}.tar.gz
|
Source0: Text-CSV_XS-%{version}.tar.gz
|
||||||
Patch: Text-CSV_XS-%{version}.dif
|
Patch: Text-CSV_XS-%{version}.dif
|
||||||
URL: http://www.cpan.org
|
Url: http://www.cpan.org
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Obsoletes: p_txtcsv
|
Obsoletes: p_txtcsv
|
||||||
Provides: p_txtcsv
|
Provides: p_txtcsv
|
||||||
Requires: perl = %{perl_version}
|
Requires: perl = %{perl_version}
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
|
|
||||||
%description
|
%description
|
||||||
ext::CSV provides facilities for the composition and decomposition of
|
ext::CSV provides facilities for the composition and decomposition of
|
||||||
@ -61,7 +62,27 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
/var/adm/perl-modules/%{name}
|
/var/adm/perl-modules/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Jul 16 2007 - ug@suse.de
|
* Fri Apr 04 2008 ug@suse.de
|
||||||
|
- version to 0.37
|
||||||
|
- Fix leak / make meta info available to getline () + tests
|
||||||
|
- Updated ppport.h
|
||||||
|
- auto-load IO::Handle when needed
|
||||||
|
- Diagnostics for failed new ()
|
||||||
|
- New 'blank_is_undef' option
|
||||||
|
- Fixed allow_whitespace issue, revealed by blank_is_undef
|
||||||
|
- Fixed parse error that passed for q{1, "bar",2} with escape_char +
|
||||||
|
- Extended XS coverage
|
||||||
|
- Removed error 2033
|
||||||
|
- Text-CSV_XS now under git
|
||||||
|
- Added $csv->error_diag () to SYNOPSIS
|
||||||
|
- Added need for diag when new () fails to TODO
|
||||||
|
- Fixed a sneaked-in defined or in examples/csv2xls
|
||||||
|
- Plugged a 32byte memory leak in the cache code (valgrind++)
|
||||||
|
- Improved usage for examples/csv2xls (GetOpt::Long now does --help/-?)
|
||||||
|
- Extended examples/csv2xls to deal with Unicode (-u)
|
||||||
|
- Serious bug in Text::CSV_XS::NV () type setting, causing the
|
||||||
|
resulting field to be truncated to IV
|
||||||
|
* Mon Jul 16 2007 ug@suse.de
|
||||||
- version to 0.29
|
- version to 0.29
|
||||||
* Removed an unused 'use Data::Dumper'
|
* Removed an unused 'use Data::Dumper'
|
||||||
* Added $csv->eof () RT 27424
|
* Added $csv->eof () RT 27424
|
||||||
@ -167,30 +188,30 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Changed the tests to use the accessors instead of the hash keys
|
- Changed the tests to use the accessors instead of the hash keys
|
||||||
except for the ->{types} and ->{_types}
|
except for the ->{types} and ->{_types}
|
||||||
- Moved test.pl to examples/speed.pl
|
- Moved test.pl to examples/speed.pl
|
||||||
* Wed Jan 25 2006 - mls@suse.de
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
- converted neededforbuild to BuildRequires
|
- converted neededforbuild to BuildRequires
|
||||||
* Wed Sep 28 2005 - dmueller@suse.de
|
* Thu Sep 29 2005 dmueller@suse.de
|
||||||
- add norootforbuild
|
- add norootforbuild
|
||||||
* Fri Aug 22 2003 - mjancar@suse.cz
|
* Fri Aug 22 2003 mjancar@suse.cz
|
||||||
- require the perl version we build with
|
- require the perl version we build with
|
||||||
* Fri Jul 18 2003 - nashif@suse.de
|
* Fri Jul 18 2003 nashif@suse.de
|
||||||
- use DESTDIR
|
- use DESTDIR
|
||||||
- fixed filelist
|
- fixed filelist
|
||||||
* Tue Jul 01 2003 - ro@suse.de
|
* Tue Jul 01 2003 ro@suse.de
|
||||||
- use perl_process_packlist macro
|
- use perl_process_packlist macro
|
||||||
* Fri Jun 13 2003 - nashif@suse.de
|
* Fri Jun 13 2003 nashif@suse.de
|
||||||
- Fixed file list
|
- Fixed file list
|
||||||
* Mon Jul 08 2002 - nashif@suse.de
|
* Mon Jul 08 2002 nashif@suse.de
|
||||||
- use mandir macro
|
- use mandir macro
|
||||||
* Tue Dec 11 2001 - nashif@suse.de
|
* Tue Dec 11 2001 nashif@suse.de
|
||||||
- Update to version 0.23
|
- Update to version 0.23
|
||||||
* Wed Mar 07 2001 - nashif@suse.de
|
* Wed Mar 07 2001 nashif@suse.de
|
||||||
- Update to version 0.22
|
- Update to version 0.22
|
||||||
* Wed Nov 08 2000 - nashif@suse.de
|
* Wed Nov 08 2000 nashif@suse.de
|
||||||
- removed buiuld root path from packlist
|
- removed buiuld root path from packlist
|
||||||
* Tue Nov 07 2000 - nashif@suse.de
|
* Tue Nov 07 2000 nashif@suse.de
|
||||||
- Changed to long package name
|
- Changed to long package name
|
||||||
* Wed Oct 11 2000 - nashif@suse.de
|
* Wed Oct 11 2000 nashif@suse.de
|
||||||
- Fixed man path
|
- Fixed man path
|
||||||
* Thu Aug 24 2000 - nashif@suse.de
|
* Thu Aug 24 2000 nashif@suse.de
|
||||||
- Initial Release (0.20)
|
- Initial Release (0.20)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user