From c5cae8ed079d0ec775f5a017c2771e32d1a51056 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Nov 01 2019 18:36:35 +0000 Subject: import jansson-2.10-1.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aab4b40 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/jansson-2.10.tar.bz2 diff --git a/.jansson.metadata b/.jansson.metadata new file mode 100644 index 0000000..e4ed455 --- /dev/null +++ b/.jansson.metadata @@ -0,0 +1 @@ +d8eb6d1144d7392673f3d2a25bb1cf9e8454e252 SOURCES/jansson-2.10.tar.bz2 diff --git a/SPECS/jansson.spec b/SPECS/jansson.spec new file mode 100644 index 0000000..5c9313c --- /dev/null +++ b/SPECS/jansson.spec @@ -0,0 +1,126 @@ +Name: jansson +Version: 2.10 +Release: 1%{?dist} +Summary: C library for encoding, decoding and manipulating JSON data + +Group: System Environment/Libraries +License: MIT +URL: http://www.digip.org/jansson/ +Source0: http://www.digip.org/jansson/releases/jansson-%{version}.tar.bz2 + +BuildRequires: python-sphinx + +%description +Small library for parsing and writing JSON documents. + +%package devel +Summary: Header files for jansson +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +Header files for developing applications making use of jansson. + +%package devel-doc +Summary: Development documentation for jansson +BuildArch: noarch + +%description devel-doc +Development documentation for jansson. + +%prep +%setup -q + +%if 0%{?rhel} == 6 +%{__sed} -i 's/code-block:: shell/code-block:: none/g' doc/*.rst +%endif + +%build +%configure --disable-static +make %{?_smp_mflags} +make html + +%check +make check + +%install +make install INSTALL="install -p" DESTDIR="$RPM_BUILD_ROOT" +rm "$RPM_BUILD_ROOT%{_libdir}"/*.la + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%doc LICENSE CHANGES +%{_libdir}/*.so.* + +%files devel +%{_libdir}/*.so +%{_libdir}/pkgconfig/%{name}.pc +%{_includedir}/* + +%files devel-doc +%doc doc/_build/html/* + +%changelog +* Fri Mar 10 2017 Nathaniel McCallum - 2.10-1 +- Update to 2.10 [1389805] +- Merge spec file with Fedora + +* Fri Mar 14 2014 Jiri Pirko 2.4-6 +- Fix multilib conflicts by creating devel-doc package [1076415] + +* Thu Feb 13 2014 Jiri Pirko 2.4-5 +- Change hash function, randomize hashes [1063831] + +* Fri Jan 24 2014 Daniel Mach - 2.4-4 +- Mass rebuild 2014-01-24 + +* Fri Dec 27 2013 Daniel Mach - 2.4-3 +- Mass rebuild 2013-12-27 + +* Thu Feb 14 2013 Fedora Release Engineering - 2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Thu Nov 08 2012 Jiri Pirko 2.4-1 +- Update to Jansson 2.4. + +* Thu Jul 19 2012 Fedora Release Engineering - 2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Feb 03 2012 Jiri Pirko 2.3-1 +- Update to Jansson 2.3. + +* Fri Jan 13 2012 Fedora Release Engineering - 2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Thu Jun 11 2011 Sean Middleditch 2.1-1 +- Update to Jansson 2.1. +- Drop Sphinx patch, no longer necessary. + +* Wed Feb 09 2011 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Thu Jul 03 2010 Sean Middleditch 1.3-1 +- Update to Jansson 1.3. +- Disable warnings-as-errors for Sphinx documentation. + +* Thu Jan 21 2010 Sean Middleditch 1.2-1 +- Update to Jansson 1.2. + +* Thu Jan 11 2010 Sean Middleditch 1.1.3-4 +- Update jansson description per upstream's suggestions. +- Removed README from docs. + +* Thu Jan 09 2010 Sean Middleditch 1.1.3-3 +- Correct misspelling of jansson in the pkg-config file. + +* Thu Jan 09 2010 Sean Middleditch 1.1.3-2 +- Fix Changelog dates. +- Mix autoheader warning. +- Added make check. +- Build and install HTML documentation in -devel package. + +* Thu Jan 07 2010 Sean Middleditch 1.1.3-1 +- Initial packaging for Fedora.