diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0a11a0b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/memstrack-afc06ba.tar.gz diff --git a/.memstrack.metadata b/.memstrack.metadata new file mode 100644 index 0000000..eaeaee5 --- /dev/null +++ b/.memstrack.metadata @@ -0,0 +1 @@ +fbdd189cded49991eead6a7c7ad683f152366c21 SOURCES/memstrack-afc06ba.tar.gz diff --git a/SPECS/memstrack.spec b/SPECS/memstrack.spec new file mode 100644 index 0000000..fe788d6 --- /dev/null +++ b/SPECS/memstrack.spec @@ -0,0 +1,51 @@ +# vim: syntax=spec +%global gitcommit afc06babd50695ea5c07c811e48d4c75c05b60aa +%global gitshortcommit %(c=%{gitcommit}; echo ${c:0:7}) +%global snapshotdate 20200628 + +Name: memstrack +Version: 0.1.8 +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 +* Sun Jun 28 2020 Kairui Song - 0.1.8-1 +- Bump to latest upstream version, fix some issues and introduce unit test + +* Wed Jun 24 2020 Kairui Song - 0.1.7-1 +- Bump to latest upstream version to fix multiple bugs + +* Wed May 20 2020 Kairui Song - 0.1.4-1 +- Bump to latest upstream version to fix some other issue found in early testing + +* Tue May 19 2020 Kairui Song - 0.1.3-1 +- Bump to latest upstream version to fix problems found by rpmdiff + +* Thu May 07 2020 Kairui Song - 0.1.2-1 +- Initial Release