Name: Catch2 Version: 3.3.0 Release: 1 Summary: A modern, C++-native, test framework for unit-tests, TDD and BDD License: BSL-1.0 URL: https://github.com/catchorg/Catch2 Source0: %{url}/archive/refs/tags/v%{version}.tar.gz Group: Development/Libraries BuildRequires: gcc-c++ BuildRequires: cmake BuildRequires: doxygen BuildRequires: pkgconfig BuildRequires: python3-devel # The source includes bundled Clara and modified textflow # https://github.com/catchorg/Catch2/blob/devel/third_party/clara.hpp # https://github.com/catchorg/textflowcpp # However, upstream Clara is no longer in development # https://github.com/catchorg/Clara %global _description %{expand: Catch2 is mainly a unit testing framework for C++, but it also provides basic micro-benchmarking features, and simple BDD macros.} %description %_description %package devel Summary: Header files for Catch2 testing framework Requires: %{name}%{?_isa} = %{version}-%{release} %description devel %_description %prep %autosetup # Do not generate HTML sed -i 's/GENERATE_HTML = YES/GENERATE_HTML = NO/' Doxyfile sed -i 's/GENERATE_MAN = NO/GENERATE_MAN = YES/' Doxyfile %build %cmake -DBUILD_SHARED_LIBS=ON \ -DCATCH_DEVELOPMENT_BUILD=ON \ -DBUILD_TESTING=ON \ -DCMAKE_INSTALL_DOCDIR=%{_docdir}/%{name} \ -DPKGCONFIG_INSTALL_DIR=%{_libdir}/pkgconfig %cmake_build %install %cmake_install %check %ctest %files %{_datadir}/%{name}/gdbinit %{_datadir}/%{name}/lldbinit %{_docdir}/%{name}/*.md %{_libdir}/cmake/%{name}/*.cmake %{_libdir}/libCatch2.so.3* %{_libdir}/libCatch2Main.so.3* %license LICENSE.txt %doc README.md SECURITY.md %files devel %{_includedir}/catch2/*.hpp %{_includedir}/catch2/benchmark/*.hpp %{_includedir}/catch2/benchmark/detail/*.hpp %{_includedir}/catch2/generators/*.hpp %{_includedir}/catch2/interfaces/*.hpp %{_includedir}/catch2/internal/*.hpp %{_includedir}/catch2/matchers/*.hpp %{_includedir}/catch2/matchers/internal/*.hpp %{_includedir}/catch2/reporters/*.hpp %{_libdir}/pkgconfig/*.pc %{_libdir}/libCatch2.so %{_libdir}/libCatch2Main.so %changelog * Sun Jan 29 2023 Benson Muite 3.2.2-1 - Initial packaging based on OpenSUSE spec available at https://copr.fedorainfracloud.org/coprs/carlosguirao/Catch2/