Update package to version 2.1.0
This commit is contained in:
parent
ab87d0847e
commit
b4ed1d27c9
Binary file not shown.
50
PilotGo.spec
Executable file → Normal file
50
PilotGo.spec
Executable file → Normal file
@ -1,14 +1,18 @@
|
|||||||
%define debug_package %{nil}
|
%define debug_package %{nil}
|
||||||
|
|
||||||
Name: PilotGo
|
Name: PilotGo
|
||||||
Version: 2.0.1
|
Version: 2.1.0
|
||||||
Release: 2
|
Release: 1
|
||||||
Summary: PilotGo is a plugable operation platform written in go
|
Summary: PilotGo is a plugable operation platform written in go
|
||||||
License: MulanPSL-2.0
|
License: MulanPSL-2.0
|
||||||
URL: https://gitee.com/openeuler/PilotGo
|
URL: https://gitee.com/openeuler/PilotGo
|
||||||
Source0: https://gitee.com/openeuler/PilotGo/%{name}-%{version}.tar.gz
|
Source0: https://gitee.com/openeuler/PilotGo/repository/archive/v%{version}.tar.gz
|
||||||
# Web packaged from ace055a5584482443e9fcfcca906cff2949f6c9b
|
# tar -xvf Source0
|
||||||
|
# cd %{name}-v%{version}/frontend/
|
||||||
|
# run 'yarn install and yarn build' in it
|
||||||
|
# tar -czvf PilotGo-web.tar.gz ../frontend/dist/
|
||||||
Source1: PilotGo-web.tar.gz
|
Source1: PilotGo-web.tar.gz
|
||||||
|
|
||||||
BuildRequires: systemd
|
BuildRequires: systemd
|
||||||
BuildRequires: golang
|
BuildRequires: golang
|
||||||
|
|
||||||
@ -30,25 +34,30 @@ Provides: pilotgo-agent = %{version}-%{release}
|
|||||||
PilotGo agent.
|
PilotGo agent.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n %{name}-%{version}
|
%setup -n %{name}-v%{version}
|
||||||
tar -xzvf %{SOURCE1}
|
tar -xzvf %{SOURCE1}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
cp -rf frontend/dist/* src/app/server/resource
|
||||||
# server
|
# server
|
||||||
GO111MODULE=on go build -mod=vendor -o PilotGo-server pkg/app/server/main.go
|
pushd src/app/server
|
||||||
|
GOWORK=off GO111MODULE=on go build -mod=vendor -o PilotGo-server -tags="production" main.go
|
||||||
|
popd
|
||||||
# agent
|
# agent
|
||||||
GO111MODULE=on go build -mod=vendor -o PilotGo-agent pkg/app/agent/main.go
|
pushd src/app/agent
|
||||||
|
GOWORK=off GO111MODULE=on go build -mod=vendor -o PilotGo-agent main.go
|
||||||
|
popd
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p %{buildroot}/opt/PilotGo/{server/{frontend,log},agent/log}
|
mkdir -p %{buildroot}/opt/PilotGo/{server/log,agent/log}
|
||||||
# server
|
# server
|
||||||
install -D -m 0755 PilotGo-server %{buildroot}/opt/PilotGo/server
|
install -D -m 0755 src/app/server/PilotGo-server %{buildroot}/opt/PilotGo/server
|
||||||
install -D -m 0644 config_server.yaml.templete %{buildroot}/opt/PilotGo/server/config_server.yaml
|
install -D -m 0644 src/config_server.yaml.templete %{buildroot}/opt/PilotGo/server/config_server.yaml
|
||||||
|
install -D -m 0644 src/user.xlsx.templete %{buildroot}/opt/PilotGo/server/user.xlsx
|
||||||
install -D -m 0644 scripts/service/PilotGo-server.service %{buildroot}%{_unitdir}/PilotGo-server.service
|
install -D -m 0644 scripts/service/PilotGo-server.service %{buildroot}%{_unitdir}/PilotGo-server.service
|
||||||
cp -rf frontend/dist %{buildroot}/opt/PilotGo/server/frontend
|
|
||||||
# agent
|
# agent
|
||||||
install -D -m 0755 PilotGo-agent %{buildroot}/opt/PilotGo/agent
|
install -D -m 0755 src/app/agent/PilotGo-agent %{buildroot}/opt/PilotGo/agent
|
||||||
install -D -m 0644 config_agent.yaml.templete %{buildroot}/opt/PilotGo/agent/config_agent.yaml
|
install -D -m 0644 src/config_agent.yaml.templete %{buildroot}/opt/PilotGo/agent/config_agent.yaml
|
||||||
install -D -m 0644 scripts/service/PilotGo-agent.service %{buildroot}%{_unitdir}/PilotGo-agent.service
|
install -D -m 0644 scripts/service/PilotGo-agent.service %{buildroot}%{_unitdir}/PilotGo-agent.service
|
||||||
|
|
||||||
%post server
|
%post server
|
||||||
@ -70,25 +79,22 @@ install -D -m 0644 scripts/service/PilotGo-agent.service %{buildroot}%{_unitdir}
|
|||||||
%systemd_postun PilotGo-agent.service
|
%systemd_postun PilotGo-agent.service
|
||||||
|
|
||||||
%files server
|
%files server
|
||||||
%dir /opt/PilotGo
|
|
||||||
%dir /opt/PilotGo/server
|
|
||||||
%dir /opt/PilotGo/server/log
|
|
||||||
/opt/PilotGo/server/PilotGo-server
|
/opt/PilotGo/server/PilotGo-server
|
||||||
/opt/PilotGo/server/config_server.yaml
|
/opt/PilotGo/server/config_server.yaml
|
||||||
%dir /opt/PilotGo/server/frontend
|
/opt/PilotGo/server/user.xlsx
|
||||||
/opt/PilotGo/server/frontend/dist
|
/opt/PilotGo/server/log
|
||||||
%{_unitdir}/PilotGo-server.service
|
%{_unitdir}/PilotGo-server.service
|
||||||
|
|
||||||
%files agent
|
%files agent
|
||||||
%dir /opt/PilotGo
|
|
||||||
%dir /opt/PilotGo/agent
|
|
||||||
%dir /opt/PilotGo/agent/log
|
|
||||||
/opt/PilotGo/agent/PilotGo-agent
|
/opt/PilotGo/agent/PilotGo-agent
|
||||||
/opt/PilotGo/agent/config_agent.yaml
|
/opt/PilotGo/agent/config_agent.yaml
|
||||||
|
/opt/PilotGo/agent/log
|
||||||
%{_unitdir}/PilotGo-agent.service
|
%{_unitdir}/PilotGo-agent.service
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Apr 03 2024 jianxinyu <jiangxinyu@kylinos.cn> - 2.1.0-1
|
||||||
|
- Update package to version 2.1.0
|
||||||
|
|
||||||
* Wed Sep 13 2023 wubijie <wubijie@kylinos.cn> - 2.0.1-2
|
* Wed Sep 13 2023 wubijie <wubijie@kylinos.cn> - 2.0.1-2
|
||||||
- Modify the README.md file
|
- Modify the README.md file
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user