From 9417b0090d45636e05ca7201b370a41ee894570b Mon Sep 17 00:00:00 2001 From: wangkui Date: Fri, 9 May 2025 22:04:30 +0800 Subject: [PATCH] add require coreutils (cherry picked from commit 336d548da5f1eb80a25897fdc318aa855eb49270) --- oeGitExt.spec | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/oeGitExt.spec b/oeGitExt.spec index 5e0fa16..cfeb3b5 100644 --- a/oeGitExt.spec +++ b/oeGitExt.spec @@ -2,7 +2,7 @@ Name: oegitext Version: 0.0.1 -Release: 2 +Release: 3 License: MulanPSL-2.0 Group: Development/Tools Summary: oeGitExt is used to help developers leverage the openEuler community infrastructure. @@ -15,6 +15,8 @@ Source0: oeGitExt-%{version}.tar.gz BuildRequires: python3 python3-pyinstaller python3-yaml python3-requests +Requires: coreutils + %description oeGitExt is used to help developers leverage the openEuler community infrastructure. It enables developers to participate in openEuler community development by using command line. @@ -42,13 +44,16 @@ install -c -m 0644 src/conf.yaml %{buildroot}%{_datadir}/%{name}/_internal/src %post -ln -s %{_datadir}/%{name}/%{name} %{_bindir}/%{name} -ln -s %{_datadir}/%{name}/_internal/src %{_datadir}/%{name}/src +ln -sf %{_datadir}/%{name}/%{name} %{_bindir}/%{name} +ln -sf %{_datadir}/%{name}/_internal/src %{_datadir}/%{name}/src %changelog -* Thu Feb 27 2025 wangkui - 0.0.1-2 +* Thu May 8 2025 wangkui - 0.0.1-3 +- add require coreutils + +* Thu Feb 27 2025 wangkui - 0.0.1-2 - fix config issue -* Wed Feb 12 2025 wangkui - 0.0.1-1 +* Wed Feb 12 2025 wangkui - 0.0.1-1 - init -- Gitee