app-crypt/hashcat-utils: add 1.10

Signed-off-by: Rick Farina <zerochaos@gentoo.org>
This commit is contained in:
Rick Farina
2025-09-17 22:15:41 -04:00
parent 0d49bbe694
commit 4d2ab4431a
2 changed files with 23 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST hashcat-utils-1.10.tar.gz 58700 BLAKE2B d3dbf3623d50b2c6a36bc72dfdfb1356ebfbb74c80f7830bd50ac49267311c7038927f4b6022b3950f2034f369523e983176eb8bff80211329b41dc2ac8eab71 SHA512 fccd55dfffa11b5ecceba0beab5af4af80dca7122dc33fb6a37287e6e6ddd15dfd6e8544ba3e6dc2ee2a76279c7b02e9127d07b2639338a03a73052df61b1ca4
DIST hashcat-utils-1.9.tar.gz 41612 BLAKE2B 2999a3c2a01c195ddca334325167f2a468a3466b48886f3a54804224fd8369a9c953279170d5291c534a157acdc4fefc2947765187c8fb0e6f4cd5e5fd2597c9 SHA512 5f8cef312496e13d1152742950397933e9d5866740afe377321fb48386174b64d96f90d3072febfb97bf0f7eb438f41d6b5e14bfc3e157c9c3e664ffbc5b614b

View File

@@ -0,0 +1,22 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="a set of small utilities that are useful in advanced password cracking"
HOMEPAGE="https://github.com/hashcat/hashcat-utils"
SRC_URI="https://github.com/hashcat/hashcat-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${P}/src"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
# File collision https://bugs.gentoo.org/667090
RDEPEND="!app-text/expander"
src_install() {
for i in *.bin; do
newbin ${i} ${i/.bin}
done
}