libkdumpfile/libkdumpfile.spec

120 lines
3.3 KiB
RPMSpec
Raw Normal View History

%global mainlibsover 8
%global addrlibsover 1
2021-04-05 02:23:40 +00:00
Name: libkdumpfile
Version: 0.4.0
Release: 6%{?dist}
2021-04-05 02:23:40 +00:00
Summary: Kernel coredump file access
License: LGPLv3+ or GPLv2+
URL: https://github.com/ptesarik/libkdumpfile
Source0: %{url}/releases/download/v%{version}/%{name}-%{version}.tar.gz
BuildRequires: gcc-c++
BuildRequires: doxygen
BuildRequires: make
BuildRequires: sed
BuildRequires: lzo-devel
BuildRequires: python3-devel
BuildRequires: snappy-devel
BuildRequires: zlib-devel
%description
libkdumpfile is a library to read kdump-compressed kernel core dumps.
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%package doc
Summary: Documentation for %{name}
%description doc
The %{name}-doc package contains documentation for %{name}.
%package -n python3-%{name}
2021-04-05 02:23:40 +00:00
Summary: Python bindings for %{name}
Obsoletes: %{name}-python < %{version}-%{release}
Provides: %{name}-python = %{version}-%{release}
Provides: %{name}-python%{?_isa} = %{version}-%{release}
2021-04-05 02:23:40 +00:00
Requires: %{name}%{?_isa} = %{version}-%{release}
%description -n python3-%{name}
The python3-%{name} package contains Python bindings for %{name}.
2021-04-05 02:23:40 +00:00
%package util
Summary: Utilities to read kernel core dumps
Requires: %{name}%{?_isa} = %{version}-%{release}
%description util
The %{name}-devel package contains misc utilities built with %{name}.
%prep
%autosetup
# Remove unneeded shebang
sed -e "\|#!/usr/bin/env python|d" -i python/*/*.py
%build
%configure --disable-static
%make_build
%{__make} doxygen-doc
%install
%make_install
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
%files
%license COPYING COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv3
%doc README.md NEWS
%{_libdir}/libaddrxlat.so.%{mainlibsover}{,.*}
%{_libdir}/libkdumpfile.so.%{addrlibsover}{,.*}
2021-04-05 02:23:40 +00:00
%files devel
%{_includedir}/%{name}/
%{_libdir}/libaddrxlat.so
%{_libdir}/libkdumpfile.so
2021-04-05 02:23:40 +00:00
%{_libdir}/pkgconfig/libaddrxlat.pc
%{_libdir}/pkgconfig/libkdumpfile.pc
%files doc
%license COPYING COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv3
%doc doc/html
%files -n python3-%{name}
2021-04-05 02:23:40 +00:00
%{python3_sitelib}/addrxlat
%{python3_sitearch}/_addrxlat.so*
%{python3_sitelib}/kdumpfile
%{python3_sitearch}/_kdumpfile.so*
%files util
%{_bindir}/dumpattr
%{_bindir}/listxendoms
%{_bindir}/showxlat
2021-04-05 02:23:40 +00:00
%changelog
* Tue Apr 12 2022 Neal Gompa <ngompa@datto.com> - 0.4.0-6
- Update spec to comply with packaging guidelines
+ Use correct globbing for libraries in file list
+ Rename Python binding subpackage to match Python guidelines
+ Stop globbing binaries in util subpackage
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
2021-06-04 18:09:22 +00:00
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.4.0-3
- Rebuilt for Python 3.10
2021-04-05 02:23:40 +00:00
* Fri Apr 2 2021 Davide Cavalca <dcavalca@fedoraproject.org> - 0.4.0-2
- Fix license
* Fri Feb 26 2021 Davide Cavalca <dcavalca@fedoraproject.org> - 0.4.0-1
- Initial package