app-containers/distrobox: bump to 1.8.2.5

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2026-04-29 22:34:48 +02:00
parent 3b1efc0e27
commit f7fa7c89bf
2 changed files with 59 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST distrobox-1.8.2.4.gh.tar.gz 2004397 BLAKE2B 36aff4e87eae2108cce5ebdb8c5ff754af32c57caa3d01ec38f8106d141acca876967a39648c86753897bcabe4ae1e69782f754afe060f7d99df5c3713f3b48c SHA512 c7c567a6006dd0657da46640598cbe02e8bb432db8b181de0b13f04f85966d2eeff35b6dcdb8bb8592573bb81518bdc8d3b63b0ae6288c0c3f1a83937fa948e0
DIST distrobox-1.8.2.5.gh.tar.gz 2047489 BLAKE2B 5fa251eb0fbfcfc24f4e123fbbe891a312a3bf4ed852f379b88c7f5bb9c59de6e908aae13e66788404edf92717bff41aa1e26d4e0e8b1ceb5c338d8fa82334a6 SHA512 f4dcd9a2edd2db8de6af50e3b6df4e43e793d9baff28529879dcbe3a05cbebf8ad02bef1c8a6b8951c9855e82e6991bd17a8cf2025e1ca285b7dbe80396b1da6

View File

@@ -0,0 +1,58 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit xdg-utils
DESCRIPTION="Use any Linux distribution inside your terminal (powered by docker/podman)"
HOMEPAGE="https://distrobox.it/
https://github.com/89luca89/distrobox/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/89luca89/${PN}"
else
SRC_URI="https://github.com/89luca89/${PN}/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
fi
LICENSE="GPL-3" # GPL-3.0-only !
SLOT="0"
IUSE="gui"
RDEPEND="
|| (
app-containers/docker
app-containers/podman
)
"
src_install() {
sh ./install --prefix "${ED}/usr" || die "${PN} install script failed"
if use gui ; then
:
else
rm -r "${ED}/usr/share/icons" || die
fi
dodoc *.md
}
pkg_postinst() {
if use gui ; then
xdg_icon_cache_update
xdg_desktop_database_update
fi
}
pkg_postrm() {
if use gui ; then
xdg_icon_cache_update
xdg_desktop_database_update
fi
}