2012-06-25 11:37:41 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-JSON-PP
|
|
|
|
#
|
2017-05-23 18:13:30 +00:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2012-06-25 11:37:41 +00:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: perl-JSON-PP
|
2017-12-07 14:05:55 +00:00
|
|
|
Version: 2.97000
|
2012-06-25 11:37:41 +00:00
|
|
|
Release: 0
|
|
|
|
%define cpan_name JSON-PP
|
2016-05-20 05:16:17 +00:00
|
|
|
Summary: JSON::XS compatible pure-Perl module
|
|
|
|
License: Artistic-1.0 or GPL-1.0+
|
2012-06-25 11:37:41 +00:00
|
|
|
Group: Development/Libraries/Perl
|
|
|
|
Url: http://search.cpan.org/dist/JSON-PP/
|
2017-05-23 18:13:30 +00:00
|
|
|
Source0: https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/%{cpan_name}-%{version}.tar.gz
|
2016-05-20 05:16:17 +00:00
|
|
|
Source1: cpanspec.yml
|
2012-06-25 11:37:41 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
|
|
|
%{perl_requires}
|
2017-07-12 08:02:25 +00:00
|
|
|
# MANUAL BEGIN
|
|
|
|
# zypper vcmp 2.27200 2.93
|
|
|
|
# 2.27200 is newer than 2.93
|
|
|
|
# => Provide a package version which is bigger....
|
|
|
|
Provides: %{name} = %{version}000-%{release}
|
|
|
|
Provides: perl(JSON::PP) = %{version}000
|
|
|
|
# MANUAL END
|
2012-06-25 11:37:41 +00:00
|
|
|
|
|
|
|
%description
|
2017-07-12 08:02:25 +00:00
|
|
|
JSON::PP is a pure perl JSON decoder/encoder (as of RFC4627, which we know
|
|
|
|
is obsolete but we still stick to; see below for an option to support part
|
|
|
|
of RFC7159), and (almost) compatible to much faster JSON::XS written by
|
|
|
|
Marc Lehmann in C. JSON::PP works as a fallback module when you use JSON
|
|
|
|
module without having installed JSON::XS.
|
2012-06-25 11:37:41 +00:00
|
|
|
|
2017-07-12 08:02:25 +00: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 nor support RFC7159/ECMA-404), 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 pure perl module, try JSON::Tiny, which is derived from
|
|
|
|
Mojolicious web framework and is also smaller and faster than JSON::PP.
|
2012-06-25 11:37:41 +00:00
|
|
|
|
2017-07-12 08:02:25 +00:00
|
|
|
JSON::PP has been in the Perl core since Perl 5.14, mainly for CPAN
|
|
|
|
toolchain modules to parse META.json.
|
2012-06-25 11:37:41 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
|
|
|
|
%check
|
|
|
|
%{__make} test
|
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
2017-07-12 08:02:25 +00:00
|
|
|
%perl_process_packlist
|
|
|
|
# MANUAL BEGIN
|
2016-12-03 01:46:46 +00:00
|
|
|
%if 0%{?suse_version} >= 1210
|
2017-07-12 08:02:25 +00:00
|
|
|
# newer perl has these included
|
2016-12-03 01:46:46 +00:00
|
|
|
rm %{buildroot}/%{_mandir}/man1/json_pp.1
|
|
|
|
rm %{buildroot}/%{_bindir}/json_pp
|
|
|
|
%endif
|
2017-07-12 08:02:25 +00:00
|
|
|
# MANUAL END
|
2012-06-25 11:37:41 +00:00
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
2016-05-20 05:16:17 +00:00
|
|
|
%defattr(-,root,root,755)
|
2012-06-25 11:37:41 +00:00
|
|
|
%doc Changes README
|
|
|
|
|
|
|
|
%changelog
|