perl-JSON-PP/perl-JSON-PP.spec

66 lines
1.9 KiB
RPMSpec
Raw Normal View History

2019-09-30 11:12:38 -04:00
Name: perl-JSON-PP
Epoch: 1
Version: 4.04
2019-12-25 16:02:24 +08:00
Release: 2
Summary: JSON::XS compatible pure-Perl module.
2019-09-30 11:12:38 -04:00
License: GPL+ or Artistic
URL: https://metacpan.org/release/JSON-PP
Source0: https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/JSON-PP-%{version}.tar.gz
BuildArch: noarch
BuildRequires:perl-generators perl-interpreter perl(ExtUtils::MakeMaker) perl(Test::More) make
2019-12-25 16:02:24 +08:00
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) perl(Encode)
2019-09-30 11:12:38 -04:00
Requires: perl(Data::Dumper) perl(Math::BigFloat) perl(Math::BigInt) perl(Scalar::Util) >= 1.08 perl(utf8)
%description
2019-12-25 16:02:24 +08:00
JSON::PP is a pure perl JSON decoder/encoder, and (almost) compatible to much faster JSON::XS
2019-09-30 11:12:38 -04:00
written by Marc Lehmann in C. JSON::PP works as a fallback module when you use JSON module without having installed JSON::XS.
2019-12-25 16:02:24 +08:00
Because of this fallback feature of JSON.pm, JSON::PP tries not to be more JavaScript-friendly than JSON::XS
(i.e. not to escape extra characters such as U+2028 and U+2029, etc), in order for you not to lose such JavaScript-friendliness
silently when you use JSON.pm and install JSON::XS for speed or by accident. If you need JavaScript-friendly RFC7159-compliant
2019-09-30 11:12:38 -04:00
pure perl module, try JSON::Tiny, which is derived from Mojolicious web framework and is also smaller and faster than JSON::PP.
%package_help
%prep
%autosetup -n JSON-PP-%{version} -p1
%build
2019-12-25 16:02:24 +08:00
perl Makefile.PL INSTALLDIRS=vendor NO_PERLLOCAL=1 NO_PACKLIST=1
2019-09-30 11:12:38 -04:00
%make_build
%install
%make_install
%{_fixperms} -c %{buildroot}
%check
make test
%pre
%preun
%post
%postun
%files
%defattr(-,root,root)
%doc Changes README
%{_bindir}/*
%{perl_vendorlib}/*
%files help
%defattr(-,root,root)
%{_mandir}/*/*
%changelog
2019-12-25 16:02:24 +08:00
* Sat Dec 21 2019 openEuler Buildteam <buildteam@openeuler.org> - 1:4.04-2
- Add requires
* Tue Sep 10 2019 openEuler Buildteam <buildteam@openeuler.org> - 1:4.04-1
2019-09-30 11:12:38 -04:00
- Package init