Compare commits
No commits in common. "rawhide" and "f29" have entirely different histories.
12
.gitignore
vendored
12
.gitignore
vendored
@ -1,13 +1 @@
|
||||
/google-benchmark-1.4.1.tar.gz
|
||||
/google-benchmark-1.5.tar.gz
|
||||
/google-benchmark-1.5.0.tar.gz
|
||||
/google-benchmark-1.5.1.tar.gz
|
||||
/google-benchmark-1.5.2.tar.gz
|
||||
/google-benchmark-1.5.3.tar.gz
|
||||
/google-benchmark-1.5.4.tar.gz
|
||||
/google-benchmark-1.5.5.tar.gz
|
||||
/google-benchmark-1.5.6.tar.gz
|
||||
/google-benchmark-1.6.0.tar.gz
|
||||
/google-benchmark-1.6.1.tar.gz
|
||||
/google-benchmark-1.6.2.tar.gz
|
||||
/google-benchmark-1.7.0.tar.gz
|
||||
|
@ -2,20 +2,19 @@
|
||||
%global lbname lib%{intname}
|
||||
|
||||
Name: google-benchmark
|
||||
Version: 1.7.0
|
||||
Version: 1.4.1
|
||||
Release: 1%{?dist}
|
||||
|
||||
License: ASL 2.0
|
||||
Summary: A microbenchmark support library
|
||||
URL: https://github.com/google/%{intname}
|
||||
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||
Source0: %{url}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildRequires: gtest-devel
|
||||
BuildRequires: gmock-devel
|
||||
BuildRequires: ninja-build
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: cmake
|
||||
BuildRequires: doxygen
|
||||
BuildRequires: gcc
|
||||
|
||||
%description
|
||||
@ -28,121 +27,42 @@ Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
%description devel
|
||||
%{summary}.
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for %{name}
|
||||
BuildArch: noarch
|
||||
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||||
|
||||
%description doc
|
||||
%{summary}.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{intname}-%{version} -p1
|
||||
sed -e '/get_git_version/d' -e '/-Werror/d' -i CMakeLists.txt
|
||||
%autosetup -n %{intname}-%{version}
|
||||
mkdir -p %{_target_platform}
|
||||
sed -i 's@lib/@%{_lib}/@g' src/CMakeLists.txt
|
||||
|
||||
%build
|
||||
%cmake -G Ninja \
|
||||
pushd %{_target_platform}
|
||||
%cmake -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DGIT_VERSION=%{version} \
|
||||
-DBENCHMARK_ENABLE_DOXYGEN:BOOL=ON \
|
||||
-DBENCHMARK_ENABLE_TESTING:BOOL=ON \
|
||||
-DBENCHMARK_USE_BUNDLED_GTEST:BOOL=OFF \
|
||||
-DBENCHMARK_ENABLE_GTEST_TESTS:BOOL=ON \
|
||||
-DBENCHMARK_ENABLE_INSTALL:BOOL=ON \
|
||||
-DBENCHMARK_INSTALL_DOCS:BOOL=ON \
|
||||
-DBENCHMARK_DOWNLOAD_DEPENDENCIES:BOOL=OFF
|
||||
%cmake_build
|
||||
%ifarch s390x
|
||||
-DBENCHMARK_ENABLE_TESTING=OFF \
|
||||
%endif
|
||||
..
|
||||
popd
|
||||
%ninja_build -C %{_target_platform}
|
||||
|
||||
%check
|
||||
%ctest
|
||||
# Some tests are failing on s390x architecture.
|
||||
pushd %{_target_platform}
|
||||
ctest --output-on-failure
|
||||
popd
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
%ninja_install -C %{_target_platform}
|
||||
|
||||
%files
|
||||
%doc CONTRIBUTING.md README.md
|
||||
%license AUTHORS CONTRIBUTORS LICENSE
|
||||
%{_libdir}/%{lbname}*.so.1*
|
||||
%doc AUTHORS CONTRIBUTORS CONTRIBUTING.md README.md
|
||||
%license LICENSE
|
||||
%{_libdir}/%{lbname}*.so.0*
|
||||
|
||||
%files devel
|
||||
%{_libdir}/%{lbname}*.so
|
||||
%{_includedir}/%{intname}/
|
||||
%{_libdir}/cmake/%{intname}/
|
||||
%{_includedir}/%{intname}
|
||||
%{_libdir}/cmake/%{intname}
|
||||
%{_libdir}/pkgconfig/%{intname}.pc
|
||||
|
||||
%files doc
|
||||
%{_docdir}/%{intname}/
|
||||
|
||||
%changelog
|
||||
* Tue Jul 26 2022 Vitaly Zaitsev <vitaly@easycoding.org> - 1.7.0-1
|
||||
- Updated to version 1.7.0.
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Tue Jul 19 2022 Vitaly Zaitsev <vitaly@easycoding.org> - 1.6.2-1
|
||||
- Updated to version 1.6.2.
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Mon Jan 17 2022 Vitaly Zaitsev <vitaly@easycoding.org> - 1.6.1-2
|
||||
- Disabled skip_with_error_test test on Fedora 36 due to GCC 12 regression.
|
||||
|
||||
* Thu Jan 13 2022 Vitaly Zaitsev <vitaly@easycoding.org> - 1.6.1-1
|
||||
- Updated to version 1.6.1.
|
||||
|
||||
* Sun Sep 12 2021 Vitaly Zaitsev <vitaly@easycoding.org> - 1.6.0-1
|
||||
- Updated to version 1.6.0.
|
||||
|
||||
* Thu Aug 12 2021 Vitaly Zaitsev <vitaly@easycoding.org> - 1.5.6-1
|
||||
- Updated to version 1.5.6.
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Sat Jul 10 2021 Vitaly Zaitsev <vitaly@easycoding.org> - 1.5.5-3
|
||||
- Rebuilt again for the same reason.
|
||||
|
||||
* Sat Jul 10 2021 Vitaly Zaitsev <vitaly@easycoding.org> - 1.5.5-2
|
||||
- Rebuilt due to glibc update.
|
||||
|
||||
* Sat Jun 12 2021 Vitaly Zaitsev <vitaly@easycoding.org> - 1.5.5-1
|
||||
- Updated to version 1.5.5.
|
||||
|
||||
* Mon May 31 2021 Vitaly Zaitsev <vitaly@easycoding.org> - 1.5.4-1
|
||||
- Updated to version 1.5.4.
|
||||
|
||||
* Mon Apr 26 2021 Vitaly Zaitsev <vitaly@easycoding.org> - 1.5.3-1
|
||||
- Updated to version 1.5.3.
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Oct 14 2020 Jeff Law <law@redhat.com> - 1.5.2-2
|
||||
- Fix missing #include for gcc-11
|
||||
|
||||
* Sat Sep 12 2020 Vitaly Zaitsev <vitaly@easycoding.org> - 1.5.2-1
|
||||
- Updated to version 1.5.2.
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Sun Jul 19 2020 Vitaly Zaitsev <vitaly@easycoding.org> - 1.5.1-1
|
||||
- Updated to version 1.5.1.
|
||||
- Fixed RHBZ#1858127.
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Tue May 28 2019 Vitaly Zaitsev <vitaly@easycoding.org> - 1.5.0-1
|
||||
- Updated to version 1.5.0.
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Oct 25 2018 Vitaly Zaitsev <vitaly@easycoding.org> - 1.4.1-1
|
||||
- Initial SPEC release.
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (google-benchmark-1.7.0.tar.gz) = 25f81930ce210e298d9cc67c965cc8937f66c53427b18a672338b86424eef32df877ec6b7a7106417464b29c5048b014fcc82cfa773168ed701aa47d01f39f82
|
||||
SHA512 (google-benchmark-1.4.1.tar.gz) = e9d71b4679cb4e4d755f7bb4101e131b37e209b6aebd0853e0c63eb11c42b75faa5da4ff8c265149808a475f3a1cfb140c5b49f877acfda908a4bb7add983aae
|
||||
|
Loading…
Reference in New Issue
Block a user