diff --git a/.crash-ptdump-command.metadata b/.crash-ptdump-command.metadata new file mode 100644 index 0000000..ab596a2 --- /dev/null +++ b/.crash-ptdump-command.metadata @@ -0,0 +1 @@ +8f95c3ba0754eb8424c361d26253e527951dc491 SOURCES/ptdump-1.0.3.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b9aa753 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/ptdump-1.0.3.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/crash-ptdump-command.spec b/SPECS/crash-ptdump-command.spec new file mode 100644 index 0000000..f05f06d --- /dev/null +++ b/SPECS/crash-ptdump-command.spec @@ -0,0 +1,56 @@ +# +# crash core analysis suite +# +Summary: ptdump extension module for the crash utility +Name: crash-ptdump-command +Version: 1.0.3 +Release: 1%{?dist} +License: GPLv2 +Group: Development/Debuggers +Source: ptdump-%{version}.tar.gz +URL: http://people.redhat.com/anderson/extensions/ptdump-%{version}.tar.gz +ExclusiveOS: Linux +ExclusiveArch: x86_64 +Buildroot: %{_tmppath}/%{name}-root +BuildRequires: crash-devel >= 5.1.5 +Requires: crash >= 5.1.5 + +%description +Retrieve and decode the log buffer generated by the Intel(R) Processor +Trace facility + +%prep +%setup -q -n ptdump-%{version} + +%build +make -f ptdump.mk + +%install +rm -Rf $RPM_BUILD_ROOT +mkdir -p %{buildroot}%{_libdir}/crash/extensions/ +cp %{_builddir}/ptdump-%{version}/ptdump.so %{buildroot}%{_libdir}/crash/extensions/ + +%clean +rm -rf %{buildroot} +rm -Rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root) +%{_libdir}/crash/extensions/ptdump.so +%doc COPYING + +%changelog +* Tue Mar 15 2016 Dave Anderson - 1.0.3-1.el7 +- Fix for coverity scan issues generated by 1.0.2 + Resolves: rhbz#1298172 + +* Mon Mar 14 2016 Dave Anderson - 1.0.2-1.el7 +- Memory leak fix and coverity scan fixes. + Resolves: rhbz#1298172 + +* Mon Feb 29 2016 Dave Anderson - 1.0.1-1.el7 +- Initial check-in. + Resolves: rhbz#1298172 + +* Tue Jan 26 2016 MUNEDA Takahiro - 1.0.1-1 +- Initial crash-ptdump-command package