public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-crypt/hashcat-bin/
@ 2016-06-12 13:41 Alon Bar-Lev
  0 siblings, 0 replies; 2+ messages in thread
From: Alon Bar-Lev @ 2016-06-12 13:41 UTC (permalink / raw
  To: gentoo-commits

commit:     c1dde1ee04d0e0474b7488626467f82659b0b636
Author:     Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 12 03:08:38 2016 +0000
Commit:     Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Sun Jun 12 03:22:05 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1dde1ee

app-crypt/hashcat-bin: cleanup

Package-Manager: portage-2.2.28

 app-crypt/hashcat-bin/Manifest                |   2 -
 app-crypt/hashcat-bin/hashcat-bin-0.46.ebuild | 111 --------------------------
 app-crypt/hashcat-bin/hashcat-bin-0.47.ebuild | 111 --------------------------
 3 files changed, 224 deletions(-)

diff --git a/app-crypt/hashcat-bin/Manifest b/app-crypt/hashcat-bin/Manifest
index cb3de87..e9ce143 100644
--- a/app-crypt/hashcat-bin/Manifest
+++ b/app-crypt/hashcat-bin/Manifest
@@ -1,3 +1 @@
-DIST hashcat-0.46.7z 1581813 SHA256 bf8ba2ef197199b3be156aa85fb5d085ebf5e29e76f18cf66e81830fe654e84f SHA512 e313af6e0edc27a7fbf93c89eda862579868b80c36b4c0237991321ebe55ca0bc5b62afe35eba7852212e97c28c5a07d73929a2a503a683bf3f2c9e8a6891a82 WHIRLPOOL 766b69a34e6ffbed22c1e23d0c1bb2a4073c431c9e5dfd6a640691d021d298e6a3de8a778eab6fd7a666f626feb1bea85a7fbf37ec88868dd21045732190ef9a
-DIST hashcat-0.47.7z 1651995 SHA256 239acb25b88d529314f2f98af0d6a66772e886c9efbb4ed2b94b7587c9a68455 SHA512 a43b3534fdb6fbe6bcb49d48430f13e77c7ead33da2dad281fd84aa8f0f7be28e30f938339f59a37d690deb7167d6d5ad9d29d987feb9528006483136642c934 WHIRLPOOL 75d0d3c9a26358a872c08e48fd24ea29c8bf85ce36e7cd6d04135e2a4ed6ab82f4df59a3855b84318784a12ff73775b30f82112c0840dd7f4dcd9ca168932b10
 DIST hashcat-0.49.7z 2423049 SHA256 02ca88393ecf33aaa0905592ca71e90671338c9540f212b3ad0f4666a93b406d SHA512 3e51a803c87de4f659ad3f72337234392140cd714a40eb221cb7697aa6f8df4da92ed7a7852deae5fdf36439c46fe4eaa312ed45a72dedbf13eaa6d9767e95bb WHIRLPOOL 5cbf4b4bca8371a47c5349a0e4ab825e7401a2363558eeeea9942d0652b133cc9fc11229e6ea676fbd6a179864abadfdfa5bb16a4fb9387ea74111d3ccda4bff

diff --git a/app-crypt/hashcat-bin/hashcat-bin-0.46.ebuild b/app-crypt/hashcat-bin/hashcat-bin-0.46.ebuild
deleted file mode 100644
index c865dff..0000000
--- a/app-crypt/hashcat-bin/hashcat-bin-0.46.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-MY_P="hashcat-${PV}"
-
-inherit eutils pax-utils
-DESCRIPTION="An multi-threaded multihash cracker"
-HOMEPAGE="http://hashcat.net/hashcat/"
-
-SRC_URI="http://hashcat.net/files/${MY_P}.7z"
-
-#license applies to this version per http://hashcat.net/forum/thread-1348.html
-LICENSE="hashcat"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~amd64-linux ~x64-macos ~x86 ~x86-linux"
-
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-	app-arch/p7zip"
-
-S="${WORKDIR}/${MY_P}"
-
-RESTRICT="strip"
-QA_PREBUILT="opt/${PN}/hashcat-cli*.bin
-		opt/${PN}/hashcat-cli64.app"
-
-has_xop() {
-	echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep -q "#define __XOP__ 1"
-}
-
-has_avx() {
-	echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep -q "#define __AVX__ 1"
-}
-
-src_install() {
-	dodoc docs/*
-	rm -r *.exe docs || die
-	use x86 || { rm hashcat-cli32.bin || die; }
-	use amd64 || { rm hashcat-cli64.bin || die; }
-	use x64-macos || { rm hashcat-cli64.app || die; }
-	has_avx || { rm hashcat-cliAVX.bin || die; }
-	has_xop || { rm hashcat-cliXOP.bin || die; }
-
-	#I assume this is needed but I didn't check
-	pax-mark m hashcat-cli*.bin
-
-	insinto /opt/${PN}
-	doins -r "${S}"/*
-
-	dodir /opt/bin
-	if [ -f "${ED}"/opt/${PN}/hashcat-cli32.bin ]
-	then
-		fperms +x /opt/${PN}/hashcat-cli32.bin
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cli32.bin
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cli32.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cli32.bin \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cli32.bin
-	fi
-	if [ -f "${ED}"/opt/${PN}/hashcat-cli64.bin ]
-	then
-		fperms +x /opt/${PN}/hashcat-cli64.bin
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cli64.bin
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cli64.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cli64.bin \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cli64.bin
-	fi
-	if [ -f "${ED}"/opt/${PN}/hashcat-cliAVX.bin ]
-	then
-		fperms +x /opt/${PN}/hashcat-cliAVX.bin
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cliAVX.bin
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cliAVX.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cliAVX.bin \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cliAVX.bin
-	fi
-	if [ -f "${ED}"/opt/${PN}/hashcat-cliXOP.bin ]
-	then
-		fperms +x /opt/${PN}/hashcat-cliXOP.bin
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cliXOP.bin
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cliXOP.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cliXOP.bin \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cliXOP.bin
-	fi
-	if [ -f "${ED}"/opt/${PN}/hashcat-cli64.app ]
-	then
-		fperms +x /opt/${PN}/hashcat-cli64.app
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cli64.app
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cli64.app is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cli64.app \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cli64.app
-	fi
-}

diff --git a/app-crypt/hashcat-bin/hashcat-bin-0.47.ebuild b/app-crypt/hashcat-bin/hashcat-bin-0.47.ebuild
deleted file mode 100644
index c69a1a0..0000000
--- a/app-crypt/hashcat-bin/hashcat-bin-0.47.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_P="hashcat-${PV}"
-
-inherit eutils pax-utils
-DESCRIPTION="An multi-threaded multihash cracker"
-HOMEPAGE="http://hashcat.net/hashcat/"
-
-SRC_URI="http://hashcat.net/files/${MY_P}.7z"
-
-#license applies to this version per http://hashcat.net/forum/thread-1348.html
-LICENSE="hashcat"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~amd64-linux ~x64-macos ~x86 ~x86-linux"
-
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-	app-arch/p7zip"
-
-S="${WORKDIR}/${MY_P}"
-
-RESTRICT="strip"
-QA_PREBUILT="opt/${PN}/hashcat-cli*.bin
-		opt/${PN}/hashcat-cli64.app"
-
-has_xop() {
-	echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep -q "#define __XOP__ 1"
-}
-
-has_avx() {
-	echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep -q "#define __AVX__ 1"
-}
-
-src_install() {
-	dodoc docs/*
-	rm -r *.exe docs || die
-	use x86 || { rm hashcat-cli32.bin || die; }
-	use amd64 || { rm hashcat-cli64.bin || die; }
-	use x64-macos || { rm hashcat-cli64.app || die; }
-	has_avx || { rm hashcat-cliAVX.bin || die; }
-	has_xop || { rm hashcat-cliXOP.bin || die; }
-
-	#I assume this is needed but I didn't check
-	pax-mark m hashcat-cli*.bin
-
-	insinto /opt/${PN}
-	doins -r "${S}"/*
-
-	dodir /opt/bin
-	if [ -f "${ED}"/opt/${PN}/hashcat-cli32.bin ]
-	then
-		fperms +x /opt/${PN}/hashcat-cli32.bin
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cli32.bin
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cli32.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cli32.bin \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cli32.bin
-	fi
-	if [ -f "${ED}"/opt/${PN}/hashcat-cli64.bin ]
-	then
-		fperms +x /opt/${PN}/hashcat-cli64.bin
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cli64.bin
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cli64.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cli64.bin \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cli64.bin
-	fi
-	if [ -f "${ED}"/opt/${PN}/hashcat-cliAVX.bin ]
-	then
-		fperms +x /opt/${PN}/hashcat-cliAVX.bin
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cliAVX.bin
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cliAVX.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cliAVX.bin \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cliAVX.bin
-	fi
-	if [ -f "${ED}"/opt/${PN}/hashcat-cliXOP.bin ]
-	then
-		fperms +x /opt/${PN}/hashcat-cliXOP.bin
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cliXOP.bin
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cliXOP.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cliXOP.bin \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cliXOP.bin
-	fi
-	if [ -f "${ED}"/opt/${PN}/hashcat-cli64.app ]
-	then
-		fperms +x /opt/${PN}/hashcat-cli64.app
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cli64.app
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cli64.app is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cli64.app \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cli64.app
-	fi
-}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-crypt/hashcat-bin/
@ 2016-10-03 16:11 Richard Farina
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Farina @ 2016-10-03 16:11 UTC (permalink / raw
  To: gentoo-commits

commit:     4ba63f4e09cc6f6ec220ccae25c6d92b39268e88
Author:     Zero_Chaos <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  3 15:57:53 2016 +0000
Commit:     Richard Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Mon Oct  3 16:11:00 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ba63f4e

app-crypt/hashcat-bin: remove in favor of app-crypt/hashcat

Package-Manager: portage-2.3.1

 app-crypt/hashcat-bin/Manifest                |   1 -
 app-crypt/hashcat-bin/hashcat-bin-0.49.ebuild | 111 --------------------------
 app-crypt/hashcat-bin/metadata.xml            |  12 ---
 3 files changed, 124 deletions(-)

diff --git a/app-crypt/hashcat-bin/Manifest b/app-crypt/hashcat-bin/Manifest
deleted file mode 100644
index e9ce143..00000000
--- a/app-crypt/hashcat-bin/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST hashcat-0.49.7z 2423049 SHA256 02ca88393ecf33aaa0905592ca71e90671338c9540f212b3ad0f4666a93b406d SHA512 3e51a803c87de4f659ad3f72337234392140cd714a40eb221cb7697aa6f8df4da92ed7a7852deae5fdf36439c46fe4eaa312ed45a72dedbf13eaa6d9767e95bb WHIRLPOOL 5cbf4b4bca8371a47c5349a0e4ab825e7401a2363558eeeea9942d0652b133cc9fc11229e6ea676fbd6a179864abadfdfa5bb16a4fb9387ea74111d3ccda4bff

diff --git a/app-crypt/hashcat-bin/hashcat-bin-0.49.ebuild b/app-crypt/hashcat-bin/hashcat-bin-0.49.ebuild
deleted file mode 100644
index 0e505ab..00000000
--- a/app-crypt/hashcat-bin/hashcat-bin-0.49.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_P="hashcat-${PV}"
-
-inherit eutils pax-utils
-DESCRIPTION="An multi-threaded multihash cracker"
-HOMEPAGE="http://hashcat.net/hashcat/"
-
-SRC_URI="http://hashcat.net/files/${MY_P}.7z"
-
-#license applies to this version per http://hashcat.net/forum/thread-1348.html
-LICENSE="hashcat"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~amd64-linux ~x64-macos ~x86 ~x86-linux"
-
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-	app-arch/p7zip"
-
-S="${WORKDIR}/${MY_P}"
-
-RESTRICT="strip"
-QA_PREBUILT="opt/${PN}/hashcat-cli*.bin
-		opt/${PN}/hashcat-cli64.app"
-
-has_xop() {
-	echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep -q "#define __XOP__ 1"
-}
-
-has_avx() {
-	echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep -q "#define __AVX__ 1"
-}
-
-src_install() {
-	dodoc docs/*
-	rm -r *.exe docs || die
-	use x86 || { rm hashcat-cli32.bin || die; }
-	use amd64 || { rm hashcat-cli64.bin || die; }
-	use x64-macos || { rm hashcat-cli64.app || die; }
-	has_avx || { rm hashcat-cliAVX.bin || die; }
-	has_xop || { rm hashcat-cliXOP.bin || die; }
-
-	#I assume this is needed but I didn't check
-	pax-mark m hashcat-cli*.bin
-
-	insinto /opt/${PN}
-	doins -r "${S}"/*
-
-	dodir /opt/bin
-	if [ -f "${ED}"/opt/${PN}/hashcat-cli32.bin ]
-	then
-		fperms +x /opt/${PN}/hashcat-cli32.bin
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cli32.bin
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cli32.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cli32.bin \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cli32.bin
-	fi
-	if [ -f "${ED}"/opt/${PN}/hashcat-cli64.bin ]
-	then
-		fperms +x /opt/${PN}/hashcat-cli64.bin
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cli64.bin
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cli64.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cli64.bin \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cli64.bin
-	fi
-	if [ -f "${ED}"/opt/${PN}/hashcat-cliAVX.bin ]
-	then
-		fperms +x /opt/${PN}/hashcat-cliAVX.bin
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cliAVX.bin
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cliAVX.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cliAVX.bin \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cliAVX.bin
-	fi
-	if [ -f "${ED}"/opt/${PN}/hashcat-cliXOP.bin ]
-	then
-		fperms +x /opt/${PN}/hashcat-cliXOP.bin
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cliXOP.bin
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cliXOP.bin is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cliXOP.bin \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cliXOP.bin
-	fi
-	if [ -f "${ED}"/opt/${PN}/hashcat-cli64.app ]
-	then
-		fperms +x /opt/${PN}/hashcat-cli64.app
-		cat <<-EOF > "${ED}"/opt/bin/hashcat-cli64.app
-			#! /bin/sh
-			cd "${EPREFIX}"/opt/${PN}
-			echo "Warning: hashcat-cli64.app is running from ${EPREFIX}/opt/${PN} so be careful of relative paths."
-			exec ./hashcat-cli64.app \$@
-		EOF
-		fperms +x /opt/bin/hashcat-cli64.app
-	fi
-}

diff --git a/app-crypt/hashcat-bin/metadata.xml b/app-crypt/hashcat-bin/metadata.xml
deleted file mode 100644
index 38ec8cc..00000000
--- a/app-crypt/hashcat-bin/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
-<email>zerochaos@gentoo.org</email>
-<name>Rick Farina</name>
-</maintainer>
-<maintainer type="project">
-<email>crypto@gentoo.org</email>
-<name>Crypto</name>
-</maintainer>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-10-03 16:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-03 16:11 [gentoo-commits] repo/gentoo:master commit in: app-crypt/hashcat-bin/ Richard Farina
  -- strict thread matches above, loose matches on Subject: below --
2016-06-12 13:41 Alon Bar-Lev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox