Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package hashcat for openSUSE:Factory checked in at 2021-05-15 01:24:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/hashcat (Old) and /work/SRC/openSUSE:Factory/.hashcat.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "hashcat" Sat May 15 01:24:42 2021 rev:6 rq:893228 version:6.2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/hashcat/hashcat.changes 2020-11-23 18:45:26.793055446 +0100 +++ /work/SRC/openSUSE:Factory/.hashcat.new.2988/hashcat.changes 2021-05-15 01:25:01.730847614 +0200 @@ -1,0 +2,13 @@ +Fri May 14 18:54:03 UTC 2021 - Martin Hauke <mar...@gmx.de> + +- Use correct lname + +------------------------------------------------------------------- +Fri May 14 17:45:22 UTC 2021 - Martin Hauke <mar...@gmx.de> + +- Update to version 6.2.0 + * This release is mostly about expanding support for new + algorithms and fixing bugs. + * Full changelog: https://hashcat.net/forum/thread-10103.html + +------------------------------------------------------------------- Old: ---- v6.1.1.tar.gz New: ---- v6.2.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ hashcat.spec ++++++ --- /var/tmp/diff_new_pack.N0EFw2/_old 2021-05-15 01:25:02.394845281 +0200 +++ /var/tmp/diff_new_pack.N0EFw2/_new 2021-05-15 01:25:02.394845281 +0200 @@ -1,7 +1,7 @@ # # spec file for package hashcat # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,18 +17,19 @@ Name: hashcat -%define lname libhashcat6_1_1 -Version: 6.1.1 +%define lname libhashcat6_2_0 +Version: 6.2.0 Release: 0 Summary: CPU-based password recovery utility -License: MIT AND GPL-2.0-or-later +License: GPL-2.0-or-later AND MIT Group: Productivity/Security URL: https://hashcat.net/ -Source: https://github.com/hashcat/hashcat/archive/v%version.tar.gz +Source: https://github.com/hashcat/hashcat/archive/refs/tags/v%{version}.tar.gz Source9: %name-rpmlintrc Patch1: system-libs.patch BuildRequires: fdupes +BuildRequires: gcc-c++ BuildRequires: gmp-devel BuildRequires: xxhash-devel BuildRequires: pkgconfig(clzma) ++++++ system-libs.patch ++++++ --- /var/tmp/diff_new_pack.N0EFw2/_old 2021-05-15 01:25:02.438845126 +0200 +++ /var/tmp/diff_new_pack.N0EFw2/_new 2021-05-15 01:25:02.442845112 +0200 @@ -1,20 +1,7 @@ -From: Jan Engelhardt <jeng...@inai.de> -Date: 2020-09-08 11:36:38.217829093 +0200 - - * Drop %(date +%s) / __DATE__. - * Drop forced stripping. - * Replace lzma-sdk library name by what's used. - * Since now the Makefile is already touched, enable use of system - libraries through this patch rather than on the command-line. - ---- - src/Makefile | 19 ++++++++++--------- - 1 file changed, 10 insertions(+), 9 deletions(-) - -Index: hashcat-6.1.1/src/Makefile -=================================================================== ---- hashcat-6.1.1.orig/src/Makefile -+++ hashcat-6.1.1/src/Makefile +diff --git a/src/Makefile b/src/Makefile +index bd16932..114aa1d 100644 +--- a/src/Makefile ++++ b/src/Makefile @@ -3,16 +3,16 @@ ## License.....: MIT ## @@ -23,7 +10,7 @@ +SHARED ?= 1 DEBUG := 0 PRODUCTION := 1 - PRODUCTION_VERSION := v6.1.1 + PRODUCTION_VERSION := v6.2.0 ENABLE_CUBIN ?= 1 ENABLE_BRAIN ?= 1 -USE_SYSTEM_LZMA ?= 0 @@ -33,10 +20,10 @@ USE_SYSTEM_OPENCL ?= 0 -USE_SYSTEM_XXHASH ?= 0 +USE_SYSTEM_XXHASH ?= 1 + ## do not change, requires some hacks + USE_SYSTEM_UNRAR ?= 0 - ## - ## Detect Operating System -@@ -95,7 +95,7 @@ VERSION_PURE := $(shell echo +@@ -100,7 +100,7 @@ VERSION_PURE := $(shell echo "$(VERSION_TAG)" | $(SED) 's/.*v\([\.0-9 ## DESTDIR ?= @@ -45,7 +32,7 @@ INSTALL_FOLDER ?= $(PREFIX)/bin SHARED_ROOT_FOLDER ?= $(PREFIX)/share -@@ -112,7 +112,7 @@ LIBRARY_DEV_FOLDER ?= $(LIBRARY_DEV +@@ -117,7 +117,7 @@ LIBRARY_DEV_FOLDER ?= $(LIBRARY_DEV_ROOT_FOLDER)/hashcat ifeq ($(USE_SYSTEM_LZMA),0) DEPS_LZMA_PATH := deps/LZMA-SDK/C else @@ -54,7 +41,7 @@ endif ifeq ($(USE_SYSTEM_ZLIB),0) -@@ -158,7 +158,7 @@ endif # MSYS2 +@@ -169,7 +169,7 @@ endif # MSYS2 ## Misc stuff ## @@ -63,7 +50,7 @@ ## ## General compiler and linker options -@@ -166,6 +166,7 @@ COMPTIME := $(shell date +@@ -177,6 +177,7 @@ COMPTIME := $(shell date +%s) LFLAGS := $(LDFLAGS) @@ -71,7 +58,7 @@ ifeq ($(PRODUCTION),0) CFLAGS += -W CFLAGS += -Wall -@@ -188,7 +189,7 @@ endif +@@ -219,7 +220,7 @@ endif ifeq ($(DEBUG),0) CFLAGS += -O2 ifneq ($(UNAME),Darwin) @@ -80,7 +67,7 @@ endif else ifeq ($(DEBUG),1) -@@ -214,7 +215,7 @@ CFLAGS += -pipe -std=gn +@@ -245,7 +246,7 @@ CFLAGS += -pipe -Iinclude/ -IOpenCL/ # LZMA CFLAGS += -I$(DEPS_LZMA_PATH) ifeq ($(USE_SYSTEM_LZMA),1) ++++++ v6.1.1.tar.gz -> v6.2.0.tar.gz ++++++ ++++ 169111 lines of diff (skipped)