import memstrack-0.1.4-1.el8

This commit is contained in:
CentOS Sources 2020-06-09 19:54:45 +00:00 committed by Andrew Lukoshko
commit e75e923c9e
3 changed files with 47 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
SOURCES/memstrack-bd9e0c3.tar.gz

1
.memstrack.metadata Normal file
View File

@ -0,0 +1 @@
0cd92493cba74ad24a23294184e55266c85f01b4 SOURCES/memstrack-bd9e0c3.tar.gz

45
SPECS/memstrack.spec Normal file
View File

@ -0,0 +1,45 @@
# vim: syntax=spec
%global gitcommit bd9e0c35df50883a37e1768db418dbde0419ee41
%global gitshortcommit %(c=%{gitcommit}; echo ${c:0:7})
%global snapshotdate 20200520
Name: memstrack
Version: 0.1.4
Release: 1%{?dist}
Summary: A memory allocation tracer, like a hot spot analyzer for memory allocation
License: GPLv3
URL: https://github.com/ryncsn/memstrack
VCS: git+git@github.com:ryncsn/memstrack.git
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}
make %{?_smp_mflags}
%install
mkdir -p %{buildroot}/%{_bindir}
install -p -m 755 memstrack %{buildroot}/%{_bindir}
%files
%doc README.md
%license LICENSE
%{_bindir}/memstrack
%changelog
* Wed May 20 2020 Kairui Song <kasong@redhat.com> - 0.1.4-1
- Bump to latest upstream version to fix some other issue found in early testing
* Tue May 19 2020 Kairui Song <kasong@redhat.com> - 0.1.3-1
- Bump to latest upstream version to fix problems found by rpmdiff
* Thu May 07 2020 Kairui Song <kasong@redhat.com> - 0.1.2-1
- Initial Release