diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-11-20 17:55:29 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-11-20 20:17:27 +0100 |
commit | d5fa0aa0db20d604e08617aaff8b01a725a54eac (patch) | |
tree | a561dcb808b0e0b4737186a994f49c95a26587a4 /app-containers/distrobox | |
parent | app-containers/distrobox: sync live 9999 (diff) | |
download | gentoo-d5fa0aa0db20d604e08617aaff8b01a725a54eac.tar.gz gentoo-d5fa0aa0db20d604e08617aaff8b01a725a54eac.tar.bz2 gentoo-d5fa0aa0db20d604e08617aaff8b01a725a54eac.zip |
app-containers/distrobox: bump to 1.6.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-containers/distrobox')
-rw-r--r-- | app-containers/distrobox/Manifest | 1 | ||||
-rw-r--r-- | app-containers/distrobox/distrobox-1.6.0.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/app-containers/distrobox/Manifest b/app-containers/distrobox/Manifest index 1b52bbffb418..a6c196e16d80 100644 --- a/app-containers/distrobox/Manifest +++ b/app-containers/distrobox/Manifest @@ -1 +1,2 @@ DIST distrobox-1.5.0.2.tar.gz 5899915 BLAKE2B 2ab49e09b49dc674e0fdfd2783e4a63f12a9ec954674950c5c6f497500e1b1a6697b7350b7dfd9a246f4d3efe228c7610adde79832b0da13967b88c561186194 SHA512 41f889e8e0c0ce7019d4b1a8c638b8de8260df5c541c4068430580820094ae04b6bd8dd5a6e1a82541daf8c4f5cfed0165dc1a85e01906093d3c1a4d715e23b1 +DIST distrobox-1.6.0.tar.gz 6751299 BLAKE2B bd0edc1fa913450f033de6a78acc7631a714b6f12032f78bd4821ed9366836e94a47220da90167fb5ee0f791341d15f2027259dfc0b581b0c2d1787112b5b65f SHA512 8403349771a4f8705f88e759ff4cbffffaac1197a028a938f072b2e71b115c0cdef958b98ba9bea075feebb34330831b8eaef1aa7df6f942276a2290e4c1b6df diff --git a/app-containers/distrobox/distrobox-1.6.0.ebuild b/app-containers/distrobox/distrobox-1.6.0.ebuild new file mode 100644 index 000000000000..cf9ea7ec09d5 --- /dev/null +++ b/app-containers/distrobox/distrobox-1.6.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2023 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.privatedns.org/ + 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 +} |