Sync from SUSE:SLFO:Main toolbox revision 39d4ffa8970ecdde9be275db0f98e34f

This commit is contained in:
Adrian Schröter 2024-11-04 17:29:33 +01:00
parent b9bb88735c
commit e5b1b4c5a3
6 changed files with 50 additions and 28 deletions

View File

@ -1,14 +1,14 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="version">2.3</param>
<param name="versionformat">2.3+git%cd.%h</param>
<service name="tar_scm" mode="manual">
<param name="version">2.4</param>
<param name="versionformat">2.4+git%cd.%h</param>
<param name="url">https://github.com/openSUSE/microos-toolbox.git</param>
<param name="scm">git</param>
<param name="changesgenerate">enable</param>
</service>
<service name="recompress" mode="disabled">
<service name="recompress" mode="manual">
<param name="compression">xz</param>
<param name="file">*.tar</param>
</service>
<service name="set_version" mode="disabled"/>
<service name="set_version" mode="manual"/>
</services>

View File

@ -1,6 +1,6 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/openSUSE/microos-toolbox.git</param>
<param name="changesrevision">3a6ef35d392295752584e7e888c4469b53eed7ee</param>
<param name="changesrevision">2ae84213dcc9dcbdd4fad2e574a84dd4b65e37aa</param>
</service>
</servicedata>

Binary file not shown.

BIN
microos-toolbox-2.4+git20241030.2ae8421.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,18 +1,45 @@
-------------------------------------------------------------------
Mon Aug 12 08:04:27 UTC 2024 - Jiri Srain <jsrain@suse.com>
Wed Oct 30 07:46:30 UTC 2024 - kukuk@suse.com
- switch back to toolbox version 5.5 as SLFO code base still has
limited set of toos available (and supported)
- Update to version 2.4+git20241030.2ae8421:
* Adjust md syntax for go-md2man
* Fix header
* Sync README with manual page
* Ignore generated toolbox.1 manual page
-------------------------------------------------------------------
Mon Mar 25 16:12:18 UTC 2024 - Gustavo Yokoyama Ribeiro <gyribeiro@suse.com>
Fri Oct 25 14:26:17 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
- Rename SLE-Micro to SL-Micro
- Use go-md2man instead of pandoc to convert a markdown file to
nroff. The dep chain is just much, much smaller.
-------------------------------------------------------------------
Wed Feb 28 08:10:39 UTC 2024 - Thorsten Kukuk <kukuk@suse.com>
Fri Oct 25 09:49:28 UTC 2024 - Thorsten Kukuk <kukuk@suse.com>
- Adjust image path for SLE Micro 6.0
- Remove Leap and SLE Micro hacks from spec file, this products
have to provide correct branding packages.
-------------------------------------------------------------------
Fri Oct 25 08:42:47 UTC 2024 - kukuk@suse.com
- Update to version 2.3+git20241025.00f69f5:
* Add manual page
-------------------------------------------------------------------
Fri Sep 27 09:30:16 UTC 2024 - Alexandre Vicenzi <alexandre.vicenzi@suse.com>
- Revert last change and update SLE/Leap Micro images to 5.5 (bsc#1227328)
-------------------------------------------------------------------
Tue Sep 24 12:22:08 UTC 2024 - Alexandre Vicenzi <alexandre.vicenzi@suse.com>
- Update SLE/Leap Micro images from 5.4 to 6.0 (bsc#1227328)
-------------------------------------------------------------------
Thu Jul 04 09:45:43 UTC 2024 - kukuk@suse.com
- Update to version 2.3+git20240704.84ec25e:
* toolbox: use correct container state tense in msg
-------------------------------------------------------------------
Mon Oct 30 13:38:45 UTC 2023 - kukuk@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package toolbox
#
# Copyright (c) 2023 SUSE LLC
# 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
@ -17,13 +17,14 @@
Name: toolbox
Version: 2.3+git20231030.3a6ef35
Version: 2.4+git20241030.2ae8421
Release: 0
Summary: Script to start a toolbox container for system debugging
License: Apache-2.0
Group: System/Management
URL: https://github.com/openSUSE/microos-toolbox
Source: microos-toolbox-%{version}.tar.xz
BuildRequires: go-md2man
Requires: (podman or docker)
Suggests: podman
BuildArch: noarch
@ -38,25 +39,19 @@ such a system. The root filesystem can be found at /media/root.
%prep
%setup -q -n microos-toolbox-%{version}
%if 0%{?suse_version} == 1600
%if !0%{?is_opensuse}
sed -i -e 's,registry.opensuse.org,registry.suse.com,' toolbox
sed -i -e 's,opensuse/toolbox,suse/sle-micro/5.5/toolbox,' toolbox
%else
sed -i -e 's,opensuse/toolbox,opensuse/leap-micro/5.5/toolbox,' toolbox
%endif
%endif
%build
go-md2man -in toolbox.1.md -out toolbox.1
%install
mkdir -p %{buildroot}%{_bindir}
install -m 755 toolbox %{buildroot}%{_bindir}/toolbox
install -D -m 755 toolbox %{buildroot}%{_bindir}/toolbox
install -D -m 644 toolbox.1 %{buildroot}%{_mandir}/man1/toolbox.1
%files
%license LICENSE
%doc README.md
%{_bindir}/toolbox
%{_mandir}/man1/toolbox.1%{?ext_man}
%ghost %config %{_sysconfdir}/toolboxrc
%changelog