sys-process/rust-parallel: add 1.24.0

Signed-off-by: Holger Hoffstätte <holger@applied-asynchrony.com>
Merges: https://codeberg.org/gentoo/gentoo/pulls/1686
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
Holger Hoffstätte
2026-08-17 10:20:25 +02:00
committed by Arthur Zamarin
parent c796e3c69c
commit f4c26ae833
2 changed files with 42 additions and 0 deletions

View File

@@ -1,2 +1,4 @@
DIST rust-parallel-1.23.0-crates.tar.xz 6489528 BLAKE2B b06acb77b1bb4b6d0ca2557e26eca2b0657a0dc375b37195f3631982912c4f16e646f36dcc668983d8c82e64e1dfa91da7422ce452cb250b7d5205febe4faa07 SHA512 9083e09fd055f5d05efa910494329448ed06813286ec6f28c202911c9f889672b7c54f07b594705d635c8c83830778f342064a2e379611b4faa558f96cbaf13b
DIST rust-parallel-1.23.0.tar.gz 138370 BLAKE2B ef9dee5b9ab381d1ca0dd0b221119ba46c9844a7c13657e700b749a2fdbad35752a9515c97c50e5edc55d62a1c72bd028a081288beb404cc9feecf3b1be492b2 SHA512 3cf48f9b6b8b878fd2e1261427dcafb052061a9db2d6a0840c587062d625c8b7b229d4a89ca5cf469022dea4eb0dd2b69dbb6877d83c4c5db3dc4929d8275030
DIST rust-parallel-1.24.0-crates.tar.xz 6583920 BLAKE2B cddaca15dfe9bd50b41337f9af66e2a3d6d37443d2a0f5bb3ed35660586e89a5e6505e6a4af615a02c1048a31303cac3a3a1c2ca2d10ef5385321c099f6d5c53 SHA512 d00ce1afdf4cde49687315964e88c52af6b8555024a3aad930edc9336145ae2e681521e4ed76627963e5332f4fe55529e5a5b443d4aa204795da5fcec7d1b006
DIST rust-parallel-1.24.0.tar.gz 140205 BLAKE2B 3c0595451f23f4e69d43c9fd0fd450ba08d81ad79aa437512def44d1cc8afa0e30406cfb6511a8128c1869a582912b5b04604b6bac546bd43a02f0a164153f9e SHA512 5c8832ed8301bdfbbcd06682e9e65ad03749077522d2cc897fd2d06d57e585e731ad13905f35a277fd367de676078221d52fa4c880770e3e0fe9b7d2b4374ef9

View File

@@ -0,0 +1,40 @@
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# Autogenerated by pycargoebuild 0.15.1
EAPI=8
RUST_MIN_VER="1.85.0"
CRATES="
"
inherit cargo
DESCRIPTION="Fast command line app to run commands in parallel"
HOMEPAGE="https://github.com/aaronriekenberg/rust-parallel"
SRC_URI="
https://github.com/aaronriekenberg/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://github.com/gentoo-crate-dist/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
"
LICENSE="MIT"
# Dependent crate licenses
LICENSE+=" Apache-2.0 BSD MIT Unicode-DFS-2016"
SLOT="0"
KEYWORDS="~amd64"
IUSE="symlink"
RDEPEND="symlink? ( !sys-process/parallel )"
QA_FLAGS_IGNORED="usr/bin/${PN}"
src_install() {
dobin $(cargo_target_dir)/rust-parallel
if use symlink ; then
dosym rust-parallel /usr/bin/parallel
fi
}