2020-03-15 11:10:43 +00:00
|
|
|
# vim: syntax=spec
|
2023-01-28 14:41:48 +00:00
|
|
|
%global gitcommit 560379ee67db48382ccc3ab3de866e239fd74ca8
|
2020-03-15 11:10:43 +00:00
|
|
|
%global gitshortcommit %(c=%{gitcommit}; echo ${c:0:7})
|
|
|
|
|
|
|
|
Name: memstrack
|
2023-01-28 14:41:48 +00:00
|
|
|
Version: 0.2.5
|
2024-06-24 16:02:39 +00:00
|
|
|
Release: 5%{?dist}
|
2020-03-15 11:10:43 +00:00
|
|
|
Summary: A memory allocation tracer, like a hot spot analyzer for memory allocation
|
2023-07-04 08:20:58 +00:00
|
|
|
License: GPL-3.0-only
|
2020-03-15 11:10:43 +00:00
|
|
|
URL: https://github.com/ryncsn/memstrack
|
|
|
|
VCS: git+git@github.com:ryncsn/memstrack.git
|
2021-07-17 08:44:02 +00:00
|
|
|
BuildRequires: make
|
2020-03-15 11:10:43 +00:00
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
|
|
|
|
Source: https://github.com/ryncsn/memstrack/archive/%{gitcommit}/memstrack-%{gitshortcommit}.tar.gz
|
|
|
|
|
|
|
|
%description
|
|
|
|
A memory allocation tracer, like a hot spot analyzer for memory allocation
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n memstrack-%{gitcommit}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%{set_build_flags}
|
2021-01-11 11:49:16 +00:00
|
|
|
%{make_build}
|
2020-03-15 11:10:43 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p %{buildroot}/%{_bindir}
|
|
|
|
install -p -m 755 memstrack %{buildroot}/%{_bindir}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc README.md
|
|
|
|
%license LICENSE
|
|
|
|
%{_bindir}/memstrack
|
|
|
|
|
|
|
|
%changelog
|
2024-06-24 16:02:39 +00:00
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 0.2.5-5
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
2024-01-25 06:11:40 +00:00
|
|
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.5-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-21 07:19:25 +00:00
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2023-07-20 14:14:03 +00:00
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-01-28 14:41:48 +00:00
|
|
|
* Sat Jan 28 2023 Kairui Song <ryncsn@gmail.com> - 0.2.5-1
|
|
|
|
- Update to upstream latest release.
|
|
|
|
- Fix crash when wrong reporter type is used.
|
|
|
|
- Fix a few tracing error.
|
|
|
|
|
2023-01-19 19:21:44 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-07-21 20:56:00 +00:00
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-01-20 19:05:00 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-12-09 05:02:17 +00:00
|
|
|
* Thu Dec 09 2021 Kairui Song <ryncsn@gmail.com> - 0.2.4-1
|
|
|
|
- Update to upstream latest release, fix minor TUI bugs.
|
|
|
|
|
2021-07-22 14:07:52 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-17 08:44:02 +00:00
|
|
|
* Sat Jul 17 2021 Kairui Song <kasong@redhat.com> - 0.2.3-1
|
|
|
|
- Update to upstream latest release
|
|
|
|
|
2021-02-08 15:15:11 +00:00
|
|
|
* Mon Feb 08 2021 Kairui Song <kasong@redhat.com> - 0.2.2-1
|
|
|
|
- Update to upstream latest release
|
|
|
|
|
2021-01-26 19:38:01 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.12-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-11 11:49:16 +00:00
|
|
|
* Mon Jan 11 2021 Timm Bäder <tbaeder@redhat.com> - 0.1.12-2
|
|
|
|
- Use %%make_build macro
|
|
|
|
https://docs.fedoraproject.org/en-US/packaging-guidelines/#_parallel_make
|
|
|
|
|
2020-08-30 13:44:28 +00:00
|
|
|
* Sun Aug 30 2020 Kairui Song <kasong@redhat.com> - 0.1.12-1
|
|
|
|
- Update to upstream latest release
|
|
|
|
|
2020-07-29 17:52:17 +00:00
|
|
|
* Thu Jul 30 2020 Kairui Song <kasong@redhat.com> - 0.1.9-1
|
|
|
|
- Update to upstream latest release
|
|
|
|
|
2020-07-28 07:15:45 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-29 17:52:17 +00:00
|
|
|
* Sat Jun 06 2020 Kairui Song <kasong@redhat.com> - 0.1.8-1
|
2020-07-05 17:27:40 +00:00
|
|
|
- Update to upstream latest release
|
|
|
|
|
2020-05-30 10:53:58 +00:00
|
|
|
* Sat May 30 2020 Kairui Song <ryncsn@gmail.com> - 0.1.5-1
|
|
|
|
- Update to upstream latest release
|
|
|
|
|
2020-04-20 17:51:57 +00:00
|
|
|
* Tue Apr 21 2020 Kairui Song <ryncsn@gmail.com> - 0.1.2-1
|
|
|
|
- Update to upstream latest release
|
|
|
|
|
2020-03-15 11:10:43 +00:00
|
|
|
* Sun Mar 15 2020 Kairui Song <ryncsn@gmail.com> - 0-1.20200310gitee02de2
|
|
|
|
- First release
|