summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2025-01-27 15:06:55 +0100
committerMaciej Barć <xgqt@gentoo.org>2025-01-27 15:50:58 +0100
commit09d8106dee1a15082b925f93bf62bb16caacbb69 (patch)
tree7a2985e0ec6483d465371b263990822a2772326a /app-containers
parentdev-lang/nprolog: bump to 3.88 (diff)
downloadgentoo-09d8106dee1a15082b925f93bf62bb16caacbb69.tar.gz
gentoo-09d8106dee1a15082b925f93bf62bb16caacbb69.tar.bz2
gentoo-09d8106dee1a15082b925f93bf62bb16caacbb69.zip
app-containers/distrobox: bump to 1.8.1.2
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-containers')
-rw-r--r--app-containers/distrobox/Manifest1
-rw-r--r--app-containers/distrobox/distrobox-1.8.1.2.ebuild35
2 files changed, 36 insertions, 0 deletions
diff --git a/app-containers/distrobox/Manifest b/app-containers/distrobox/Manifest
index 75daa988a0a7..8e607114a72e 100644
--- a/app-containers/distrobox/Manifest
+++ b/app-containers/distrobox/Manifest
@@ -1,2 +1,3 @@
DIST distrobox-1.8.0.tar.gz 6915152 BLAKE2B ac1d3e8b99c1f9ec93518ec92c023aab76849a258e0482c23667ac3e7f4f80b4e93a4c7f0636c1bdd93dfe3dc67ccfc28261fb7f83d998259b8a0209534d3c90 SHA512 5d34c8aea935a6ea328071268b63ba8a5cd3e7962f85e9753e0adfcca6121c560d790124a1ce288ec6362e4c58e4e732d45a2873053a48a3d9b8bd823ddd72c5
DIST distrobox-1.8.1.1.tar.gz 1966162 BLAKE2B 9c995b97257721035362a78aefc4fd444ccbdafff500624e348781ebfb7d1742a0ce43a0089ddc45546c2cab821e04745c2b9d6d4ca3d4afa76f0baee679d9da SHA512 e0ab9db229f60cf54c338d73d763ec555b52e17e03dca5514f0e2eb0f30206a0ed260bdea0dee3230083769fef09d814dd9eb039a9500abca7272a0146c42803
+DIST distrobox-1.8.1.2.tar.gz 1966405 BLAKE2B 90f55785c15889ab75f7d0fce3b1d25d38fe1e481d9de20b959d9f2a0138675b45cbc225d1246dc12cf0a1a8ff089272f362a1b50474dffc41a67d9e596233ac SHA512 32cb3ddbc89fec68d44c4e5ab5791755323a6da7be825959b1b868bdbd8144ac5bdb59420f7d06b32c27d4235b95995f8a6af9f79505efbeba2286122519c25e
diff --git a/app-containers/distrobox/distrobox-1.8.1.2.ebuild b/app-containers/distrobox/distrobox-1.8.1.2.ebuild
new file mode 100644
index 000000000000..c4abce80a694
--- /dev/null
+++ b/app-containers/distrobox/distrobox-1.8.1.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+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}.git"
+else
+ SRC_URI="https://github.com/89luca89/${PN}/archive/${PV}.tar.gz
+ -> ${P}.tar.gz"
+
+ KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+fi
+
+LICENSE="GPL-3" # GPL-3.0-only !
+SLOT="0"
+
+RDEPEND="
+ || (
+ app-containers/docker
+ app-containers/podman
+ )
+"
+
+src_install() {
+ sh ./install --prefix "${ED}/usr" || die "${PN} install script failed"
+
+ dodoc *.md
+}