forked from pool/perl-JSON
- fix provides - JSON::PP is really another module
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-JSON?expand=0&rev=20
This commit is contained in:
committed by
Git OBS Bridge
parent
17847c63a7
commit
aae7f2cbc4
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-JSON
|
||||
# spec file for package perl-JSON (Version 2.51)
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -15,38 +15,37 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%bcond_with pod
|
||||
|
||||
Name: perl-JSON
|
||||
%define cpan_name JSON
|
||||
Summary: JSON (JavaScript Object Notation) encoder/decoder
|
||||
Version: 2.51
|
||||
Release: 1
|
||||
License: GPL+ or Artistic
|
||||
Group: Development/Libraries/Perl
|
||||
%define cpan_name JSON
|
||||
Summary: JSON (JavaScript Object Notation) encoder/decoder
|
||||
Url: http://search.cpan.org/dist/JSON/
|
||||
# http://search.cpan.org/CPAN/authors/id/M/MA/MAKAMAKA/JSON-%{version}.tar.gz
|
||||
Source: %{cpan_name}-%{version}.tar.bz2
|
||||
Group: Development/Libraries/Perl
|
||||
#Source: http://www.cpan.org/authors/id/M/MA/MAKAMAKA/JSON-%{version}.tar.gz
|
||||
Source: %{cpan_name}-%{version}.tar.gz
|
||||
Patch0: fix_provides.diff
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%{perl_requires}
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
%if %{with pod}
|
||||
BuildRequires: perl(Test::Pod) >= 1.00
|
||||
%endif
|
||||
BuildRequires: perl(JSON::XS) >= 2.27
|
||||
BuildRequires: perl(Test::More)
|
||||
Recommends: perl(JSON::XS) >= 2.27
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
JSON (JavaScript Object Notation) is a simple data format. See to
|
||||
http://www.json.org/ and RFC4627(http://www.ietf.org/rfc/rfc4627.txt).
|
||||
************************** CAUTION ********************************
|
||||
* This is 'JSON module version 2' and there are many differences *
|
||||
* to version 1.xx *
|
||||
* Please check your applications useing old version. *
|
||||
* See to 'INCOMPATIBLE CHANGES TO OLD VERSION' *
|
||||
*******************************************************************
|
||||
|
||||
This module converts Perl data structures to JSON and vice versa using either
|
||||
JSON::XS or JSON::PP.
|
||||
JSON (JavaScript Object Notation) is a simple data format. See to the
|
||||
http://www.json.org/ manpage and 'RFC4627'(the
|
||||
http://www.ietf.org/rfc/rfc4627.txt manpage).
|
||||
|
||||
This module converts Perl data structures to JSON and vice versa using
|
||||
either the JSON::XS manpage or the JSON::PP manpage.
|
||||
|
||||
JSON::XS is the fastest and most proper JSON module on CPAN which must be
|
||||
compiled and installed in your environment. JSON::PP is a pure-Perl module
|
||||
@@ -56,12 +55,19 @@ JSON::XS.
|
||||
This module try to use JSON::XS by default and fail to it, use JSON::PP
|
||||
instead. So its features completely depend on JSON::XS or JSON::PP.
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Makamaka Hannyaharamitu, <makamaka[at]cpan.org>
|
||||
See to the BACKEND MODULE DECISION manpage.
|
||||
|
||||
To distinguish the module name 'JSON' and the format type JSON, the former
|
||||
is quoted by C<> (its results vary with your using media), and the latter
|
||||
is left just as it is.
|
||||
|
||||
Module name : 'JSON'
|
||||
|
||||
Format type : JSON
|
||||
|
||||
%prep
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
%patch0
|
||||
|
||||
%build
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
@@ -72,18 +78,14 @@ Authors:
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
# do not perl_process_packlist (noarch)
|
||||
# remove .packlist file
|
||||
%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
|
||||
# remove perllocal.pod file
|
||||
%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%clean
|
||||
%{__rm} -rf $RPM_BUILD_ROOT
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,-)
|
||||
%defattr(644,root,root,755)
|
||||
%doc Changes README
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user