blob: 7716cafd70a87502c9035e96bb522542f8bb265b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
%global debug_package %{nil}
Name: catch1
Version: 1.12.2
Release: 7
Summary: A modern, C++-native, header-only, framework for unit-tests, TDD and BDD
License: Boost
URL: https://github.com/philsquared/Catch
Source0: https://github.com/philsquared/Catch/archive/v%{version}/%{name}-%{version}.tar.gz
Patch1: catch1-sigstksz.patch
BuildRequires: cmake make gcc-c++
%description
Catch stands for C++ Automated Test Cases in Headers and is a
multi-paradigm automated test framework for C++ and Objective-C (and,
maybe, C). It is implemented entirely in a set of header files, but
is packaged up as a single header for extra convenience.
%package devel
Summary: Development files for %{name}
Provides: %{name}-static = %{version}-%{release}
Conflicts: catch-devel
%description devel
Catch stands for C++ Automated Test Cases in Headers and is a
multi-paradigm automated test framework for C++ and Objective-C (and,
maybe, C). It is implemented entirely in a set of header files, but
is packaged up as a single header for extra convenience.
%prep
%autosetup -p 1 -n Catch2-%{version}
%build
%cmake
%cmake_build
%install
mkdir -p %{buildroot}%{_includedir}
cp -pr include %{buildroot}%{_includedir}/catch
%check
%ctest
%files devel
%doc README.md catch-logo-small.png docs
%license LICENSE.txt
%{_includedir}/catch
%changelog
* Thu Nov 21 2024 Funda Wang <fundawang@yeah.net> - 1.12.2-7
- adopt to new cmake macro
* Tue Aug 10 2021 wangyue <wangyue92@huawei.com> - 1.12.2-6
- Add patch for non-constant SIGSTKSZ
* Sat Jul 18 2020 sunguoshuai <sunguoshuai@huawei.com> - 1.12.2-5
- Package init
|