Gentoo Archives: gentoo-commits

From: Richard Farina <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/hashcat-utils/
Date: Tue, 18 Sep 2018 20:27:35
Message-Id: 1537302394.f6225f11a1a5922e89834205d78d35828b8e4b78.zerochaos@gentoo
1 commit: f6225f11a1a5922e89834205d78d35828b8e4b78
2 Author: Zero_Chaos <zerochaos <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 18 20:26:12 2018 +0000
4 Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 18 20:26:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6225f11
7
8 app-crypt/hashcat-utils: initial ebuild
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 app-crypt/hashcat-utils/Manifest | 1 +
13 app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild | 25 ++++++++++++++++++++++++
14 app-crypt/hashcat-utils/metadata.xml | 10 ++++++++++
15 3 files changed, 36 insertions(+)
16
17 diff --git a/app-crypt/hashcat-utils/Manifest b/app-crypt/hashcat-utils/Manifest
18 new file mode 100644
19 index 00000000000..2938a9626ad
20 --- /dev/null
21 +++ b/app-crypt/hashcat-utils/Manifest
22 @@ -0,0 +1 @@
23 +DIST hashcat-utils-1.9.tar.gz 41612 BLAKE2B 2999a3c2a01c195ddca334325167f2a468a3466b48886f3a54804224fd8369a9c953279170d5291c534a157acdc4fefc2947765187c8fb0e6f4cd5e5fd2597c9 SHA512 5f8cef312496e13d1152742950397933e9d5866740afe377321fb48386174b64d96f90d3072febfb97bf0f7eb438f41d6b5e14bfc3e157c9c3e664ffbc5b614b
24
25 diff --git a/app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild b/app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild
26 new file mode 100644
27 index 00000000000..f6396ab52c8
28 --- /dev/null
29 +++ b/app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild
30 @@ -0,0 +1,25 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="a set of small utilities that are useful in advanced password cracking"
37 +HOMEPAGE="https://github.com/hashcat/hashcat-utils"
38 +SRC_URI="https://github.com/hashcat/hashcat-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="MIT"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE=""
44 +
45 +S="${WORKDIR}/${P}/src"
46 +
47 +DEPEND=""
48 +RDEPEND="${DEPEND}"
49 +BDEPEND=""
50 +
51 +src_install() {
52 + for i in *.bin; do
53 + newbin ${i} ${i/.bin}
54 + done
55 +}
56
57 diff --git a/app-crypt/hashcat-utils/metadata.xml b/app-crypt/hashcat-utils/metadata.xml
58 new file mode 100644
59 index 00000000000..b4ca965f410
60 --- /dev/null
61 +++ b/app-crypt/hashcat-utils/metadata.xml
62 @@ -0,0 +1,10 @@
63 +<?xml version="1.0" encoding="UTF-8"?>
64 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
65 +<pkgmetadata>
66 + <maintainer type="person">
67 + <name>Rick Farina</name>
68 + <email>zerochaos@g.o</email>
69 + </maintainer>
70 + <longdescription lang="en">
71 + </longdescription>
72 +</pkgmetadata>