unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#42610] [PATCH] gnu: hashcat: Update to 6.1.1.
@ 2020-07-30  3:08 Michael Rohleder
  2020-07-31  0:56 ` bug#42610: " Leo Famulari
  2020-07-31 15:47 ` [bug#42610] " talent via web
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Rohleder @ 2020-07-30  3:08 UTC (permalink / raw)
  To: 42610


[-- Attachment #1.1: [PATCH] gnu: hashcat: Update to 6.1.1. --]
[-- Type: text/x-patch, Size: 1530 bytes --]

From 3252ac264affd868f55b3813d23a311bfa533fcf Mon Sep 17 00:00:00 2001
From: Michael Rohleder <mike@rohleder.de>
Date: Thu, 30 Jul 2020 05:04:29 +0200
Subject: [PATCH] gnu: hashcat: Update to 6.1.1.

* gnu/packages/password-utils.scm (hashcat): Update to 6.1.1.
---
 gnu/packages/password-utils.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index ee4d088501..ae211d8cd0 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -27,6 +27,7 @@
 ;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net>
 ;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
 ;;; Copyright © 2020 Jean-Baptiste Note <jean-baptiste.note@m4x.org>
+;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1076,7 +1077,7 @@ your online accounts makes it necessary.")
 (define-public hashcat
   (package
     (name "hashcat")
-    (version "5.1.0")
+    (version "6.1.1")
     (source
      (origin
        (method url-fetch)
@@ -1084,7 +1085,7 @@ your online accounts makes it necessary.")
                            version ".tar.gz"))
        (sha256
         (base32
-         "0f73y4cg8c7a6q7x34qvpfi4g3lw6j9bnn0a13g43aqyiskflfr8"))))
+         "104z63m7lqbb0sdrxhf9yi15l4a9zwf9m6zs9dbb3gf0nfxl1h9r"))))
     (native-inputs
      `(("opencl-headers" ,opencl-headers)))
     (build-system gnu-build-system)
-- 
2.27.0


[-- Attachment #1.2: Type: text/plain, Size: 61 bytes --]


-- 
Listen and silent are spelled with the same letters.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* bug#42610: [PATCH] gnu: hashcat: Update to 6.1.1.
  2020-07-30  3:08 [bug#42610] [PATCH] gnu: hashcat: Update to 6.1.1 Michael Rohleder
@ 2020-07-31  0:56 ` Leo Famulari
  2020-07-31 15:47 ` [bug#42610] " talent via web
  1 sibling, 0 replies; 4+ messages in thread
From: Leo Famulari @ 2020-07-31  0:56 UTC (permalink / raw)
  To: Michael Rohleder; +Cc: 42610-done

[-- Attachment #1: Type: text/plain, Size: 409 bytes --]

On Thu, Jul 30, 2020 at 05:08:02AM +0200, Michael Rohleder wrote:
> From 3252ac264affd868f55b3813d23a311bfa533fcf Mon Sep 17 00:00:00 2001
> From: Michael Rohleder <mike@rohleder.de>
> Date: Thu, 30 Jul 2020 05:04:29 +0200
> Subject: [PATCH] gnu: hashcat: Update to 6.1.1.
> 
> * gnu/packages/password-utils.scm (hashcat): Update to 6.1.1.

Thanks! Pushed as 4af67aa2ce41507ed03bb759a904a4a077ef4fbd

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* [bug#42610] [PATCH] gnu: hashcat: Update to 6.1.1.
  2020-07-30  3:08 [bug#42610] [PATCH] gnu: hashcat: Update to 6.1.1 Michael Rohleder
  2020-07-31  0:56 ` bug#42610: " Leo Famulari
@ 2020-07-31 15:47 ` talent via web
  2020-07-31 16:13   ` Michael Rohleder
  1 sibling, 1 reply; 4+ messages in thread
From: talent via web @ 2020-07-31 15:47 UTC (permalink / raw)
  To: 42610

can someone please explain how to update to the version 6.1.1
i tired many things and sill have the v 5.1.0 :(





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

* [bug#42610] [PATCH] gnu: hashcat: Update to 6.1.1.
  2020-07-31 15:47 ` [bug#42610] " talent via web
@ 2020-07-31 16:13   ` Michael Rohleder
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Rohleder @ 2020-07-31 16:13 UTC (permalink / raw)
  To: 42610

[-- Attachment #1: Type: text/plain, Size: 320 bytes --]

talent via web <issues.guix.gnu.org@elephly.net> writes:
> can someone please explain how to update to the version 6.1.1
> i tired many things and sill have the v 5.1.0 :(

guix pull; guix package -i hashcat
should do the trick.

-- 
vi has two modes - one in which it beeps and one in which it doesn't [A.Cox]

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

end of thread, other threads:[~2020-07-31 16:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-30  3:08 [bug#42610] [PATCH] gnu: hashcat: Update to 6.1.1 Michael Rohleder
2020-07-31  0:56 ` bug#42610: " Leo Famulari
2020-07-31 15:47 ` [bug#42610] " talent via web
2020-07-31 16:13   ` Michael Rohleder

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).