From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1047749-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C9934138334 for <garchives@archives.gentoo.org>; Tue, 18 Sep 2018 20:27:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB3D3E09ED; Tue, 18 Sep 2018 20:27:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A4D26E09ED for <gentoo-commits@lists.gentoo.org>; Tue, 18 Sep 2018 20:27:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E4B3335CFC for <gentoo-commits@lists.gentoo.org>; Tue, 18 Sep 2018 20:27:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74A3E3BE for <gentoo-commits@lists.gentoo.org>; Tue, 18 Sep 2018 20:27:30 +0000 (UTC) From: "Richard Farina" <zerochaos@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" <zerochaos@gentoo.org> Message-ID: <1537302394.f6225f11a1a5922e89834205d78d35828b8e4b78.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/hashcat-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/hashcat-utils/Manifest app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild app-crypt/hashcat-utils/metadata.xml X-VCS-Directories: app-crypt/hashcat-utils/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: f6225f11a1a5922e89834205d78d35828b8e4b78 X-VCS-Branch: master Date: Tue, 18 Sep 2018 20:27:30 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 29cf3ce0-92e2-4a25-9305-0f2b91579e3c X-Archives-Hash: 1028f5d209fee85f1afb8bb2fcc73292 commit: f6225f11a1a5922e89834205d78d35828b8e4b78 Author: Zero_Chaos <zerochaos <AT> gentoo <DOT> org> AuthorDate: Tue Sep 18 20:26:12 2018 +0000 Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org> CommitDate: Tue Sep 18 20:26:34 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6225f11 app-crypt/hashcat-utils: initial ebuild Package-Manager: Portage-2.3.49, Repoman-2.3.10 app-crypt/hashcat-utils/Manifest | 1 + app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild | 25 ++++++++++++++++++++++++ app-crypt/hashcat-utils/metadata.xml | 10 ++++++++++ 3 files changed, 36 insertions(+) diff --git a/app-crypt/hashcat-utils/Manifest b/app-crypt/hashcat-utils/Manifest new file mode 100644 index 00000000000..2938a9626ad --- /dev/null +++ b/app-crypt/hashcat-utils/Manifest @@ -0,0 +1 @@ +DIST hashcat-utils-1.9.tar.gz 41612 BLAKE2B 2999a3c2a01c195ddca334325167f2a468a3466b48886f3a54804224fd8369a9c953279170d5291c534a157acdc4fefc2947765187c8fb0e6f4cd5e5fd2597c9 SHA512 5f8cef312496e13d1152742950397933e9d5866740afe377321fb48386174b64d96f90d3072febfb97bf0f7eb438f41d6b5e14bfc3e157c9c3e664ffbc5b614b diff --git a/app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild b/app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild new file mode 100644 index 00000000000..f6396ab52c8 --- /dev/null +++ b/app-crypt/hashcat-utils/hashcat-utils-1.9.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S="${WORKDIR}/${P}/src" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_install() { + for i in *.bin; do + newbin ${i} ${i/.bin} + done +} diff --git a/app-crypt/hashcat-utils/metadata.xml b/app-crypt/hashcat-utils/metadata.xml new file mode 100644 index 00000000000..b4ca965f410 --- /dev/null +++ b/app-crypt/hashcat-utils/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <name>Rick Farina</name> + <email>zerochaos@gentoo.org</email> + </maintainer> + <longdescription lang="en"> + </longdescription> +</pkgmetadata>