commit:     5968225a6e8d21a214aa88dda1d6f4496fe87a8b
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  5 15:17:48 2026 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Feb  5 16:17:29 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5968225a

app-containers/distrobox: bump to 1.8.2.4

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-containers/distrobox/Manifest                 |  1 +
 app-containers/distrobox/distrobox-1.8.2.4.ebuild | 58 +++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/app-containers/distrobox/Manifest 
b/app-containers/distrobox/Manifest
index 24b67f5738c9..ad268f461c8f 100644
--- a/app-containers/distrobox/Manifest
+++ b/app-containers/distrobox/Manifest
@@ -1,2 +1,3 @@
 DIST distrobox-1.8.2.2.gh.tar.gz 2002827 BLAKE2B 
48524ea86bb7c0a9631f385e146dfbba4ab752115f06e03de85264d3ecf61d55f889f6d64ffd265bc28aee82a6808394bfb5e15579cb70431c1ff78606eef197
 SHA512 
98379fb14b20c70a56fb6e1bfe4ff938fab34d9bc47f7b0b6d1cff703d1c725e3bd5feb330bfa3e7102e23c04ecdb94ce5e660ef4ac72a0c61b3b63e9a397b6d
 DIST distrobox-1.8.2.3.gh.tar.gz 2002934 BLAKE2B 
5c19aa99cff2891de121c985abff4484327d8a716c46fed04052fa301c91d8779d887ed3e1213ad9e6f90acfeba85f489e2b45bbbf3d73865c3d57313b6e00c9
 SHA512 
a16e5c67f279c068e34330626285f0c0d9a5af3a3b845a936d248c1e42b5ccccbb14b9b4f4b854b5e27fcf63f6ccc3f6f4a2bc5b45b2f3e39bafe1e217605b72
+DIST distrobox-1.8.2.4.gh.tar.gz 2004397 BLAKE2B 
36aff4e87eae2108cce5ebdb8c5ff754af32c57caa3d01ec38f8106d141acca876967a39648c86753897bcabe4ae1e69782f754afe060f7d99df5c3713f3b48c
 SHA512 
c7c567a6006dd0657da46640598cbe02e8bb432db8b181de0b13f04f85966d2eeff35b6dcdb8bb8592573bb81518bdc8d3b63b0ae6288c0c3f1a83937fa948e0

diff --git a/app-containers/distrobox/distrobox-1.8.2.4.ebuild 
b/app-containers/distrobox/distrobox-1.8.2.4.ebuild
new file mode 100644
index 000000000000..aa019f993b23
--- /dev/null
+++ b/app-containers/distrobox/distrobox-1.8.2.4.ebuild
@@ -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
+}

Reply via email to