Compare commits
29 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
edd2298769 | ||
|
|
0f5c4c381d | ||
|
|
a2c786de0b | ||
|
|
f46fb3ba3c | ||
|
|
94a6775aac | ||
|
|
1ba0b4876e | ||
|
|
db0197b744 | ||
|
|
63c067cd19 | ||
|
|
3a4c4677a1 | ||
|
|
07f1db2b0d | ||
|
|
cf4d77aa24 | ||
|
|
23a91e7031 | ||
|
|
a3506a3263 | ||
|
|
0cbcff3ba4 | ||
|
|
d6c4d7c587 | ||
|
|
d61e4b81c9 | ||
|
|
8ec06e58ca | ||
|
|
6f1c1c4052 | ||
|
|
120a6ce1a6 | ||
|
|
8805e4b239 | ||
|
|
d91d2c8523 | ||
|
|
1d3597789e | ||
|
|
ea36bd0bb0 | ||
|
|
2334d4ee5f | ||
|
|
5ff63e6c80 | ||
|
|
8da835d84a | ||
|
|
f81e991c0a | ||
|
|
e447d41208 | ||
|
|
bba451ece1 |
2 changed files with 36 additions and 9 deletions
|
|
@ -9,4 +9,4 @@ require:
|
|||
test: |
|
||||
rpm --erase p11-kit-server
|
||||
bash ./rootless-test.sh
|
||||
duration: 3h 30m
|
||||
duration: 4h
|
||||
|
|
|
|||
43
toolbox.spec
43
toolbox.spec
|
|
@ -1,5 +1,14 @@
|
|||
%global __brp_check_rpaths %{nil}
|
||||
|
||||
%if 0%{?rhel}
|
||||
%if 0%{?rhel} <= 9
|
||||
%{!?bash_completions_dir: %global bash_completions_dir %{_datadir}/bash-completion/completions}
|
||||
%{!?fish_completions_dir: %global fish_completions_dir %{_datadir}/fish/vendor_completions.d}
|
||||
%{!?zsh_completions_dir: %global zsh_completions_dir %{_datadir}/zsh/site-functions}
|
||||
%endif
|
||||
%endif
|
||||
|
||||
|
||||
Name: toolbox
|
||||
Version: 0.3
|
||||
|
||||
|
|
@ -33,7 +42,7 @@ Version: 0.3
|
|||
%endif
|
||||
%endif
|
||||
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
Summary: Tool for interactive command line environments on Linux
|
||||
|
||||
License: Apache-2.0
|
||||
|
|
@ -56,7 +65,7 @@ BuildRequires: go-md2man
|
|||
BuildRequires: golang >= %{toolbx_go}
|
||||
BuildRequires: meson >= 0.58.0
|
||||
BuildRequires: pkgconfig(bash-completion)
|
||||
BuildRequires: shadow-utils-subid-devel
|
||||
BuildRequires: shadow-utils-subid-devel >= 4.16.0
|
||||
BuildRequires: systemd
|
||||
BuildRequires: systemd-rpm-macros
|
||||
%if ! 0%{?rhel}
|
||||
|
|
@ -75,7 +84,7 @@ Recommends: fuse-overlayfs
|
|||
Requires: containers-common
|
||||
Requires: flatpak-session-helper
|
||||
Requires: podman >= 1.6.4
|
||||
Requires: shadow-utils-subid%{?_isa}
|
||||
Requires: shadow-utils-subid%{?_isa} >= 4.16.0
|
||||
|
||||
|
||||
%description
|
||||
|
|
@ -142,14 +151,14 @@ export CGO_CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_
|
|||
|
||||
%meson \
|
||||
%if 0%{?rhel}
|
||||
-Dfish_completions_dir=%{_datadir}/fish/vendor_completions.d \
|
||||
-Dfish_completions_dir=%{fish_completions_dir} \
|
||||
%if 0%{?rhel} <= 9
|
||||
-Dmigration_path_for_coreos_toolbox=true \
|
||||
%endif
|
||||
%endif
|
||||
-Dprofile_dir=%{_sysconfdir}/profile.d \
|
||||
-Dtmpfiles_dir=%{_tmpfilesdir} \
|
||||
-Dzsh_completions_dir=%{_datadir}/zsh/site-functions
|
||||
-Dzsh_completions_dir=%{zsh_completions_dir}
|
||||
|
||||
%meson_build
|
||||
|
||||
|
|
@ -172,15 +181,15 @@ install -m0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/containers/%{name}.conf
|
|||
%doc CODE-OF-CONDUCT.md CONTRIBUTING.md GOALS.md NEWS README.md SECURITY.md
|
||||
%license COPYING src/vendor/modules.txt
|
||||
%{_bindir}/%{name}
|
||||
%{_datadir}/bash-completion
|
||||
%{_datadir}/fish
|
||||
%{_datadir}/zsh
|
||||
%{_mandir}/man1/%{name}.1*
|
||||
%{_mandir}/man1/%{name}-*.1*
|
||||
%{_mandir}/man5/%{name}.conf.5*
|
||||
%config(noreplace) %{_sysconfdir}/containers/%{name}.conf
|
||||
%{_sysconfdir}/profile.d/%{name}.sh
|
||||
%{_tmpfilesdir}/%{name}.conf
|
||||
%{bash_completions_dir}/%{name}.bash
|
||||
%{fish_completions_dir}/%{name}.fish
|
||||
%{zsh_completions_dir}/_%{name}
|
||||
|
||||
|
||||
%files tests
|
||||
|
|
@ -188,16 +197,31 @@ install -m0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/containers/%{name}.conf
|
|||
|
||||
|
||||
%changelog
|
||||
* Fri Oct 10 2025 Alejandro Sáez <asm@redhat.com> - 0.3-2
|
||||
- rebuild
|
||||
|
||||
* Wed Sep 17 2025 Debarshi Ray <rishi@fedoraproject.org> - 0.3-1
|
||||
- Update to 0.3
|
||||
|
||||
* Fri Aug 15 2025 Maxwell G <maxwell@gtmx.me> - 0.2-2
|
||||
- Rebuild for golang-1.25.0
|
||||
|
||||
* Sat Aug 09 2025 Debarshi Ray <rishi@fedoraproject.org> - 0.2-1
|
||||
- Update to 0.2
|
||||
- Fix CVE-2025-23266, CVE-2025-23267, and GHSA-fv92-fjc5-jj9h or GO-2025-3787
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Tue Jun 03 2025 Debarshi Ray <rishi@fedoraproject.org> - 0.1.2-1
|
||||
- Update to 0.1.2
|
||||
|
||||
* Wed Jan 22 2025 Debarshi Ray <rishi@fedoraproject.org> - 0.1.1-3
|
||||
- Use RPM macros for shell completions and clean up directory ownership
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Mon Nov 04 2024 Debarshi Ray <rishi@fedoraproject.org> - 0.1.1-1
|
||||
- Update to 0.1.1
|
||||
|
||||
|
|
@ -222,6 +246,9 @@ install -m0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/containers/%{name}.conf
|
|||
* Mon Sep 30 2024 Debarshi Ray <rishi@fedoraproject.org> - 0.0.99.6-1
|
||||
- Update to 0.0.99.6
|
||||
|
||||
* Thu Sep 12 2024 Debarshi Ray <rishi@fedoraproject.org> - 0.0.99.5-18
|
||||
- Rebuild against shadow-utils-subid ABI version 5.0.0
|
||||
|
||||
* Thu Aug 08 2024 Debarshi Ray <rishi@fedoraproject.org> - 0.0.99.5-17
|
||||
- Ensure slirp4netns(1) is installed
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue