libjansson/libjansson.spec
Adam Majer efbe436373 Accepting request 461496 from home:coolo:branches:openSUSE:Factory
- update to new upstream release 2.9
 * New features:
    Add json_auto_t to automatically decref a value that goes out of scope. 
    Available only on GCC and Clang. (#301)
 * Small documentation fixes.
- changelog from 2.8
 * New features:
   - Always preserve insertion order of object items. json_object_iter() 
     and friends, json_object_foreach() and json_dumps() and friends now 
     always work in the insertion order of object items (#293).
   - Add json_object_foreach_safe() macro that allows json_object_del() 
     calls during iteration (#230).
   - Add json_get_alloc_funcs() to allow reading the allocation functions 
     set by json_set_alloc_funcs() (#262, #264).
   - Add json_pack() format specifiers s?, o? and O? for values that can 
     be null (#261, #270).
 * Bug fixes:
   - Fix a crash when parsing inputs consisting of very deeply nested 
     arrays or objects (#282, #284).
   - Never convert numbers to integers in the parser when 
     JSON_DECODE_INT_AS_REAL is set. 
   - Fix a use-after-free in json_pack() error handling.
   - Fix subnormal number parsing on mingw32.
   - Handle out-of-memory situations gracefully in the hashtable 
     implementation

OBS-URL: https://build.opensuse.org/request/show/461496
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libjansson?expand=0&rev=14
2017-03-06 15:26:15 +00:00

99 lines
2.9 KiB
RPMSpec

#
# spec file for package libjansson
#
# Copyright (c) 2017 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: libjansson
%define lname libjansson4
Summary: C library for encoding, decoding and manipulating JSON data
License: MIT
Group: Development/Libraries/C and C++
Version: 2.9
Release: 0
Url: http://digip.org/jansson/
#Git-Clone: git://github.com/akheron/jansson
Source: http://www.digip.org/jansson/releases/jansson-%version.tar.bz2
Source1: baselibs.conf
Source2: http://www.digip.org/jansson/releases/jansson-%version.tar.bz2.asc
Source3: %name.keyring
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: pkgconfig
%description
Jansson is a C library for encoding, decoding and manipulating JSON data.
It features:
* Simple and intuitive API and data model
* Comprehensive documentation
* No dependencies on other libraries
* Full Unicode support (UTF-8)
* Extensive test suite
%package -n %lname
Summary: C library for encoding, decoding and manipulating JSON data
Group: Development/Libraries/C and C++
%description -n %lname
Jansson is a C library for encoding, decoding and manipulating JSON data.
It features:
* Simple and intuitive API and data model
* Comprehensive documentation
* No dependencies on other libraries
* Full Unicode support (UTF-8)
* Extensive test suite
%package devel
Summary: Development files for libjansson
Group: Development/Libraries/C and C++
Requires: %lname = %version
%description devel
Jansson is a C library for encoding, decoding and manipulating JSON data.
It features:
* Simple and intuitive API and data model
* Comprehensive documentation
* No dependencies on other libraries
* Full Unicode support (UTF-8)
* Extensive test suite
%prep
%setup -q -n jansson-%{version}
%build
%configure --disable-static
make %{?_smp_mflags}
%install
%make_install
rm -f "%buildroot/%_libdir"/*.la;
%post -n %lname -p /sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%files -n %lname
%defattr(-,root,root)
%{_libdir}/libjansson.so.4*
%files devel
%defattr(-,root,root)
%{_includedir}/jansson.h
%{_includedir}/jansson_config.h
%{_libdir}/libjansson.so
%{_libdir}/pkgconfig/jansson.pc
%changelog