commit: 4d2ab4431a7deb5fec2fc980726a0912682ca35b Author: Rick Farina <zerochaos <AT> gentoo <DOT> org> AuthorDate: Thu Sep 18 02:15:41 2025 +0000 Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org> CommitDate: Thu Sep 18 02:15:41 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d2ab443
app-crypt/hashcat-utils: add 1.10 Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org> app-crypt/hashcat-utils/Manifest | 1 + app-crypt/hashcat-utils/hashcat-utils-1.10.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/app-crypt/hashcat-utils/Manifest b/app-crypt/hashcat-utils/Manifest index 2938a9626ad8..6562313d3179 100644 --- a/app-crypt/hashcat-utils/Manifest +++ b/app-crypt/hashcat-utils/Manifest @@ -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 diff --git a/app-crypt/hashcat-utils/hashcat-utils-1.10.ebuild b/app-crypt/hashcat-utils/hashcat-utils-1.10.ebuild new file mode 100644 index 000000000000..901fd5a09aa7 --- /dev/null +++ b/app-crypt/hashcat-utils/hashcat-utils-1.10.ebuild @@ -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 +}
