Compare commits
No commits in common. "c8" and "c9" have entirely different histories.
@ -1 +1 @@
|
|||||||
eb98b65d7b642a370759002c5d190cbf8f896f66 SOURCES/HdrHistogram_c-0.9.13.tar.gz
|
4b1eb84702536de7e5513655f2abed33236623d0 SOURCES/HdrHistogram_c-0.11.0.tar.gz
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/HdrHistogram_c-0.9.13.tar.gz
|
SOURCES/HdrHistogram_c-0.11.0.tar.gz
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
Name: HdrHistogram_c
|
Name: HdrHistogram_c
|
||||||
Version: 0.9.13
|
Version: 0.11.0
|
||||||
Release: 2%{?dist}
|
Release: 6%{?dist}
|
||||||
Summary: C port of the HdrHistogram
|
Summary: C port of the HdrHistogram
|
||||||
License: BSD and Public Domain
|
License: BSD and Public Domain
|
||||||
URL: https://github.com/HdrHistogram/%{name}
|
URL: https://github.com/HdrHistogram/%{name}
|
||||||
Source0: https://github.com/HdrHistogram/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
|
Source0: https://github.com/HdrHistogram/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
BuildRequires: gcc cmake zlib-devel
|
BuildRequires: gcc g++ cmake zlib-devel
|
||||||
|
|
||||||
%description
|
%description
|
||||||
C port of High Dynamic Range (HDR) Histogram.
|
C port of High Dynamic Range (HDR) Histogram.
|
||||||
@ -25,19 +25,17 @@ developing applications that use %{name}.
|
|||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake .
|
%cmake -DHDR_HISTOGRAM_INSTALL_STATIC=OFF .
|
||||||
%make_build
|
%cmake_build
|
||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
ls test
|
%ctest
|
||||||
test/hdr_atomic_test
|
|
||||||
test/hdr_histogram_test
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
%make_install
|
%cmake_install
|
||||||
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
||||||
find $RPM_BUILD_ROOT
|
find $RPM_BUILD_ROOT
|
||||||
|
|
||||||
@ -49,15 +47,9 @@ find $RPM_BUILD_ROOT
|
|||||||
%files
|
%files
|
||||||
%license LICENSE.txt
|
%license LICENSE.txt
|
||||||
%doc README.md
|
%doc README.md
|
||||||
%exclude %{_bindir}/hiccup
|
%exclude %{_bindir}/*
|
||||||
%exclude %{_bindir}/hdr_decoder
|
%{_libdir}/libhdr_histogram.so.6.1.0
|
||||||
%exclude %{_bindir}/perftest
|
%{_libdir}/libhdr_histogram.so.6
|
||||||
%exclude %{_bindir}/hdr_histogram_log_test
|
|
||||||
%exclude %{_bindir}/hdr_histogram_test
|
|
||||||
%exclude %{_bindir}/hdr_histogram_atomic_test
|
|
||||||
%{_libdir}/libhdr_histogram.so.5.0.0
|
|
||||||
%{_libdir}/libhdr_histogram.so.5
|
|
||||||
%exclude %{_libdir}/libhdr_histogram_static.a
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%dir %{_includedir}/hdr
|
%dir %{_includedir}/hdr
|
||||||
@ -68,16 +60,35 @@ find $RPM_BUILD_ROOT
|
|||||||
%{_includedir}/hdr/hdr_histogram_log.h
|
%{_includedir}/hdr/hdr_histogram_log.h
|
||||||
%{_includedir}/hdr/hdr_histogram.h
|
%{_includedir}/hdr/hdr_histogram.h
|
||||||
%{_libdir}/libhdr_histogram.so
|
%{_libdir}/libhdr_histogram.so
|
||||||
|
%{_libdir}/cmake/hdr_histogram/*.cmake
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed May 20 2020 Nathan Scott <nathans@redhat.com> - 0.9.13-2
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.11.0-6
|
||||||
- Rebuild for CI/gating
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 0.11.0-5
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.0-3
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 22 2020 Lukas Zapletal <lzap+rpm@redhat.com> - 0.11.0-1
|
||||||
|
- New upstream version
|
||||||
|
|
||||||
* Wed Apr 29 2020 Nathan Scott <nathans@redhat.com> - 0.9.13-1
|
* Wed Apr 29 2020 Nathan Scott <nathans@redhat.com> - 0.9.13-1
|
||||||
- Initial version for RHEL-8 (BZ 1748643)
|
- New upstream version
|
||||||
|
|
||||||
* Wed Feb 12 2020 Lukas Zapletal <lzap+rpm@redhat.com> - 0.9.12-1
|
* Wed Feb 12 2020 Lukas Zapletal <lzap+rpm@redhat.com> - 0.9.12-1
|
||||||
- New version
|
- New upstream version
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.11-2
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.11-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
Loading…
Reference in New Issue
Block a user