8
0
Pascal Bleser
2011-03-03 21:22:51 +00:00
committed by Git OBS Bridge
parent 06e9b98c30
commit 4bee4d6a1c
4 changed files with 44 additions and 11 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ff210fbb3fe7b117a1ddc568342a24901c576101e57c8c6969cc07872e810864
size 14913

3
Data-Dump-1.19.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d3aea333596aec4b722379220b7b33d39aa16912e4e59b6e62bdbd50bf46c357
size 19705

View File

@@ -1,3 +1,30 @@
-------------------------------------------------------------------
Thu Mar 03 21:08:10 UTC 2011 - pascal.bleser@opensuse.org
- update to 1.19
- changes from 1.18:
* don't downgrade is_utf8-strings with MIME::Base64 [RT#60103]
* deal with the perl-5.13 (?^:...) regex construct [RT#61552]
- changes from 1.17:
* fix dump of "1\n" (the newline was lost) [RT#56595]
* start using the range operator to shorten list dumps; for instance
dump(1,2,3,4,5) now returns '(1 .. 5)'
* CODE references now dumped as 'sub { ... }'
* fix how multiline hash values are indented
* make indentation configurable
- changes from 1.16:
* add support for filter callbacks
+ filters can modify how selected objects are dumped
* various enhancements to how/when hash keys are quoted
+ don't quote keywords
+ don't quote words prefixed with "-"
+ don't quote long identifier keys
+ quote all hash keys if one needs quoting for better alignment
* use case-insensitive sorting for hash keys
-------------------------------------------------------------------
Tue Nov 30 19:20:04 UTC 2010 - coolo@novell.com
@@ -35,33 +62,33 @@ Fixed regexp that determines if hash keys are numeric [RT#48003]
- added perl-macros
-------------------------------------------------------------------
Do Jun 22 00:00:00 UTC 2006 - jfunk@funktronics.ca
Thu Jun 22 00:00:00 UTC 2006 - jfunk@funktronics.ca
- Build under buildservice
-------------------------------------------------------------------
Fr Oct 28 00:00:00 UTC 2005 - jfunk@funktronics.ca
Fri Oct 28 00:00:00 UTC 2005 - jfunk@funktronics.ca
- Build for SL10
-------------------------------------------------------------------
Mo Jun 6 00:00:00 UTC 2005 - jfunk@funktronics.ca
Mon Jun 6 00:00:00 UTC 2005 - jfunk@funktronics.ca
- Build for SL93
-------------------------------------------------------------------
Sa Dec 18 00:00:00 UTC 2004 - jfunk@funktronics.ca
Sat Dec 18 00:00:00 UTC 2004 - jfunk@funktronics.ca
- Update
- Build for SL92
-------------------------------------------------------------------
Mo Mai 17 00:00:00 UTC 2004 - jfunk@funktronics.ca
Mon May 17 00:00:00 UTC 2004 - jfunk@funktronics.ca
- Build for SL91
-------------------------------------------------------------------
Fr Nov 7 00:00:00 UTC 2003 - jfunk@funktronics.ca
Fri Nov 7 00:00:00 UTC 2003 - jfunk@funktronics.ca
- Initial release

View File

@@ -20,17 +20,20 @@
Name: perl-Data-Dump
%define cpan_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
Summary: Pretty printing of data structures
Version: 1.15
Version: 1.19
Release: 1
License: GPL/Artistic
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Data-Dump
Source: %{cpan_name}-%{version}.tar.bz2
Source: http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Data-Dump-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%{perl_requires}
BuildRequires: perl
BuildRequires: perl-macros
Provides: %{cpan_name}
%if 0%{?suse_version} >= 1120
BuildArch: noarch
%endif
%description
This module provide functions that takes a list of values as their
@@ -38,6 +41,9 @@ argument and produces a string as its result. The string contains Perl
code that, when "eval"ed, produces a deep copy of the original
arguments.
Authors:
--------
Gisle Aas <gisle@aas.no>