summaryrefslogtreecommitdiff
path: root/libre
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-07-21 22:36:43 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-07-21 22:36:43 -0500
commit0761c47267038b567c2446623d37b2618ca2ce41 (patch)
tree8d5f94810251218c65a329255bf1cc944fe6ca3d /libre
parent42020a4707387d0c91e960188ff381f855659180 (diff)
downloadabslibre-0761c47267038b567c2446623d37b2618ca2ce41.tar.gz
abslibre-0761c47267038b567c2446623d37b2618ca2ce41.tar.bz2
abslibre-0761c47267038b567c2446623d37b2618ca2ce41.zip
hashcat-1:3.6.0-1.parabola1: updating version
Diffstat (limited to 'libre')
-rw-r--r--libre/hashcat/PKGBUILD10
-rw-r--r--libre/hashcat/makefile.patch41
2 files changed, 6 insertions, 45 deletions
diff --git a/libre/hashcat/PKGBUILD b/libre/hashcat/PKGBUILD
index a7526ae9d..d966431ab 100644
--- a/libre/hashcat/PKGBUILD
+++ b/libre/hashcat/PKGBUILD
@@ -1,18 +1,20 @@
# Maintainer (Arch): Levente Polyak <anthraxx[at]archlinux[dot]org>
# Contributor (Arch): Sam Stuewe <halosghost at archlinux dot info>
-# Maintainer: André Silva <emulatorman@parabola.nu>
+# Maintainer (Hyperbola): André Silva <emulatorman@hyperbola.info>
+# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
pkgname=hashcat
-pkgver=3.40
+pkgver=3.6.0
pkgrel=1.parabola1
+epoch=1
pkgdesc='Multithreaded advanced password recovery utility, without nonfree libxnvctrl recommendation'
url='https://hashcat.net/hashcat'
arch=('i686' 'x86_64' 'armv7h')
-depends=('gmp' 'opencl-icd-loader')
+depends=('opencl-icd-loader')
makedepends=('opencl-headers')
license=('MIT')
source=(https://hashcat.net/files/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha512sums=('fd8d1927703cfe56c7708c460cc142de4ce64d96b651ed68817b70e6a53cac376a191d16752cbb7cabfcb0230299301173a5eda6c27e6188e79b5d83d758378e'
+sha512sums=('7842b6d742cd1c83f136b0ae13cdd4c6991618654360b5f67376c6d08e93888f4d958360aac8b0c8bbe96a6cbe032971fbc2ec7fa6d58794aa50381e0191a636'
'SKIP')
validpgpkeys=('A70833229D040B4199CC00523C17DA8B8A16544F') # Hashcat signing key <signing@hashcat.net>
diff --git a/libre/hashcat/makefile.patch b/libre/hashcat/makefile.patch
deleted file mode 100644
index 7e1730d47..000000000
--- a/libre/hashcat/makefile.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 7f8aaf74302816d03fbff62dab5c987d498acdde Mon Sep 17 00:00:00 2001
-From: anthraxx <levente@leventepolyak.net>
-Date: Mon, 4 Jul 2016 21:01:51 +0200
-Subject: [PATCH] extend global CFLAGS and LDFLAGS to aid distro packaging
-
-This preserves globally defined CFLAGS and LDFLAGS and simply
-extends those variables to aid distro based packaging toolchains
-and predefined distro wide defaults like SSP, relro etc.
----
- src/Makefile | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/src/Makefile b/src/Makefile
-index 9f11325..cf44590 100644
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -90,7 +90,7 @@ VERSION_TAG := $(shell test -d .git && git describe --tags --dirty=
- ## Compiler flags
- ##
-
--CFLAGS := -pipe -W -Wall -std=c99 -Iinclude/ -IOpenCL/ -I$(OPENCL_HEADERS_KHRONOS)/
-+CFLAGS += -pipe -W -Wall -std=c99 -Iinclude/ -IOpenCL/ -I$(OPENCL_HEADERS_KHRONOS)/
-
- ifndef DEBUG
- CFLAGS += -O2
-@@ -112,6 +112,7 @@ export MACOSX_DEPLOYMENT_TARGET=10.9
- CFLAGS_NATIVE := -D_POSIX -DDARWIN
- CFLAGS_NATIVE += $(CFLAGS)
- LFLAGS_NATIVE := -lpthread
-+LFLAGS_NATIVE += $(LDFLAGS)
- endif # darwin
-
- ifeq ($(UNAME),Linux)
-@@ -122,6 +123,7 @@ endif
- CFLAGS_NATIVE += $(CFLAGS)
- LFLAGS_NATIVE := -lpthread -ldl
- CFLAGS_NATIVE += -DHAVE_HWMON
-+LFLAGS_NATIVE += $(LDFLAGS)
- endif # linux
-
- ##