nroff. The dep chain is just much, much smaller. OBS-URL: https://build.opensuse.org/package/show/devel:microos/toolbox?expand=0&rev=19
58 lines
1.9 KiB
RPMSpec
58 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package toolbox
|
|
#
|
|
# 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
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: toolbox
|
|
Version: 2.4+git20241025.00f69f5
|
|
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
|
|
|
|
%description
|
|
On systems using transactional-update it is not really possible due to
|
|
the read-only root filesystem to install tools to analyze problems in the
|
|
currently running system, a reboot is always required. Which makes it next
|
|
to impossible to debug such problems. toolbox is a small script that launches
|
|
a container to let you bring in your favorite debugging or admin tools in
|
|
such a system. The root filesystem can be found at /media/root.
|
|
|
|
%prep
|
|
%setup -q -n microos-toolbox-%{version}
|
|
|
|
%build
|
|
go-md2man -in toolbox.1.md -out toolbox.1
|
|
|
|
%install
|
|
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
|