Compare commits
No commits in common. "c10s" and "c9s" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +0,0 @@
|
||||
/jsoncpp.pc
|
||||
/jsoncpp-src-*.tar.gz
|
||||
/jsoncpp-*.tar.gz
|
1
dead.package
Normal file
1
dead.package
Normal file
@ -0,0 +1 @@
|
||||
jsoncpp package is retired on c9s for CS-362
|
356
jsoncpp.spec
356
jsoncpp.spec
@ -1,356 +0,0 @@
|
||||
# Build documentation in HTML with images
|
||||
%bcond_without jsoncpp_enables_doc
|
||||
|
||||
%global jsondir json
|
||||
|
||||
# Avoid accidental so-name bumps.
|
||||
# ATTENTION!!! You need to run a bootstrap build
|
||||
# of cmake *BEFORE* bumping the so-name here!
|
||||
%global sover 25
|
||||
|
||||
|
||||
Name: jsoncpp
|
||||
Version: 1.9.5
|
||||
Release: 9%{?dist}
|
||||
Summary: JSON library implemented in C++
|
||||
|
||||
License: LicenseRef-Fedora-Public-Domain OR MIT
|
||||
URL: https://github.com/open-source-parsers/%{name}
|
||||
Source0: %{url}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: cmake >= 3.1
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: python3-devel
|
||||
|
||||
%description
|
||||
%{name} is an implementation of a JSON (http://json.org) reader and writer in
|
||||
C++. JSON (JavaScript Object Notation) is a lightweight data-interchange format.
|
||||
It is easy for humans to read and write. It is easy for machines to parse and
|
||||
generate.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Development headers and library for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
This package contains the development headers and library for %{name}.
|
||||
|
||||
|
||||
%if %{with jsoncpp_enables_doc}
|
||||
%package doc
|
||||
Summary: Documentation for %{name}
|
||||
|
||||
BuildRequires: doxygen
|
||||
BuildRequires: graphviz
|
||||
BuildRequires: hardlink
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
%description doc
|
||||
This package contains the documentation for %{name}.
|
||||
%endif
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p 1
|
||||
%if %{with jsoncpp_enables_doc}
|
||||
doxygen -s -u doc/doxyfile.in
|
||||
sed -i -e 's!^DOT_FONTNAME.*=.*!DOT_FONTNAME =!g' doc/doxyfile.in
|
||||
%endif
|
||||
|
||||
|
||||
%build
|
||||
%cmake \
|
||||
-DBUILD_STATIC_LIBS:BOOL=OFF \
|
||||
-DBUILD_OBJECT_LIBS:BOOL=OFF \
|
||||
-DJSONCPP_WITH_CMAKE_PACKAGE:BOOL=ON \
|
||||
-DJSONCPP_WITH_EXAMPLE:BOOL=OFF \
|
||||
-DJSONCPP_WITH_PKGCONFIG_SUPPORT:BOOL=ON \
|
||||
-DJSONCPP_WITH_POST_BUILD_UNITTEST:BOOL=OFF \
|
||||
-DJSONCPP_WITH_STRICT_ISO:BOOL=ON \
|
||||
-DJSONCPP_WITH_TESTS:BOOL=ON \
|
||||
-DJSONCPP_WITH_WARNING_AS_ERROR:BOOL=OFF \
|
||||
-DPYTHON_EXECUTABLE:STRING="%{__python3}"
|
||||
%cmake_build
|
||||
|
||||
%if %{with jsoncpp_enables_doc}
|
||||
# Build the doc
|
||||
cp -p %{__cmake_builddir}/version .
|
||||
%{__python3} doxybuild.py --with-dot --doxygen /usr/bin/doxygen
|
||||
rm -f version
|
||||
%endif
|
||||
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
mkdir -p %{buildroot}%{_docdir}/%{name}
|
||||
install -pm 0644 README.md %{buildroot}%{_docdir}/%{name}
|
||||
|
||||
%if %{with jsoncpp_enables_doc}
|
||||
mkdir -p %{buildroot}%{_docdir}/%{name}/html
|
||||
cp -a dist/doxygen/jsoncpp-api-html-/* %{buildroot}%{_docdir}/%{name}/html
|
||||
find %{buildroot}%{_docdir} -type d -print0 | xargs -0 chmod -c 0755
|
||||
find %{buildroot}%{_docdir} -type f -print0 | xargs -0 chmod -c 0644
|
||||
hardlink -cfv %{buildroot}%{_docdir}/%{name}
|
||||
%endif
|
||||
|
||||
|
||||
%check
|
||||
# Run tests single threaded.
|
||||
%global _smp_mflags -j1
|
||||
%ctest
|
||||
|
||||
|
||||
%ldconfig_scriptlets
|
||||
|
||||
|
||||
%files
|
||||
%license AUTHORS LICENSE
|
||||
%doc %dir %{_docdir}/%{name}
|
||||
%doc %{_docdir}/%{name}/README.md
|
||||
%if %{with jsoncpp_enables_doc}
|
||||
%exclude %{_docdir}/%{name}/html
|
||||
%endif
|
||||
%{_libdir}/lib%{name}.so.%{sover}*
|
||||
%{_libdir}/lib%{name}.so.%{version}
|
||||
|
||||
|
||||
%files devel
|
||||
%{_libdir}/lib%{name}.so
|
||||
%{_includedir}/%{jsondir}
|
||||
%{_libdir}/cmake/*
|
||||
%{_libdir}/pkgconfig/%{name}.pc
|
||||
|
||||
|
||||
%if %{with jsoncpp_enables_doc}
|
||||
%files doc
|
||||
%license %{_datadir}/licenses/%{name}
|
||||
%doc %{_docdir}/%{name}
|
||||
%endif
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.9.5-9
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.9.5-8
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.5-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jan 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.5-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.5-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Nov 03 2021 Björn Esser <besser82@fedoraproject.org> - 1.9.5-1
|
||||
- Update to version 1.9.5
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.4-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Sep 30 18:54:18 CEST 2020 Björn Esser <besser82@fedoraproject.org> - 1.9.4-2
|
||||
- Explicitly disable static libraries on build (rhbz#1883926)
|
||||
|
||||
* Sun Sep 27 16:25:23 CEST 2020 Björn Esser <besser82@fedoraproject.org> - 1.9.4-1
|
||||
- Update to version 1.9.4 (rhbz#1882874)
|
||||
- Package all files generated by doxygen
|
||||
- Run tests single threaded
|
||||
|
||||
* Wed Jul 29 2020 Björn Esser <besser82@fedoraproject.org> - 1.9.3-3
|
||||
- Use new cmake macros
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Sat May 30 2020 Björn Esser <besser82@fedoraproject.org> - 1.9.3-1
|
||||
- Update to version 1.9.3 (rhbz#1841985)
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Nov 14 2019 Björn Esser <besser82@fedoraproject.org> - 1.9.2-1
|
||||
- Update to version 1.9.2 (rhbz#1742004)
|
||||
|
||||
* Fri Aug 16 2019 Björn Esser <besser82@fedoraproject.org> - 1.9.1-1
|
||||
- Update to version 1.9.1 (rhbz#1742004)
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Wed Jul 03 2019 Björn Esser <besser82@fedoraproject.org> - 1.9.0-1
|
||||
- Update to version 1.9.0 (rhbz#1726491)
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.4-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.4-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.8.4-4
|
||||
- Rebuilt for Python 3.7
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Fri Feb 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.8.4-2
|
||||
- Switch to %%ldconfig_scriptlets
|
||||
|
||||
* Tue Dec 26 2017 Björn Esser <besser82@fedoraproject.org> - 1.8.4-1
|
||||
- Update to version 1.8.4 (rhbz#1529017)
|
||||
|
||||
* Tue Aug 29 2017 Björn Esser <besser82@fedoraproject.org> - 1.8.3-1
|
||||
- Update to version 1.8.3 (rhbz#1485908)
|
||||
|
||||
* Mon Aug 07 2017 Björn Esser <besser82@fedoraproject.org> - 1.8.1-6
|
||||
- Rebuilt for AutoReq cmake-filesystem
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sun Jul 02 2017 Björn Esser <besser82@fedoraproject.org> - 1.8.1-3
|
||||
- Fix warnings from Doxygen
|
||||
|
||||
* Sun Jul 02 2017 Björn Esser <besser82@fedoraproject.org> - 1.8.1-2
|
||||
- Use Python3 during build
|
||||
|
||||
* Sun Jul 02 2017 Björn Esser <besser82@fedoraproject.org> - 1.8.1-1
|
||||
- Update to version 1.8.1 (rhbz#1467033)
|
||||
- Use autosetup-macro
|
||||
- Build out of tree
|
||||
- Hardlink documentation files
|
||||
|
||||
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed Dec 28 2016 Björn Esser <fedora@besser82.io> - 1.8.0-1
|
||||
- Update to version 1.8.0
|
||||
- Use up-to-date %%make-macros
|
||||
- Run testsuite during %%check instead during %%build
|
||||
|
||||
* Mon Oct 03 2016 Björn Esser <fedora@besser82.io> - 1.7.7-1
|
||||
- Update to version 1.7.7 (#1372329)
|
||||
|
||||
* Sun Jul 17 2016 Sébastien Willmann <sebastien.willmann@gmail.com> - 1.7.4-1
|
||||
- Update to version 1.7.4
|
||||
|
||||
* Mon Jun 20 2016 Sébastien Willmann <sebastien.willmann@gmail.com> - 1.7.2-3
|
||||
- Revert #1336082
|
||||
|
||||
* Mon Jun 13 2016 Sébastien Willmann <sebastien.willmann@gmail.com> - 1.7.2-2
|
||||
- Fix include dir path (#1336082)
|
||||
|
||||
* Sat Mar 26 2016 Björn Esser <fedora@besser82.io> - 1.7.2-1
|
||||
- Update to version 1.7.2
|
||||
|
||||
* Fri Mar 25 2016 Björn Esser <fedora@besser82.io> - 1.7.1-1
|
||||
- Update to version 1.7.1
|
||||
- Use %%license and %%doc properly
|
||||
- Add generated CMake-target
|
||||
- Move %%check after %%install
|
||||
- Remove Group-tag, needed for el <= 5, only
|
||||
- Drop Patch0, not needed anymore
|
||||
|
||||
* Tue Feb 16 2016 Sébastien Willmann <sebastien.willmann@gmail.com> - 0.10.5-4
|
||||
- Disabled Werror
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Sun Jan 3 2016 Ville Skyttä <ville.skytta@iki.fi> - 0.10.5-2
|
||||
- Add disttag
|
||||
|
||||
* Sun Jan 03 2016 Sébastien Willmann <sebastien.willmann@gmail.com> - 0.10.5-2
|
||||
- Use cmake instead of scons
|
||||
|
||||
* Sun Sep 13 2015 Sébastien Willmann <sebastien.willmann@gmail.com> - 0.10.5-1
|
||||
- Update to version 0.10.5
|
||||
|
||||
* Fri Aug 14 2015 Adam Jackson <ajax@redhat.com> 0.6.0-0.18.rc2
|
||||
- Link libjsoncpp with -z now
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-0.17.rc2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Wed Apr 15 2015 Orion Poplawski <orion@cora.nwra.com> - 0.6.0-0.16.rc2
|
||||
- Rebuild for gcc 5 C++11 ABI change
|
||||
|
||||
* Mon Feb 16 2015 Orion Poplawski <orion@cora.nwra.com> - 0.6.0-0.15.rc2
|
||||
- Rebuild for gcc 5 C++11
|
||||
|
||||
* Sun Sep 21 2014 Sébastien Willmann <sebastien.willmann@gmail.com> - 0.6.0-0.14.rc2
|
||||
- Allow int values to be converted to string (#1143774)
|
||||
|
||||
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-0.13.rc2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-0.12.rc2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Tue Sep 10 2013 Sébastien Willmann <sebastien.willmann@gmail.com> - 0.6.0-0.11.rc2
|
||||
- https://bugzilla.redhat.com/show_bug.cgi?id=998149 : applied Michael Schwendt's
|
||||
patch to fix duplicated documentation
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-0.10.rc2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Fri Mar 15 2013 Sébastien Willmann <sebastien.willmann@gmail.com> - 0.6.0-0.9.rc2
|
||||
- Changed Summary
|
||||
- Added %%doc files to the doc package
|
||||
- Added python as an explicit BuildRequires
|
||||
|
||||
* Fri Feb 15 2013 Sebastien Willmann <sebastien.willmann@gmail.com> - 0.6.0-0.8.rc2
|
||||
- Added documentation sub-package
|
||||
|
||||
* Sun Jan 20 2013 Sebastien Willmann <sebastien.willmann@gmail.com> - 0.6.0-0.7.rc2
|
||||
- Added graphviz as a BuildRequire
|
||||
|
||||
* Sat Jan 19 2013 Sebastien Willmann <sebastien.willmann@gmail.com> - 0.6.0-0.6.rc2
|
||||
- Install the corrected library
|
||||
|
||||
* Sat Dec 22 2012 Sebastien Willmann <sebastien.willmann@gmail.com> - 0.6.0-0.5.rc2
|
||||
- Added libjsoncpp.so.0
|
||||
- Moved the shared lib build to the correct section
|
||||
|
||||
* Fri Dec 21 2012 Sebastien Willmann <sebastien.willmann@gmail.com> - 0.6.0-0.4.rc2
|
||||
- Removed doc subpackage
|
||||
- Added .pc file
|
||||
- Fixed shared lib
|
||||
|
||||
* Wed Dec 12 2012 Sebastien Willmann <sebastien.willmann@gmail.com> - 0.6.0-0.3.rc2
|
||||
- Removed static package
|
||||
- Preserving timestamp on installed files
|
||||
- Added guard grep to the sed expression
|
||||
- Removed duplicated doc files
|
||||
- Removed dependency on pkgconfig
|
||||
- Changed base package group
|
||||
|
||||
* Sun Dec 02 2012 Sébastien Willmann <sebastien.willmann@gmail.com> - 0.6.0-0.2.rc2
|
||||
- Changed license field to Public Domain or MIT
|
||||
|
||||
* Tue Nov 27 2012 Sébastien Willmann <sebastien.willmann@gmail.com> 0.6.0-0.1.rc2
|
||||
- Creation of the spec file
|
Loading…
Reference in New Issue
Block a user