Accepting request 1093616 from home:iDesmI:branches:Virtualization:containers
- Update to version 1.5.0: * additional-packages flag in create, to directly add packages during init * NVidia GPU Support for containers: distrobox will attempt to share host's drivers with the container * New distrobox-assemble command lets you declare your distroboxes-as-code, in an easy config file * Now, removing a distrobox will un-export apps and binaries exported by it * Init is now more flexible in how it adds packages, allowing for greater compatibility * Init now supports systemd containers using --additional-packages systemd during creation * General reliability improvements, lots of bug fixes and QoL OBS-URL: https://build.opensuse.org/request/show/1093616 OBS-URL: https://build.opensuse.org/package/show/Virtualization:containers/distrobox?expand=0&rev=29
This commit is contained in:
parent
5e3c9980aa
commit
0c90d66bd5
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cbe9217315f848396ec1eb8e21929d23065caa6a1a55f8988500475e823b1f31
|
||||
size 235019
|
3
distrobox-1.5.0.tar.gz
Normal file
3
distrobox-1.5.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a33c54270898118fc8f31bd954637814160c399f656d836d36d6e4e8c1b620a0
|
||||
size 5906290
|
@ -1,3 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Jun 18 05:33:20 UTC 2023 - Enrico Belleri <kilgore.trout@idesmi.eu>
|
||||
|
||||
- Update to version 1.5.0:
|
||||
* additional-packages flag in create, to directly add packages during init
|
||||
* NVidia GPU Support for containers: distrobox will attempt to share host's drivers with the container
|
||||
* New distrobox-assemble command lets you declare your distroboxes-as-code, in an easy config file
|
||||
* Now, removing a distrobox will un-export apps and binaries exported by it
|
||||
* Init is now more flexible in how it adds packages, allowing for greater compatibility
|
||||
* Init now supports systemd containers using --additional-packages systemd during creation
|
||||
* General reliability improvements, lots of bug fixes and QoL
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 21 16:28:39 UTC 2023 - Richard Brown <rbrown@suse.com>
|
||||
|
||||
|
@ -17,12 +17,12 @@
|
||||
|
||||
|
||||
Name: distrobox
|
||||
Version: 1.4.2.1
|
||||
Version: 1.5.0
|
||||
Release: 0
|
||||
Summary: Use any linux distribution inside your terminal
|
||||
License: GPL-3.0-only
|
||||
URL: https://github.com/89luca89/distrobox
|
||||
Source: distrobox-%{version}.tar.gz
|
||||
Source: https://github.com/89luca89/distrobox/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
Source1: distrobox.conf
|
||||
# Default to distrobox-enter when just distrobox is used
|
||||
Requires: %{_bindir}/basename
|
||||
@ -74,14 +74,14 @@ install -m 0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/distrobox/distrobox.conf
|
||||
%endif
|
||||
|
||||
# Move the icon
|
||||
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/1200x1200/apps
|
||||
mv %{buildroot}%{_datadir}/icons/terminal-distrobox-icon.png \
|
||||
%{buildroot}%{_datadir}/icons/hicolor/1200x1200/apps
|
||||
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/scalable/apps
|
||||
mv %{buildroot}%{_datadir}/icons/terminal-distrobox-icon.svg \
|
||||
%{buildroot}%{_datadir}/icons/hicolor/scalable/apps
|
||||
|
||||
# Generate all the other icon sizes
|
||||
for sz in 16 22 24 32 36 48 64 72 96 128 256; do
|
||||
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/${sz}x${sz}/apps
|
||||
convert terminal-distrobox-icon.png -resize ${sz}x${sz} \
|
||||
convert terminal-distrobox-icon.svg -resize ${sz}x${sz} \
|
||||
%{buildroot}%{_datadir}/icons/hicolor/${sz}x${sz}/apps/terminal-distrobox-icon.png
|
||||
done
|
||||
|
||||
@ -103,6 +103,7 @@ done
|
||||
%dir %{_datadir}/icons/hicolor/*x*/
|
||||
%dir %{_datadir}/icons/hicolor/*x*/apps/
|
||||
%{_datadir}/icons/hicolor/*/apps/terminal-distrobox-icon.png
|
||||
%{_datadir}/icons/hicolor/scalable/apps/terminal-distrobox-icon.svg
|
||||
|
||||
%files bash-completion
|
||||
%{_datadir}/bash-completion/completions/%{name}*
|
||||
|
Loading…
Reference in New Issue
Block a user