app-containers/distrobox: drop old 1.8.2.0

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2025-11-06 11:08:02 +01:00
parent 98e98dd535
commit da6f254650
2 changed files with 0 additions and 60 deletions

View File

@@ -1,3 +1,2 @@
DIST distrobox-1.8.1.2.tar.gz 1966405 BLAKE2B 90f55785c15889ab75f7d0fce3b1d25d38fe1e481d9de20b959d9f2a0138675b45cbc225d1246dc12cf0a1a8ff089272f362a1b50474dffc41a67d9e596233ac SHA512 32cb3ddbc89fec68d44c4e5ab5791755323a6da7be825959b1b868bdbd8144ac5bdb59420f7d06b32c27d4235b95995f8a6af9f79505efbeba2286122519c25e
DIST distrobox-1.8.2.0.gh.tar.gz 2002251 BLAKE2B 841366148f386e1d7080078f4d4ebf2a4296ca72da3a6dfeb97000ee471045be99b11750888bc07bd844bfcdd39cd96f6b44165dbd862721a5b1bec7db07e763 SHA512 860eb6cd253b271a23146870aae2aee82add201e0071df97c1c43868b1b03680a70e075b59de1b9dd34b16af91bfe7de55424ebad6cf2302c8d19b4c07dc5764
DIST distrobox-1.8.2.1.gh.tar.gz 2002149 BLAKE2B cb9295ff08089525539dabff3514544f4fb2a1fd4497b1166474603efe06ba8a7924f706de6a86db3f8acbf1c2fe499342bed80d0b5f51f697b5f7d6a0f8b5b6 SHA512 bedf768b90c5f88acb1f520daa296be04d97002f9bbc635619f130a90f3cef746cb86849a8420c32593233efc074ecb9308a3158909b9c95b85995bdf6b8ea2a

View File

@@ -1,59 +0,0 @@
# Copyright 1999-2025 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
)
"
_gui_cache_update() {
if use gui ; then
xdg_icon_cache_update
xdg_desktop_database_update
fi
}
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() {
_gui_cache_update
}
pkg_postrm() {
_gui_cache_update
}