8
0

Accepting request 338106 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/338106
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-JSON-Parse?expand=0&rev=6
This commit is contained in:
Stephan Kulow
2015-10-12 11:23:41 +00:00
committed by Git OBS Bridge
parent 467ca55703
commit 6a5771b06d
4 changed files with 24 additions and 10 deletions

View File

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

3
JSON-Parse-0.33.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Oct 12 08:51:10 UTC 2015 - coolo@suse.com
- updated to 0.33
see /usr/share/doc/packages/perl-JSON-Parse/Changes
0.33 2015-10-09
* Memory leak plug
* Small speed improvements
* Minor bug about commas after bare values
* Documentation rewritten to clarify changes in 0.32 and testing.
-------------------------------------------------------------------
Sat Aug 1 08:40:28 UTC 2015 - coolo@suse.com

View File

@@ -17,7 +17,7 @@
Name: perl-JSON-Parse
Version: 0.32
Version: 0.33
Release: 0
%define cpan_name JSON-Parse
Summary: Read JSON into a Perl variable
@@ -37,14 +37,15 @@ JSON means "JavaScript Object Notation" and it is specified in the /RFC
JSON::Parse converts JSON into the nearest equivalent Perl. The function
the /parse_json manpage takes one argument, a string containing JSON, and
returns a Perl reference. The input to 'parse_json' must be a complete JSON
structure.
returns a Perl reference or scalar. The input to 'parse_json' must be a
complete JSON structure.
The module differs from the the JSON manpage module by simplifying the
handling of Unicode. If its input is marked as Unicode characters, the
strings in its output are also marked as Unicode characters.
JSON::Parse accepts only UTF-8 as input. If its input is marked as Unicode
characters, the strings in its output are also marked as Unicode
characters. If its input contains Unicode escapes of the form \u3000, its
output is upgraded to Unicode character strings.
JSON::Parse also provides two high speed validation functions, the
JSON::Parse also offers two high speed validation functions, the
/valid_json manpage and the /assert_valid_json manpage, and a function to
read JSON from a file, the /json_file_to_perl manpage.