Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-Cpanel-JSON-XS-4.02-lp152.3.6 RPM for ppc64le

From OpenSuSE Ports Leap 15.2 for ppc64le

Name: perl-Cpanel-JSON-XS Distribution: openSUSE:Leap:15.2:PowerPC / ports
Version: 4.02 Vendor: openSUSE
Release: lp152.3.6 Build date: Sat May 16 08:10:55 2020
Group: Development/Libraries/Perl Build host: obs-power8-03
Size: 404567 Source RPM: perl-Cpanel-JSON-XS-4.02-lp152.3.6.src.rpm
Packager: https://bugs.opensuse.org
Url: http://search.cpan.org/dist/Cpanel-JSON-XS/
Summary: Cpanel Fork of Json::Xs, Fast and Correct Serializing
This module converts Perl data structures to JSON and vice versa. Its
primary goal is to be _correct_ and its secondary goal is to be _fast_. To
reach the latter goal it was written in C.

As this is the n-th-something JSON module on CPAN, what was the reason to
write yet another JSON module? While it seems there are many JSON modules,
none of them correctly handle all corner cases, and in most cases their
maintainers are unresponsive, gone missing, or not listening to bug reports
for other reasons.

See below for the cPanel fork.

See MAPPING, below, on how Cpanel::JSON::XS maps perl values to JSON values
and vice versa.

Provides

Requires

License

Artistic-1.0 OR GPL-1.0-or-later

Changelog

* Wed Feb 28 2018 coolo@suse.com
  - updated to 4.02
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    4.02 2018-02-27 (rurban)
    - Add encoder indent_length method (#103 rouzier), previously
      hard-coded to 3.
* Wed Feb 07 2018 coolo@suse.com
  - updated to 4.01
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    4.01 2018-02-03 (rurban)
    - Fix centos7 locale crash (#101 McA), fix required for all
      threaded perl's < 5.22 with glibc.
    4.00 2018-02-02 (rurban,pali)
    - No changes
    3.99_03 2018-01-30 (rurban,pali)
    - Fix uselocale() code.
    - Probe for uselocale and xlocale.h with <5.22 threaded.
    3.99_02 2018-01-30 (rurban,pali)
    - Avoid setlocale race in threads with non-C locales, where the threads differ
      in the LC_NUMERIC locale. (#99 pali)
    3.99_01 2018-01-30 (rurban,pali)
    - Added Cpanel::JSON::XS::Type as 2nd optional encode argument. (#94 pali)
    - Removed calling get magic hooks twice in encode.
    3.0240 2017-12-17 (rurban)
    - Simplify >allow_singlequote check, coverity cid #165321
    - Deprecate UTF-16 or UTF-32 BOM's: RFC 8259.
* Mon Sep 04 2017 coolo@suse.com
  - updated to 3.0239
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0239 2017-08-28 (rurban)
    - Fix compilation under windows. (#98 mauke)
* Sat Aug 26 2017 coolo@suse.com
  - updated to 3.0238
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0238 2017-08-25 (rurban)
    - Make printing of numbers on perl's earlier than 5.22 locale
      insensitive, to produce a dot as decimal sep. (#96)
* Thu Aug 03 2017 coolo@suse.com
  - updated to 3.0237
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0237 2017-07-28 (rurban)
    - relax inf/nan tests as in t/op/infnan.t for windows.
      we cannot know if msvcrt.dll or the new ucrt.dll is used.
      try a list of valid values.
* Fri Jul 28 2017 coolo@suse.com
  - updated to 3.0236
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0236 2017-07-27 (rurban)
    - Stringify true again as "1", not as "true" due to popular demand.
      (haarg #87)
    3.0235 2017-07-27 (rurban)
    - Disallow duplicate keys by default, only allow them in relaxed
      mode. (#75)
      Analog to invalid unicode, which does error by default.
      RFC 7159 section 4 says that "The names within an object should be unique."
      So it's either i_ (undefined) or n_ (errors).
      See http://seriot.ch/parsing_json.php#24
      This is different to the other JSON modules, which do have a different
      interpretation of the spec. Use relaxed for backcompat if you want to
      allow duplicate keys.
    - De-fragilize t/96_mojo.t false test to "". It mostly is.
    3.0234 2017-07-27 (rurban)
    - Fix and unify utf8 handling with 5.6.2
      and improve many utf8 tests. (pali #88)
    - Add tests for boolean sv_yes and sv_no (pali #88)
    - Check for correct module in %INC (Patrick Cronin #89)
    - Fix appveyor smoke with latest strawberry, use $Config{make} (pali #91)
    - Fix inf/nan for strawberry 5.26
* Tue May 02 2017 coolo@suse.com
  - updated to 3.0233
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0233 2017-05-01 (rurban)
    - 5.6 test fixes, silence some cc warnings,
      add coverage and release targets, fix appveyor
    3.0232 2017-04-30 (rurban)
    - Fix for MSVC 2015/14.0 and newer with changed nan/inf. #85
    - Added appveyor CI
    - Silence 32bit debugging format warning
    - stabilize decode_hv hook (Coverity)
    - ignore sv_utf8_downgrade errors (Coverity)
* Thu Mar 30 2017 coolo@suse.com
  - updated to 3.0231
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0231 2017-03-29 (rurban)
    - Fix need() overallocation (#84 Matthew Horsfall) and missing
      need() calls.
* Thu Mar 16 2017 coolo@suse.com
  - updated to 3.0230
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0230 2017-03-12 (rurban)
    - Relax -Werror=declaration-after-statement for older gcc < 4.2
    3.0229 2017-03-10 (rurban)
    - fix minor gcc compilation warnings.
    - Add some core compat. warnings for gcc/clang compat. compilers.
* Thu Mar 09 2017 coolo@suse.com
  - updated to 3.0228
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0228 2017-03-08 (rurban)
    - fix decode_prefix offset when the string was re-allocated.
      rather return the offset not the pointer to the old start. (#82 PaulGWebster)
* Tue Feb 21 2017 coolo@suse.com
  - updated to 3.0227
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0227 2017-02-13 (rurban)
    - fix CLONE and END, broken with 3.0226 (#80 y).
      These methods are usually called with arguments, which we ignore.
* Mon Feb 13 2017 coolo@suse.com
  - updated to 3.0226
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0226 2017-02-11 (rurban)
    - relax longdouble Gconvert test on ppc64le and aarch64-linux-ld,
      with apparent HW quadmath without USE_QUADMATH (older perls).
      (detected by dgolden)
* Thu Nov 24 2016 coolo@suse.com
  - updated to 3.0225
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0225 2016-11-23 (rurban)
    - decode utf8 security fixes for perl 5.6.
      added extra detection code for overflows and non-continuations.
      This broke one 5.6 test with an overlong multi-byte character,
      which previously worked accidently.
      i.e. decode "\x{10204}"
    - Added tests for ill-formed utf8 sequences from Encode.
* Mon Nov 21 2016 coolo@suse.com
  - updated to 3.0224
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0224 2016-11-20 (rurban)
    - fixes for g++-6, stricter -fpermissive and -Wc++11-compat
* Thu Nov 17 2016 coolo@suse.com
  - updated to 3.0223
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0223 2016-11-16 (rurban)
    - fixed decode bignum with a string prefix. #76, patch by GilmarSantosJr.
* Fri Nov 11 2016 coolo@suse.com
  - updated to 3.0222
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0222 2016-10-30 (rurban)
    - enable decode_bom for multibyte encodings UTF16 and UTF32.
      encode internally to UTF-8.
    3.0221 2016-10-30 (rurban)
    - fixed documentation of decode for unicode noncharacters.
      added correct code to warn as in core.
      no replacement, ignore warnings when in relaxed mode.
      We used a wrong range also, but the wrong code from 3.02220
      was never executed because of an coding error. #73, #74
    - Fixed a perl 5.6 compilation regression from 3.0220.
    - Improve decode_bom for multibyte encoding, but not yet enabled.
      refcount error.
    - Add 5.24 to travis tests
    3.0220 2016-10-28 (rurban)
    - add comprehensive JSON decode spectests from
      http://seriot.ch/parsing_json.html. #72
    - decode with BOM (UTF-8, UTF-16, or UTF-32). For now only UTF-8,
      the others error.
    - fixed detection of final     spectest 'n_number_then_00'. #72
    - changed decode of unicode noncharacters between U+FFFD and U+10FFFF
      to the recommended U+FFFD REPLACEMENT CHARACTER, when not in the binary
      or relaxed mode.
    - fail decode of non-unicode raw characters above U+10FFFF
      when not in relaxed mode.
* Thu Oct 27 2016 coolo@suse.com
  - updated to 3.0219
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0219 2016-10-26 (rurban)
    - workaround mingw 4.0 modfl() bug [perl #125924]
* Fri Oct 14 2016 coolo@suse.com
  - updated to 3.0218
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0218 2016-10-13 (rurban)
    - no changes
    3.0217_06 2016-10-08 (rurban)
    - fix DPPP_dummy_PL_parser warnings
    3.0217_05 2016-10-07 (rurban)
    - fix t/gh70-asan.t for older perls < 5.14
    3.0217_04 2016-10-07 (rurban)
    - fix and document wrong strEQc usage in new(). #70 (ilmari)
    3.0217_03 2016-10-06 (rurban)
    - expect_false() macro fix for MSVC
    - fix av and hv length types: protect from security sensitive overflows,
      add HVMAX_T and RITER_T
    - add new "Hash key too large" error. perl5 silently truncates it, we
      prefer errors, cperl 5.25.1 does error also.
    - fix broken 5.8.1 SvPOK_only, i.e. assert_not_ROK
    3.0217_02 2016-10-04 (rurban)
    - Use faster strEQc macros from cperl with constant strings.
    - prefer memEQ for systems without memcmp, to use bcmp there.
    - add more expect_false() to inf/nan branches.
    3.0217_01 2016-10-04 (rurban)
    - Detect INF/NAN: ?/++/-?/--- on HP-UX (#56)
    - New stringify_infnan(3) infnan_mode. Easy to detect platform
      independent "inf", "-inf" or "nan" strings with double quotes,
      with qnan, snan or negative nan unified to "nan".
* Fri Jun 24 2016 coolo@suse.com
  - updated to 3.0217
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0217 2016-06-18 (rurban)
    - Improve test t/20_unknown.t for older JSON::PP (Christopher J. Madsen)
* Mon Jun 13 2016 coolo@suse.com
  - updated to 3.0216
    see /usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
    3.0216 2016-06-12 (rurban)
    - Fix wrong test 117 for 5.10.0 (pghmcfc)
    3.0215 2016-06-03 (rurban)
    - Fix wrong test 117 (pghmcfc)
    - TODO the fragile mojo boolean interop test.
    - Improve error message with class based method calls,
      when forgetting ->new. #66
    3.0214 2016-06-02 (rurban)
    - Fix a off-by-one IV_MIN -> NV overflow in decode_json. #67 (xdg)
    - Avoid encode_sv SEGV with -Dusequadmath #62
      Fix quadmath NV stringification.
    3.0213_02 2016-04-13 (rurban)
    - Remove author-only Pod::Usage dependency (karenetheridge).
    3.0213_01 2016-04-11 (rurban)
    - Preserve numbers as numbers, enforce an added .0 (dagolden).
      Also note that 42+"bar" will result >=5.10 in numbers not integers,
      => 42.0
    - 5.6 compilation fixes
    - add yaml-tiny formats to cpanel_json_xs
* Thu Jun 02 2016 coolo@suse.com
  - initial package 3.0213
    * created by cpanspec 1.78.08

Files

/usr/bin/cpanel_json_xs
/usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi
/usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/Cpanel
/usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/Cpanel/JSON
/usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/Cpanel/JSON/XS
/usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/Cpanel/JSON/XS.pm
/usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/Cpanel/JSON/XS/Boolean.pm
/usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/Cpanel/JSON/XS/Type.pm
/usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/auto/Cpanel
/usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/auto/Cpanel/JSON
/usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/auto/Cpanel/JSON/XS
/usr/lib/perl5/vendor_perl/5.26.1/ppc64le-linux-thread-multi/auto/Cpanel/JSON/XS/XS.so
/usr/share/doc/packages/perl-Cpanel-JSON-XS
/usr/share/doc/packages/perl-Cpanel-JSON-XS/Changes
/usr/share/doc/packages/perl-Cpanel-JSON-XS/README
/usr/share/licenses/perl-Cpanel-JSON-XS
/usr/share/licenses/perl-Cpanel-JSON-XS/COPYING
/usr/share/man/man1/cpanel_json_xs.1.gz
/usr/share/man/man3/Cpanel::JSON::XS.3pm.gz
/usr/share/man/man3/Cpanel::JSON::XS::Boolean.3pm.gz
/usr/share/man/man3/Cpanel::JSON::XS::Type.3pm.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 12:11:19 2024