sys-fs/dua-cli: add 2.34.0

Signed-off-by: Jonas Frei <freijon@pm.me>
This commit is contained in:
Jonas Frei
2026-02-22 07:04:03 +01:00
parent 5405596d81
commit 592c19a973
2 changed files with 34 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
DIST dua-cli-2.33.0-crates.tar.xz 23387012 BLAKE2B bc0a799050e2ad6ef9d97d03b51bfa6014d99b47c8fe4fcc230d3656e92c23a5ab7ea97c2d14573e5b698002faf4f238d8938d995780081ad450b74c5513017f SHA512 6ea5cc9979857b1c793a589b75ffa4a920cb71b17c6b4041f34206597a955a45feadd5c91828ab5f5e83e503e42565d55d018214a79fa776dbfbd7837f2d4087
DIST dua-cli-2.33.0.tar.gz 145773 BLAKE2B 33431b1828e4f05bb19455a16b42a362d6cef3d26bcc377ce6616a8da82bce877fdc0f857cbc2c5ee61dc96f974083db0929036abde7785fa4283e2efa079bb3 SHA512 336541c839e79a60169d56fec53d2bf1569db32efc101056df6af7f184c3ac34c98f7b5b6ddb84ab0bc3777cf1edbbf1758295882e49c2bee2edb6e94e437603
DIST dua-cli-2.34.0-crates.tar.xz 24447448 BLAKE2B 3a062f80b51d16f3bafc9f94a15185812f835db0662ffef9294cdc8b67ee2772a05b7d19656d69e56758cfb66a9d8805551b01c973819c4d77238136b2b62b77 SHA512 a09a75e7c76a3baa655fa5b14a5f40b3b27142290b240f2b53998d82c4897e9fc84bc5d4a153084a85cfc035a63185642a84d5af8911934fdb5546b4b2ed8466
DIST dua-cli-2.34.0.tar.gz 151653 BLAKE2B e4d76feeedb433f7ef5a95720ab43e1bb56667286c68f46faa54c1864c25ec67de9b30e234612f1b2303407c71ce94ecbc48cb72d39c1e3dc3f966ea94f97531 SHA512 f5e6e81c9c351470923211cd35bd7401b4b2cc663978b8353febb31b0a5b90ae0cc2c7d07b685c9385e8421a9325b66481a59157d15bc94114a258ca4813e659

View File

@@ -0,0 +1,32 @@
# Copyright 2023-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
RUST_MIN_VER="1.88.0"
inherit cargo
DESCRIPTION="A tool to conveniently learn about the disk usage of directories, fast!"
HOMEPAGE="https://github.com/Byron/dua-cli"
SRC_URI="https://github.com/Byron/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
DEPS_URI="https://github.com/gentoo-crate-dist/${PN}/releases/download/v${PV}/${P}-crates.tar.xz"
SRC_URI+=" ${DEPS_URI}"
LICENSE="MIT"
# Dependent crate licenses
LICENSE+=" MIT Unicode-DFS-2016"
SLOT="0"
KEYWORDS="~amd64"
QA_FLAGS_IGNORED="usr/bin/dua"
DOCS=(
README.md
CHANGELOG.md
)
src_install() {
cargo_src_install
dodoc -r "${DOCS[@]}"
}