Blame SPECS/memstrack.spec

a4bdcb
# vim: syntax=spec
a4bdcb
a4bdcb
Name:           memstrack
0d82f9
Version:        0.2.4
0d82f9
Release:        2%{?dist}
a4bdcb
Summary:        A memory allocation tracer, like a hot spot analyzer for memory allocation
a4bdcb
License:        GPLv3
a4bdcb
URL:            https://github.com/ryncsn/memstrack
a4bdcb
VCS:            git+git@github.com:ryncsn/memstrack.git
a4bdcb
BuildRequires:  gcc
a4bdcb
BuildRequires:  ncurses-devel
a4bdcb
0d82f9
Source:         https://github.com/ryncsn/memstrack/archive/refs/tags/v%{version}.tar.gz
0d82f9
0d82f9
Patch1: 0001-Skip-memcg-info-in-__process_stacktrace-for-page_own.patch
0d82f9
Patch2: 0002-Fix-data-type-error-in-perf_handle_mm_page_alloc.patch
a4bdcb
a4bdcb
%description
a4bdcb
A memory allocation tracer, like a hot spot analyzer for memory allocation
a4bdcb
a4bdcb
%prep
0d82f9
%setup -q -n memstrack-%{version}
0d82f9
%patch1 -p1
0d82f9
%patch2 -p1
a4bdcb
a4bdcb
%build
a4bdcb
%{set_build_flags}
a4bdcb
make %{?_smp_mflags}
a4bdcb
a4bdcb
%install
a4bdcb
mkdir -p %{buildroot}/%{_bindir}
a4bdcb
install -p -m 755 memstrack %{buildroot}/%{_bindir}
a4bdcb
a4bdcb
%files
a4bdcb
%doc README.md
a4bdcb
%license LICENSE
a4bdcb
%{_bindir}/memstrack
a4bdcb
a4bdcb
%changelog
0d82f9
* Fri Jul 15 2022 Tao Liu <ltao@redhat.com> - 0.2.4-2
0d82f9
- Revert bz2107730
0d82f9
0d82f9
* Fri Jul 15 2022 Tao Liu <ltao@redhat.com> - 0.2.4-1
0d82f9
- Rebase to latest upstream(813c2feaa2f)
0d82f9
a4bdcb
* Tue Aug 6 2020 Kairui Song <kasong@redhat.com> - 0.1.11-1
a4bdcb
- Fix memstrack failure with large memory hole
a4bdcb
a4bdcb
* Tue Jul 14 2020 Kairui Song <kasong@redhat.com> - 0.1.8-2
a4bdcb
- Fix TUI not quiting issue
a4bdcb
a4bdcb
* Sun Jun 28 2020 Kairui Song <kasong@redhat.com> - 0.1.8-1
a4bdcb
- Bump to latest upstream version, fix some issues and introduce unit test
a4bdcb
a4bdcb
* Wed Jun 24 2020 Kairui Song <kasong@redhat.com> - 0.1.7-1
a4bdcb
- Bump to latest upstream version to fix multiple bugs
a4bdcb
a4bdcb
* Wed May 20 2020 Kairui Song <kasong@redhat.com> - 0.1.4-1
a4bdcb
- Bump to latest upstream version to fix some other issue found in early testing
a4bdcb
a4bdcb
* Tue May 19 2020 Kairui Song <kasong@redhat.com> - 0.1.3-1
a4bdcb
- Bump to latest upstream version to fix problems found by rpmdiff
a4bdcb
a4bdcb
* Thu May 07 2020 Kairui Song <kasong@redhat.com> - 0.1.2-1
a4bdcb
- Initial Release