init version

Signed-off-by: fwking <wangxiaogang3@huawei.com>
(cherry picked from commit 0ba73f32e1eda53f05d2b9ac55d7130d2daed3d8)
This commit is contained in:
fwking 2022-12-07 12:06:31 +08:00 committed by openeuler-sync-bot
parent f0d67b89de
commit 26a0626f51
2 changed files with 45 additions and 0 deletions

BIN
xdiagnose-1.0.1.tar.gz Normal file

Binary file not shown.

45
xdiagnose.spec Normal file
View File

@ -0,0 +1,45 @@
%global debug_package %{nil}
Name: xdiagnose
Version: 1.0.1
Release: 1
Summary: system diagnostic tool set
License: MulanPSL-2.0
URL: https://gitee.com/openeuler/X-diagnosis
Source0: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
BuildRequires: python3 python3-setuptools
BuildRequires: elfutils-devel clang llvm libbpf libbpf-devel
%description
Xdiagnose is an OS troubleshooting tool that integrates functions such as analysis, network tracking, periodic information recording, and historical experience curing.
%prep
%setup -n %{name}-%{version}
%build
python3 setup.py build
sh xdiag_ebpf/build.sh -b
%install
python3 setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
sh xdiag_ebpf/build.sh -i %{buildroot}/%{_bindir}
mkdir -p %{buildroot}%{_sysconfdir}/x-diagnose
cp -a diag.conf %{buildroot}%{_sysconfdir}/x-diagnose
cp -a xdiag_sh/sysinspect/sysinspect %{buildroot}%{_bindir}/xd_sysinspect
%clean
rm -rf $RPM_BUILD_ROOT
%files -f INSTALLED_FILES
%defattr(-,root,root)
%config(noreplace) %{_sysconfdir}/x-diagnose/diag.conf
%{_bindir}/*
%changelog
* Fri Dec 2 2022 lankstra<lankstra@163.com> - 1.0.1-1
- init version.