Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 1953958 Details for
Bug 2180450
Review Request: hirte - a service orchestrator tool intended for multi-node devices (e.g.: edge devices) clusters
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh109 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
Migrated Products
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
The .spec file difference from Copr build 5690816 to 5712539
spec-from-5690816-to-5712539.diff (text/plain), 5.18 KB, created by
Jakub Kadlčík
on 2023-03-27 15:08:50 UTC
(
hide
)
Description:
The .spec file difference from Copr build 5690816 to 5712539
Filename:
MIME Type:
Creator:
Jakub Kadlčík
Created:
2023-03-27 15:08:50 UTC
Size:
5.18 KB
patch
obsolete
>--- https://copr.fedorainfracloud.org/coprs/build/5690816 >+++ https://copr.fedorainfracloud.org/coprs/build/5712539 >@@ -1,18 +1,25 @@ >-Name: hirte >-Version: 0.1.0 >-Release: 2%{?dist} >-Summary: A service orchestrator tool for multi-node devices (e.g.: edge devices) >-License: GPLv2 >-URL: https://github.com/containers/hirte >-Source0: %{name}-%{version}.tar.gz >+Name: hirte >+Version: 0.1.1 >+Release: 1%{?dist} >+Summary: A systemd service controller for multi-nodes environments >+License: GPL-2.0-or-later >+URL: https://github.com/containers/hirte >+Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz > >-BuildRequires: gcc >-BuildRequires: meson >-BuildRequires: systemd-devel >-BuildRequires: systemd-rpm-macros >-BuildRequires: golang-github-cpuguy83-md2man >+BuildRequires: gcc >+BuildRequires: meson >+BuildRequires: systemd-devel >+BuildRequires: systemd-rpm-macros >+BuildRequires: golang-github-cpuguy83-md2man > >-Requires: systemd >+Requires: systemd >+ >+%description >+Hirte is a systemd service controller for multi-nodes environements with a >+predefined number of nodes and with a focus on highly regulated environment >+such as those requiring functional safety (for example in cars). >+ >+This package contains the controller and command line tool. > > %post > %systemd_post hirte.service >@@ -22,52 +29,6 @@ > > %postun > %systemd_postun_with_restart hirte.service >- >-%description >-Hirte is a service orchestrator tool intended for multi-node devices (e.g.: >-edge devices) clusters with a predefined number of nodes and with a focus on >-highly regulated environment such as those requiring functional safety (for >-example in cars). >-This package contains the orchestrator and command line tool. >- >- >-%package agent >-Summary: Hirte service orchestrator agent >-Requires: systemd >- >-%post agent >-%systemd_post hirte-agent.service >- >-%preun agent >-%systemd_preun hirte-agent.service >- >-%postun agent >-%systemd_postun_with_restart hirte-agent.service >- >-%description agent >-Hirte is a service orchestrator tool intended for multi-node devices (e.g.: >-edge devices) clusters with a predefined number of nodes and with a focus on >-highly regulated environment such as those requiring functional safety (for >-example in cars). >-This package contains the node agent. >- >- >-%prep >-%setup -c -q >- >- >-%build >-%meson -Dapi_bus=system >-%meson_build >- >- >-%install >-%meson_install >- >- >-%check >-%meson_test >- > > %files > %config(noreplace) %{_sysconfdir}/hirte/hirte.conf >@@ -88,19 +49,93 @@ > %{_unitdir}/hirte.service > %{_unitdir}/hirte.socket > >+#-------------------------------------------------- >+ >+%package agent >+Summary: Hirte service controller agent >+Requires: systemd >+ >+%description agent >+Hirte is a systemd service controller for multi-nodes environements with a >+predefined number of nodes and with a focus on highly regulated environment >+such as those requiring functional safety (for example in cars). >+ >+This package contains the node agent. >+ >+%post agent >+%systemd_post hirte-agent.service >+ >+%preun agent >+%systemd_preun hirte-agent.service >+ >+%postun agent >+%systemd_postun_with_restart hirte-agent.service >+ > %files agent > %config(noreplace) %{_sysconfdir}/hirte/agent.conf > %doc README.md > %license LICENSE > %{_bindir}/hirte-agent >+%{_datadir}/dbus-1/system.d/org.containers.hirte.Agent.conf > %{_datadir}/hirte-agent/config/hirte-default.conf > %{_mandir}/man1/hirte-agent.* > %{_mandir}/man5/hirte-agent.conf.* >-%{_sysconfdir}/dbus-1/system.d/org.containers.hirte.Agent.conf > %{_unitdir}/hirte-agent.service > %{_userunitdir}/hirte-agent.service > >+#-------------------------------------------------- >+ >+%package ctl >+Summary: Hirte service controller command line tool >+Requires: %{name} = %{version}-%{release} >+Provides: hirtectl = %{version}-%{version} >+ >+%description ctl >+Hirte is a systemd service controller for multi-nodes environements with a >+predefined number of nodes and with a focus on highly regulated environment >+such as those requiring functional safety (for example in cars). >+This package contains the service controller command line tool. >+ >+%files ctl >+%doc README.md >+%license LICENSE >+%{_bindir}/hirtectl >+%{_mandir}/man1/hirtectl.* >+ >+#-------------------------------------------------- >+ >+%prep >+%autosetup >+ >+%build >+%meson -Dapi_bus=system >+%meson_build >+ >+%install >+%meson_install >+ >+%check >+%meson_test >+ >+ > %changelog >+* Mon Mar 27 2023 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.1-1 >+- Update to 0.1.1 >+- Adjust Source0 to point to /archive/hirte-<version>/hirte-<version>.tar.gz >+- Adjust the location of dbus-1/system.d/org.containers.hirte.conf and >+ bus-1/system.d/org.containers.hirte.Agent.conf so they are in _datadir >+- Add the hirte-ctl subpackage (which provides hirtectl for convenience) >+ >+* Wed Mar 22 2023 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.0-5 >+- Adjust summary and description according to the changes made upstream >+ >+* Wed Mar 22 2023 Pierre-Yves Chibon <pingou@pingoured.fr> - 0.1.0-4 >+- Fix the Source0 to point to a resolvable url >+- Replace tabs with spaces >+ >+* Tue Mar 21 2023 Martin Perina <mperina@redhat.com> - 0.1.0-3 >+- Move the different files section near the different package definition >+ > * Tue Mar 21 2023 Martin Perina <mperina@redhat.com> - 0.1.0-2 > - Make rpmlint happier >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 2180450
: 1953958 |
1953961
|
1954104