|
|
|
@ -1,21 +1,13 @@
|
|
|
|
|
Summary: Google C++ testing framework
|
|
|
|
|
Name: gtest
|
|
|
|
|
Version: 1.8.0
|
|
|
|
|
Release: 5%{?dist}
|
|
|
|
|
Version: 1.11.0
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
# scripts/generator/* are ASL 2.0
|
|
|
|
|
License: BSD and ASL 2.0
|
|
|
|
|
URL: https://github.com/google/googletest
|
|
|
|
|
Source0: https://github.com/google/googletest/archive/release-%{version}.tar.gz
|
|
|
|
|
# Install into lib64 if needed
|
|
|
|
|
Patch0: gtest-1.8.0-libdir.patch
|
|
|
|
|
# https://github.com/google/googletest/issues/845
|
|
|
|
|
Patch1: gtest-1.8.0-null-pointer.patch
|
|
|
|
|
# https://github.com/google/googletest/issues/930
|
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1513522
|
|
|
|
|
Patch2: gtest-1.8.0-fix-double-free-with-shared-libs.patch
|
|
|
|
|
# Fedora-specific patches
|
|
|
|
|
## Set libversion for libraries to version of gtest
|
|
|
|
|
## WARNING: must be rediffed for each version bump
|
|
|
|
|
Patch100: gtest-1.8.0-libversion.patch
|
|
|
|
|
Source0: https://github.com/google/googletest/archive/release-%{version}/googletest-release-%{version}.tar.gz
|
|
|
|
|
BuildRequires: gcc
|
|
|
|
|
BuildRequires: gcc-c++
|
|
|
|
|
BuildRequires: cmake
|
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
%description
|
|
|
|
@ -29,11 +21,13 @@ generation.
|
|
|
|
|
%package -n gtest-devel
|
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
Requires: gmock = %{version}-%{release}
|
|
|
|
|
%description -n gtest-devel
|
|
|
|
|
This package contains development files for %{name}.
|
|
|
|
|
|
|
|
|
|
%package -n gmock
|
|
|
|
|
Summary: Google C++ Mocking Framework
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
%description -n gmock
|
|
|
|
|
Inspired by jMock, EasyMock, and Hamcrest, and designed with C++s
|
|
|
|
|
specifics in mind, Google C++ Mocking Framework (or Google Mock for
|
|
|
|
@ -58,52 +52,103 @@ This package contains development files for gmock.
|
|
|
|
|
%prep
|
|
|
|
|
%autosetup -p1 -n googletest-release-%{version}
|
|
|
|
|
|
|
|
|
|
# Set the version correctly
|
|
|
|
|
sed -e "s/set(GOOGLETEST_VERSION .*)/set(GOOGLETEST_VERSION %{version})/" -i CMakeLists.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
mkdir build && cd build
|
|
|
|
|
%cmake -DBUILD_SHARED_LIBS=ON \
|
|
|
|
|
-DPYTHON_EXECUTABLE=%{__python3} \
|
|
|
|
|
-Dgtest_build_tests=ON ..
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
-Dgtest_build_tests=ON
|
|
|
|
|
%cmake_build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
cd build
|
|
|
|
|
%make_install
|
|
|
|
|
%cmake_install
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
cd build
|
|
|
|
|
make test
|
|
|
|
|
%ctest
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%license googletest/LICENSE
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_libdir}/libgtest.so.%{version}
|
|
|
|
|
%{_libdir}/libgtest_main.so.%{version}
|
|
|
|
|
|
|
|
|
|
%files -n gtest-devel
|
|
|
|
|
%doc googletest/{CHANGES,CONTRIBUTORS,README.md}
|
|
|
|
|
%doc googletest/docs/
|
|
|
|
|
%doc CONTRIBUTORS README.md
|
|
|
|
|
%doc docs/
|
|
|
|
|
%doc googletest/samples
|
|
|
|
|
%{_includedir}/gtest/
|
|
|
|
|
%{_libdir}/libgtest.so
|
|
|
|
|
%{_libdir}/libgtest_main.so
|
|
|
|
|
%{_libdir}/cmake/GTest/
|
|
|
|
|
%{_libdir}/pkgconfig/gtest.pc
|
|
|
|
|
%{_libdir}/pkgconfig/gtest_main.pc
|
|
|
|
|
|
|
|
|
|
%files -n gmock
|
|
|
|
|
%license googlemock/LICENSE
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{_libdir}/libgmock.so.%{version}
|
|
|
|
|
%{_libdir}/libgmock_main.so.%{version}
|
|
|
|
|
|
|
|
|
|
%files -n gmock-devel
|
|
|
|
|
%doc googlemock/{CHANGES,CONTRIBUTORS,README.md}
|
|
|
|
|
%doc googlemock/docs/
|
|
|
|
|
%doc CONTRIBUTORS README.md
|
|
|
|
|
%doc docs/
|
|
|
|
|
%{_includedir}/gmock/
|
|
|
|
|
%{_libdir}/libgmock.so
|
|
|
|
|
%{_libdir}/libgmock_main.so
|
|
|
|
|
%{_libdir}/pkgconfig/gmock.pc
|
|
|
|
|
%{_libdir}/pkgconfig/gmock_main.pc
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Thu Jul 19 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.8.0-5
|
|
|
|
|
- Fix license field to accurately represent the content
|
|
|
|
|
* Thu Aug 19 2021 Federico Pellegrin <fede@evolware.org> - 1.11.0-1
|
|
|
|
|
- Bump to version 1.11.0, removing now upstreamed patches
|
|
|
|
|
|
|
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-7
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Apr 05 2021 Terje Rosten <terje.rosten@ntnu.no> - 1.10.0-6
|
|
|
|
|
- cmake modules in gtest-devel needs libgmock.so.* (rhzb#1925617)
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sun Nov 15 2020 Jeff Law <law@redhat.com> - 1.10.0-4
|
|
|
|
|
- Disable pointer-comparison warning in StackLowerThanAddress
|
|
|
|
|
|
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.10.0-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Jul 25 2020 Terje Rosten <terje.rosten@ntnu.no> - 1.10.0-2
|
|
|
|
|
- Use new set of cmake macros
|
|
|
|
|
|
|
|
|
|
* Sat Mar 21 2020 Neal Gompa <ngompa13@gmail.com> - 1.10.0-1
|
|
|
|
|
- Rebase to 1.10.0 (rhbz#1810432)
|
|
|
|
|
- Remove upstreamed patches
|
|
|
|
|
- Backport fixes from upstream for pkgconfig files
|
|
|
|
|
- Refresh pkgconfig dependency information patch
|
|
|
|
|
|
|
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.1-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.1-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.1-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Sep 27 2018 Neal Gompa <ngompa13@gmail.com> - 1.8.1-2
|
|
|
|
|
- Fix the build to set the version in the CMakeLists correctly
|
|
|
|
|
- Update the libversion patch to use the version in CMakeLists
|
|
|
|
|
- Correctly install the CMake and pkgconfig files
|
|
|
|
|
- Fix the pkgconfig dependency information
|
|
|
|
|
- Add missing strong dependency on gtest by gmock
|
|
|
|
|
- Add patch to make tests work with Python 3
|
|
|
|
|
|
|
|
|
|
* Mon Sep 10 2018 Terje Rosten <terje.rosten@ntnu.no> - 1.8.1-1
|
|
|
|
|
- Fix license (rhbz#1603577)
|
|
|
|
|
- 1.8.1
|
|
|
|
|
|
|
|
|
|
* Fri Jun 29 2018 Charalampos Stratakis <cstratak@redhat.com> - 1.8.0-4
|
|
|
|
|
- Change to Python 3 as a build dependency
|
|
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Feb 14 2018 Neal Gompa <ngompa13@gmail.com> - 1.8.0-3
|
|
|
|
|
- Add patch to fix gmock segfaults (rhbz#1513522)
|