diff --git a/Data-Dump-1.15.tar.bz2 b/Data-Dump-1.15.tar.bz2 deleted file mode 100644 index 0b08fed..0000000 --- a/Data-Dump-1.15.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ff210fbb3fe7b117a1ddc568342a24901c576101e57c8c6969cc07872e810864 -size 14913 diff --git a/Data-Dump-1.19.tar.gz b/Data-Dump-1.19.tar.gz new file mode 100644 index 0000000..e150102 --- /dev/null +++ b/Data-Dump-1.19.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3aea333596aec4b722379220b7b33d39aa16912e4e59b6e62bdbd50bf46c357 +size 19705 diff --git a/perl-Data-Dump.changes b/perl-Data-Dump.changes index af35697..e0af4b4 100644 --- a/perl-Data-Dump.changes +++ b/perl-Data-Dump.changes @@ -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 diff --git a/perl-Data-Dump.spec b/perl-Data-Dump.spec index 4f73227..11ad2af 100644 --- a/perl-Data-Dump.spec +++ b/perl-Data-Dump.spec @@ -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