2024-05-04 00:55:11 +02:00
|
|
|
#
|
|
|
|
# spec file for package supportutils
|
|
|
|
#
|
|
|
|
# Copyright (c) 2024 SUSE LLC
|
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
%define support_libdir /usr/lib/supportconfig
|
2024-12-11 15:14:13 +01:00
|
|
|
# ensure usr-merge does not effect existing SLE
|
|
|
|
%if %suse_version < 1550
|
|
|
|
%define _sbindir /sbin
|
|
|
|
%endif
|
2024-05-04 00:55:11 +02:00
|
|
|
|
|
|
|
Name: supportutils
|
2024-12-11 15:14:13 +01:00
|
|
|
Version: 3.2.9
|
2024-05-04 00:55:11 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: Support Troubleshooting Tools
|
|
|
|
License: GPL-2.0-only
|
|
|
|
Group: System/Monitoring
|
|
|
|
Url: https://github.com/openSUSE/supportutils
|
|
|
|
Source: %{name}-%{version}.tar.gz
|
|
|
|
Requires: iproute2
|
|
|
|
Requires: ncurses-utils
|
|
|
|
%ifarch ppc64le s390x
|
|
|
|
Requires: numactl
|
|
|
|
%endif
|
|
|
|
Requires: tar
|
|
|
|
Requires: /usr/bin/which
|
|
|
|
Requires: /usr/bin/sed
|
|
|
|
Requires: /usr/bin/awk
|
|
|
|
Provides: supportconfig-plugin-rc
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description
|
|
|
|
A package containing troubleshooting tools. This package contains
|
|
|
|
the following: supportconfig, chkbin, getappcore, analyzevmcore
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
gzip -9f man/*3
|
|
|
|
gzip -9f man/*5
|
|
|
|
gzip -9f man/*8
|
|
|
|
|
|
|
|
%install
|
|
|
|
pwd;ls -la
|
|
|
|
mkdir -p %{buildroot}%{_sbindir}
|
|
|
|
install -d %{buildroot}%{_sysconfdir}/supportutils
|
|
|
|
install -d %{buildroot}%{_mandir}/man3
|
|
|
|
install -d %{buildroot}%{_mandir}/man5
|
|
|
|
install -d %{buildroot}%{_mandir}/man8
|
|
|
|
install -d %{buildroot}%{support_libdir}/resources
|
|
|
|
install -d %{buildroot}%{support_libdir}/plugins
|
|
|
|
install -d %{buildroot}%{_docdir}/%{name}
|
|
|
|
install -m 544 bin/supportconfig %{buildroot}%{_sbindir}
|
|
|
|
install -m 544 bin/chkbin %{buildroot}%{_sbindir}
|
|
|
|
install -m 544 bin/getappcore %{buildroot}%{_sbindir}
|
|
|
|
install -m 544 bin/analyzevmcore %{buildroot}%{_sbindir}
|
|
|
|
install -m 444 bin/supportconfig.rc %{buildroot}%{support_libdir}/resources
|
|
|
|
install -m 644 man/*.3.gz %{buildroot}%{_mandir}/man3
|
|
|
|
install -m 644 man/*.5.gz %{buildroot}%{_mandir}/man5
|
|
|
|
install -m 644 man/*.8.gz %{buildroot}%{_mandir}/man8
|
|
|
|
install -m 644 man/COPYING.GPLv2 %{buildroot}%{_docdir}/%{name}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_sbindir}/supportconfig
|
|
|
|
%{_sbindir}/chkbin
|
|
|
|
%{_sbindir}/getappcore
|
|
|
|
%{_sbindir}/analyzevmcore
|
|
|
|
%dir %{support_libdir}
|
|
|
|
%dir %{support_libdir}/resources
|
|
|
|
%dir %{support_libdir}/plugins
|
|
|
|
%dir %{_docdir}/%{name}
|
|
|
|
%dir %{_sysconfdir}/supportutils
|
|
|
|
|
|
|
|
%if 0%{?suse_version} < 1500
|
|
|
|
%doc %{_docdir}/%{name}/COPYING.GPLv2
|
|
|
|
%else
|
|
|
|
%license %{_docdir}/%{name}/COPYING.GPLv2
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%{support_libdir}/resources/*
|
|
|
|
%doc %{_mandir}/man5/*
|
|
|
|
%doc %{_mandir}/man3/*
|
|
|
|
%doc %{_mandir}/man8/*
|
|
|
|
|
|
|
|
%changelog
|