fmt/fmt.spec

219 lines
7.0 KiB
RPMSpec
Raw Normal View History

2020-07-08 11:59:57 +00:00
%undefine __cmake_in_source_build
%bcond_with doc
2016-08-30 03:55:35 +00:00
Name: fmt
2020-11-29 14:59:07 +00:00
Version: 7.1.3
2020-07-29 19:14:37 +00:00
Release: 1%{?dist}
2016-08-30 03:55:35 +00:00
Summary: Small, safe and fast formatting library for C++
License: BSD
2020-04-06 17:21:33 +00:00
URL: https://github.com/fmtlib/%{name}
Source0: %{url}/archive/%{version}.tar.gz
# See https://github.com/fmtlib/fmt/issues/443 and https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/LVKYLDLJVWAVJE4MQVKDO6PYZRD5MCP6/
Patch1: doc-build-removed-all-pip-internet-stuff.patch
Patch3: doc-build-do-not-create-virtual-environment.patch
Patch4: doc-_templates-layout-stripped-Google-Analytics.patch
Patch5: doc-_templates-layout-stripped-download-links.patch
Patch6: doc-index-removed-GitHub-iframe.patch
Patch7: doc-build-use-sphinx-build-3.patch
2016-08-30 03:55:35 +00:00
BuildRequires: gcc
BuildRequires: gcc-c++
2020-07-08 11:59:57 +00:00
BuildRequires: ninja-build
%if 0%{?rhel} && 0%{?rhel} <= 7
2016-08-30 03:55:35 +00:00
BuildRequires: cmake3
%else
BuildRequires: cmake
%endif
%if %{with doc}
2016-12-29 05:12:16 +00:00
BuildRequires: doxygen
BuildRequires: nodejs-less
2020-04-28 12:37:04 +00:00
%if 0%{?rhel} && 0%{?rhel} <= 7
BuildRequires: python%{python3_version_nodots}-sphinx
BuildRequires: python%{python3_version_nodots}-breathe
2020-04-28 12:37:04 +00:00
%else
BuildRequires: python3-sphinx
BuildRequires: python3-breathe
%endif
%else
2020-07-28 11:49:34 +00:00
Provides: %{name}-doc = %{?epoch:%{epoch}:}%{version}-%{release}
Obsoletes: %{name}-doc < %{?epoch:%{epoch}:}%{version}-%{release}
%endif
2016-08-30 03:55:35 +00:00
# This package replaces the old name of cppformat
2020-07-28 11:49:34 +00:00
Provides: cppformat = %{?epoch:%{epoch}:}%{version}-%{release}
Obsoletes: cppformat < %{?epoch:%{epoch}:}%{version}-%{release}
2016-08-30 03:55:35 +00:00
%description
C++ Format is an open-source formatting library for C++. It can be used as a
safe alternative to printf or as a fast alternative to IOStreams.
2016-08-30 03:55:35 +00:00
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
2016-08-30 03:55:35 +00:00
# This package replaces the old name of cppformat
2020-07-28 11:49:34 +00:00
Provides: cppformat-devel = %{?epoch:%{epoch}:}%{version}-%{release}
Obsoletes: cppformat-devel < %{?epoch:%{epoch}:}%{version}-%{release}
2016-08-30 03:55:35 +00:00
%description devel
This package contains the header file for using %{name}.
%if %{with doc}
2016-08-30 03:55:35 +00:00
%package doc
Summary: Documentation files for %{name}
License: Python
BuildArch: noarch
# This package replaces the old name of cppformat
2020-07-28 11:49:34 +00:00
Provides: cppformat-doc = %{?epoch:%{epoch}:}%{version}-%{release}
Obsoletes: cppformat-doc < %{?epoch:%{epoch}:}%{version}-%{release}
2016-08-30 03:55:35 +00:00
%description doc
This package contains documentation for developer documentation for %{name}.
%endif
2016-08-30 03:55:35 +00:00
%prep
%autosetup -p1
%if %{with doc}
# Remove --clean-css since that plugin isn't available
sed -i "s/'--clean-css',//" doc/build.py
%endif
2016-08-30 03:55:35 +00:00
%build
%if 0%{?rhel} && 0%{?rhel} <= 7
2020-07-08 11:59:57 +00:00
%cmake3 \
2016-08-30 03:55:35 +00:00
%else
2020-07-08 11:59:57 +00:00
%cmake \
2016-08-30 03:55:35 +00:00
%endif
2020-07-08 11:59:57 +00:00
-G Ninja \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_POSITION_INDEPENDENT_CODE=ON \
-DFMT_CMAKE_DIR=%{_datadir}/cmake/%{name} \
-DFMT_LIB_DIR=%{_libdir}
%cmake_build \
%if %{with doc}
--target doc \
%endif
--target all
%if %{with doc}
2016-12-29 05:12:16 +00:00
# Remove temporary build products
2020-07-08 11:59:57 +00:00
rm -rf %{_vpath_builddir}/doc/html/{.buildinfo,.doctrees,objects.inv}
%endif
2016-08-30 03:55:35 +00:00
%install
2020-07-08 11:59:57 +00:00
%cmake_install
2016-08-30 03:55:35 +00:00
%check
2020-07-08 11:59:57 +00:00
%ctest
2016-08-30 03:55:35 +00:00
%files
%license LICENSE.rst
%doc ChangeLog.rst README.rst
2020-07-08 11:34:08 +00:00
%{_libdir}/lib%{name}.so.7*
2016-08-30 03:55:35 +00:00
%files devel
2019-12-18 13:04:58 +00:00
%{_includedir}/%{name}
%{_libdir}/lib%{name}.so
%{_datadir}/cmake/%{name}
%{_libdir}/pkgconfig/%{name}.pc
2016-08-30 03:55:35 +00:00
%if %{with doc}
2016-08-30 03:55:35 +00:00
%files doc
2019-12-18 13:04:58 +00:00
%doc %{_datadir}/doc/%{name}
2016-08-30 03:55:35 +00:00
%license doc/python-license.txt
%endif
2016-08-30 03:55:35 +00:00
%changelog
2020-11-29 14:59:07 +00:00
* Sun Nov 29 2020 Vitaly Zaitsev <vitaly@easycoding.org> - 7.1.3-1
- Updated to version 7.1.3.
2020-11-10 11:39:10 +00:00
* Tue Nov 10 2020 Vitaly Zaitsev <vitaly@easycoding.org> - 7.1.2-1
- Updated to version 7.1.2.
2020-08-08 09:12:24 +00:00
* Sat Aug 08 2020 Vitaly Zaitsev <vitaly@easycoding.org> - 7.0.3-1
- Updated to version 7.0.3.
2020-07-29 19:14:37 +00:00
* Wed Jul 29 2020 Vitaly Zaitsev <vitaly@easycoding.org> - 7.0.2-1
- Updated to version 7.0.2.
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2020-07-08 11:34:08 +00:00
* Wed Jul 08 2020 Vitaly Zaitsev <vitaly@easycoding.org> - 7.0.1-1
- Updated to version 7.0.1.
2020-05-09 20:02:04 +00:00
* Sat May 09 2020 Vitaly Zaitsev <vitaly@easycoding.org> - 6.2.1-1
- Updated to version 6.2.1.
* Thu Apr 30 2020 Kefu Chai <tchaikov@gmail.com> - 6.2.0-2
- Incorporate patch from upstream to address https://github.com/fmtlib/fmt/issues/1631
2020-04-06 17:21:33 +00:00
* Mon Apr 06 2020 Vitaly Zaitsev <vitaly@easycoding.org> - 6.2.0-1
- Updated to version 6.2.0.
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.1.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
2019-12-18 13:04:58 +00:00
* Wed Dec 18 2019 Vitaly Zaitsev <vitaly@easycoding.org> - 6.1.2-1
- Updated to version 6.1.2.
- Recreated all documentation patches.
- SPEC file cleanup.
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.3.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Mon Jun 10 2019 Jan Staněk <jstanek@redhat.com> - 5.3.0-1
- Update to 5.3.0
- Recreate documentation build patches
- Package new pkg-config files
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Thu Oct 11 2018 Kefu Chai <tchaikov@gmail.com> - 5.2.1-1
- Update to 5.2.1
- Build using python3 packages on fedora
- Remove links in document accessing network
- Package ChangeLog.rst and README.rst
- Drop fmt-static package
2018-08-31 14:16:39 +00:00
* Fri Aug 31 2018 Leigh Scott <leigh123linux@googlemail.com> - 3.0.2-7
- Fix python2 issue for doc
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2017-08-10 04:04:26 +00:00
* Wed Aug 09 2017 Dave Johansen <davejohansen@gmail.com> - 3.0.2-4
- Patch for Test 8 segfault
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2017-06-24 16:44:14 +00:00
* Sat Jun 24 2017 Dave Johansen <davejohansen@gmail.com> - 3.0.2-1
- Upstream release
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
2016-12-29 05:12:16 +00:00
* Tue Dec 27 2016 Dave Johansen <davejohansen@gmail.com> - 3.0.1-2
- Build documentation
2016-11-30 02:25:28 +00:00
* Fri Nov 25 2016 Dave Johansen <davejohansen@gmail.com> - 3.0.1-1
- Upstream release
* Tue Nov 15 2016 Dave Johansen <davejohansen@gmail.com> - 3.0.0-2
- Fix expected unqualified-id before numeric constant error
2016-08-30 03:55:35 +00:00
* Wed Aug 24 2016 Dave Johansen <davejohansen@gmail.com> - 3.0.0-1
- Initial RPM release