Adam Majer
f14dc08a28
Fix build with gcc-8 OBS-URL: https://build.opensuse.org/request/show/619749 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/rapidjson?expand=0&rev=4
91 lines
3.1 KiB
RPMSpec
91 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package rapidjson
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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: rapidjson
|
|
Version: 1.1.0
|
|
Release: 0
|
|
Summary: Fast JSON parser and generator for C++
|
|
License: MIT
|
|
Group: Development/Libraries/C and C++
|
|
URL: http://rapidjson.org/
|
|
Source0: https://github.com/miloyip/rapidjson/archive/v%{version}.tar.gz
|
|
Patch0: remove_arch_specific_flags.patch
|
|
Patch1: fix_compilation_sle11sp4.patch
|
|
Patch2: fix_compilation_gcc7.patch
|
|
# PATCH-FIX-UPSTREAM -- ignore_gcc8_warnings.patch -- Ignore GCC 8 warnings.
|
|
Patch3: ignore_gcc8_warnings.patch
|
|
Patch10: fix_install_paths.patch
|
|
BuildRequires: cmake
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: pkgconfig
|
|
|
|
%description
|
|
RapidJSON is a JSON parser and generator for C++. It was inspired by RapidXml.
|
|
- it is small but complete. It supports both SAX and DOM style API.
|
|
The SAX parser is only a half thousand lines of code.
|
|
- it is fast. Its performance can be comparable to strlen(). It also optionally
|
|
supports SSE2/SSE4.2 for acceleration.
|
|
- it is self-contained and header-only. It does not depend on external libraries
|
|
such as BOOST. It even does not depend on STL.
|
|
- it is memory-friendly. Each JSON value occupies exactly 16/20 bytes for most
|
|
32/64-bit machines (excluding text string). By default it uses a fast memory
|
|
allocator, and the parser allocates memory compactly during parsing.
|
|
- it is Unicode-friendly. It supports UTF-8, UTF-16, UTF-32 (LE & BE), and their
|
|
detection, validation and transcoding internally. For example, you can read a
|
|
UTF-8 file and let RapidJSON transcode the JSON strings into UTF-16 in the
|
|
DOM. It also supports surrogates and "\u0000" (null character).
|
|
|
|
%package devel
|
|
Summary: Fast JSON parser and generator for C++
|
|
Group: Development/Libraries/C and C++
|
|
Provides: %{name} = %{version}
|
|
%if 0%{?suse_version} > 1200
|
|
BuildArch: noarch
|
|
%endif
|
|
|
|
%description devel
|
|
RapidJSON is a header-only JSON parser and generator for C++.
|
|
This package contains development headers and examples.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
%patch2 -p1
|
|
%patch3 -p1
|
|
%patch10 -p1
|
|
|
|
%build
|
|
%cmake -DDOC_INSTALL_DIR=%{_docdir}/%{name}
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%cmake_install
|
|
|
|
%files devel
|
|
%license license.txt
|
|
%dir %{_datadir}/cmake/RapidJSON
|
|
%{_datadir}/cmake/RapidJSON/RapidJSONConfig.cmake
|
|
%{_datadir}/cmake/RapidJSON/RapidJSONConfigVersion.cmake
|
|
%{_datadir}/pkgconfig/RapidJSON.pc
|
|
%{_includedir}/%{name}
|
|
%dir %{_docdir}/%{name}
|
|
%{_docdir}/%{name}/*
|
|
|
|
%changelog
|