Toshaan Bharvani
3 years ago
commit
0b3126daac
2 changed files with 245 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||||||
|
From 0677666f65b988b2dd44d02966a08fea490d5883 Mon Sep 17 00:00:00 2001 |
||||||
|
From: Petri Lehtinen <petri@digip.org> |
||||||
|
Date: Thu, 9 Sep 2021 21:53:11 +0300 |
||||||
|
Subject: [PATCH] Fix the check-exports tests for versioned symbols |
||||||
|
|
||||||
|
--- |
||||||
|
test/suites/api/check-exports | 2 +- |
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-) |
||||||
|
|
||||||
|
diff --git a/test/suites/api/check-exports b/test/suites/api/check-exports |
||||||
|
index 2b6b3c7..5c82064 100755 |
||||||
|
--- a/test/suites/api/check-exports |
||||||
|
+++ b/test/suites/api/check-exports |
||||||
|
@@ -15,7 +15,7 @@ grep 'json_\|jansson_' $top_srcdir/src/jansson.def \ |
||||||
|
nm -D $SOFILE >/dev/null >$test_log/symbols 2>/dev/null \ |
||||||
|
|| exit 77 # Skip if "nm -D" doesn't seem to work |
||||||
|
|
||||||
|
-grep ' [DT] ' $test_log/symbols | cut -d' ' -f3 | grep -v '^_' | sort >$test_log/output |
||||||
|
+grep ' [DT] ' $test_log/symbols | cut -d' ' -f3 | grep -v '^_' | sed 's/@@libjansson.*//' | sort >$test_log/output |
||||||
|
|
||||||
|
if ! cmp -s $test_log/exports $test_log/output; then |
||||||
|
diff -u $test_log/exports $test_log/output >&2 |
||||||
|
-- |
||||||
|
2.27.0 |
||||||
|
|
@ -0,0 +1,220 @@ |
|||||||
|
Name: jansson |
||||||
|
Version: 2.14 |
||||||
|
Release: 1%{?dist} |
||||||
|
Summary: C library for encoding, decoding and manipulating JSON data |
||||||
|
|
||||||
|
License: MIT |
||||||
|
URL: http://www.digip.org/jansson/ |
||||||
|
Source0: https://github.com/akheron/jansson/releases/download/v%{version}/jansson-%{version}.tar.bz2 |
||||||
|
|
||||||
|
Patch0: Fix-the-check-exports-tests-for-versioned-symbols.patch |
||||||
|
|
||||||
|
BuildRequires: gcc |
||||||
|
BuildRequires: python3-sphinx |
||||||
|
BuildRequires: make |
||||||
|
|
||||||
|
%description |
||||||
|
Small library for parsing and writing JSON documents. |
||||||
|
|
||||||
|
%package devel |
||||||
|
Summary: Header files for jansson |
||||||
|
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 |
||||||
|
%autosetup -p1 |
||||||
|
|
||||||
|
%if 0%{?rhel} == 6 |
||||||
|
%{__sed} -i 's/code-block:: shell/code-block:: none/g' doc/*.rst |
||||||
|
%endif |
||||||
|
|
||||||
|
%build |
||||||
|
%configure --disable-static |
||||||
|
%make_build |
||||||
|
make html |
||||||
|
|
||||||
|
%check |
||||||
|
make check |
||||||
|
|
||||||
|
%install |
||||||
|
%make_install |
||||||
|
rm "$RPM_BUILD_ROOT%{_libdir}"/*.la |
||||||
|
|
||||||
|
%ldconfig_scriptlets |
||||||
|
|
||||||
|
%files |
||||||
|
%license LICENSE |
||||||
|
%doc CHANGES |
||||||
|
%{_libdir}/*.so.* |
||||||
|
|
||||||
|
%files devel |
||||||
|
%{_libdir}/*.so |
||||||
|
%{_libdir}/pkgconfig/%{name}.pc |
||||||
|
%{_includedir}/* |
||||||
|
|
||||||
|
%files devel-doc |
||||||
|
%doc doc/_build/html/* |
||||||
|
|
||||||
|
%changelog |
||||||
|
* Mon Nov 15 2021 Xin Long <lxin@redhat.com> - 2.14-1 |
||||||
|
- Rebase to 2.14 |
||||||
|
Related: rhbz#2001066 |
||||||
|
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.13.1-4 |
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags |
||||||
|
Related: rhbz#1991688 |
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.13.1-3 |
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937 |
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.13.1-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild |
||||||
|
|
||||||
|
* Mon Aug 24 2020 Charalampos Stratakis <cstratak@redhat.com> - 2.13.1-1 |
||||||
|
- Update to 2.13.1 (#1831402) |
||||||
|
- Fix docs build failures with Sphinx 3 (#1823532) |
||||||
|
- Use make macros: https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro |
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-7 |
||||||
|
- Second attempt - Rebuilt for |
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild |
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-6 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild |
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-5 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild |
||||||
|
|
||||||
|
* Sat Aug 3 2019 Peter Robinson <pbrobinson@fedoraproject.org> 2.12-4 |
||||||
|
- Fix build deps, use %%license |
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-3 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild |
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild |
||||||
|
|
||||||
|
* Mon Nov 26 2018 Corey Farrell <git@cfware.com> - 2.12-1 |
||||||
|
- Update to Jansson 2.12 |
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.11-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
||||||
|
|
||||||
|
* Sat Mar 10 2018 Corey Farrell <git@cfware.com> - 2.11-1 |
||||||
|
- Update to Jansson 2.11 |
||||||
|
|
||||||
|
* Mon Feb 19 2018 Jared Smith <jsmith@fedoraproject.org> - 2.10-7 |
||||||
|
- Add missing BuildRequires on gcc |
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-6 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
||||||
|
|
||||||
|
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.10-5 |
||||||
|
- Switch to %%ldconfig_scriptlets |
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-4 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild |
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-3 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
||||||
|
|
||||||
|
* Sat Jun 10 2017 Nathaniel McCallum <npmccallum@redhat.com> - 2.10-2 |
||||||
|
- Add upstream patch for optional arguments to json_pack() |
||||||
|
- Migrate to use autosetup macro |
||||||
|
|
||||||
|
* Thu Mar 02 2017 Nathaniel McCallum <npmccallum@redhat.com> - 2.10-1 |
||||||
|
- Update to Jansson 2.10 |
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
||||||
|
|
||||||
|
* Tue Sep 20 2016 Nathaniel McCallum <npmccallum@redhat.com> - 2.9-1 |
||||||
|
- Update to Jansson 2.9 |
||||||
|
|
||||||
|
* Fri Sep 16 2016 Nathaniel McCallum <npmccallum@redhat.com> - 2.8-1 |
||||||
|
- Update to Jansson 2.8 |
||||||
|
- Add json_auto_t patch |
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.7-3 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
||||||
|
|
||||||
|
* Mon Jan 05 2015 Jiri Pirko <jpirko@redhat.com> 2.7-1 |
||||||
|
- Update to Jansson 2.7 |
||||||
|
|
||||||
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-5 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild |
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-4 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
||||||
|
|
||||||
|
* Sat Mar 15 2014 Jiri Pirko <jpirko@redhat.com> 2.6-3 |
||||||
|
- Create devel-doc package |
||||||
|
|
||||||
|
* Tue Mar 11 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2.6-2 |
||||||
|
- Package cleanups |
||||||
|
|
||||||
|
* Thu Feb 13 2014 Jared Smith <jsmith@fedoraproject.org> - 2.6-1 |
||||||
|
- Update to Jansson 2.6 for CVE-2013-6401 |
||||||
|
|
||||||
|
* Sat Jan 25 2014 Jiri Pirko <jpirko@redhat.com> 2.5-1 |
||||||
|
- Update to Jansson 2.5. |
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4-3 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||||
|
|
||||||
|
* Thu Nov 08 2012 Jiri Pirko <jpirko@redhat.com> 2.4-1 |
||||||
|
- Update to Jansson 2.4. |
||||||
|
|
||||||
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||||
|
|
||||||
|
* Fri Feb 03 2012 Jiri Pirko <jpirko@redhat.com> 2.3-1 |
||||||
|
- Update to Jansson 2.3. |
||||||
|
|
||||||
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||||
|
|
||||||
|
* Thu Jun 11 2011 Sean Middleditch <sean@middleditch.us> 2.1-1 |
||||||
|
- Update to Jansson 2.1. |
||||||
|
- Drop Sphinx patch, no longer necessary. |
||||||
|
|
||||||
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||||
|
|
||||||
|
* Thu Jul 03 2010 Sean Middleditch <sean@middleditch.us> 1.3-1 |
||||||
|
- Update to Jansson 1.3. |
||||||
|
- Disable warnings-as-errors for Sphinx documentation. |
||||||
|
|
||||||
|
* Thu Jan 21 2010 Sean Middleditch <sean@middleditch.us> 1.2-1 |
||||||
|
- Update to Jansson 1.2. |
||||||
|
|
||||||
|
* Thu Jan 11 2010 Sean Middleditch <sean@middleditch.us> 1.1.3-4 |
||||||
|
- Update jansson description per upstream's suggestions. |
||||||
|
- Removed README from docs. |
||||||
|
|
||||||
|
* Thu Jan 09 2010 Sean Middleditch <sean@middleditch.us> 1.1.3-3 |
||||||
|
- Correct misspelling of jansson in the pkg-config file. |
||||||
|
|
||||||
|
* Thu Jan 09 2010 Sean Middleditch <sean@middleditch.us> 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 <sean@middleditch.us> 1.1.3-1 |
||||||
|
- Initial packaging for Fedora. |
Loading…
Reference in new issue