pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/security/ssdeep ssdeep: update to version 2.14.1
details: https://anonhg.NetBSD.org/pkgsrc/rev/01f5edae35bd
branches: trunk
changeset: 453434:01f5edae35bd
user: khorben <khorben%pkgsrc.org@localhost>
date: Sun May 30 01:41:28 2021 +0000
description:
ssdeep: update to version 2.14.1
** Version 2.14.1 - 7 Nov 2017
* Bug Fixes
- Fixed a spelling error.
- Made relative path mode on Win32 to work.
** Version 2.14 - 12 Sep 2017
* New Features
- Optimizations to the fuzzy hashing engine. (hash generator can run as twice
as fast and comparison can run 1.5 through 5 times faster [heavily depends
on the data and platform] than the previous release)
* Bug Fixes
- Fixed issue when certain memory allocation is failed.
diffstat:
security/ssdeep/Makefile | 12 ++++++++----
security/ssdeep/buildlink3.mk | 3 +--
security/ssdeep/distinfo | 12 ++++++------
security/ssdeep/patches/patch-Makefile.am | 15 +++++++++++++++
security/ssdeep/patches/patch-Makefile.in | 18 ------------------
5 files changed, 30 insertions(+), 30 deletions(-)
diffs (97 lines):
diff -r f84640993a2a -r 01f5edae35bd security/ssdeep/Makefile
--- a/security/ssdeep/Makefile Sun May 30 01:22:18 2021 +0000
+++ b/security/ssdeep/Makefile Sun May 30 01:41:28 2021 +0000
@@ -1,17 +1,21 @@
-# $NetBSD: Makefile,v 1.7 2020/03/20 11:58:19 nia Exp $
-#
+# $NetBSD: Makefile,v 1.8 2021/05/30 01:41:28 khorben Exp $
-DISTNAME= ssdeep-2.13
+DISTNAME= ssdeep-2.14.1
CATEGORIES= security
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ssdeep/}
+MASTER_SITES= ${MASTER_SITE_GITHUB:=ssdeep-project/}
+GITHUB_TAG= release-${PKGVERSION_NOREV}
MAINTAINER= khorben%defora.org@localhost
HOMEPAGE= http://ssdeep.sourceforge.net/
COMMENT= Program computing context triggered piecewise hashes (CTPH)
LICENSE= gnu-gpl-v2
+USE_TOOLS+= automake autoreconf
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_LANGUAGES= c c++
+pre-configure:
+ cd ${WRKSRC} && autoreconf -fiv
+
.include "../../mk/bsd.pkg.mk"
diff -r f84640993a2a -r 01f5edae35bd security/ssdeep/buildlink3.mk
--- a/security/ssdeep/buildlink3.mk Sun May 30 01:22:18 2021 +0000
+++ b/security/ssdeep/buildlink3.mk Sun May 30 01:41:28 2021 +0000
@@ -1,5 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.1 2013/06/05 19:49:36 khorben Exp $
-#
+# $NetBSD: buildlink3.mk,v 1.2 2021/05/30 01:41:28 khorben Exp $
BUILDLINK_TREE+= ssdeep
diff -r f84640993a2a -r 01f5edae35bd security/ssdeep/distinfo
--- a/security/ssdeep/distinfo Sun May 30 01:22:18 2021 +0000
+++ b/security/ssdeep/distinfo Sun May 30 01:41:28 2021 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.6 2015/11/04 01:18:10 agc Exp $
+$NetBSD: distinfo,v 1.7 2021/05/30 01:41:28 khorben Exp $
-SHA1 (ssdeep-2.13.tar.gz) = ccb4e2d53d90eb986d11df24b77179d5948fb257
-RMD160 (ssdeep-2.13.tar.gz) = 09f9cf356f9412cf448ef66eebc3424a0392e906
-SHA512 (ssdeep-2.13.tar.gz) = 26473f1b8801398534c674d7fdd6e87cf4d7862ed91454bb22865f8b6cf885c777250d0d1cdf2c20a28fdf4961c3b21e505e82f37fb75486a9442902d96f5186
-Size (ssdeep-2.13.tar.gz) = 380712 bytes
-SHA1 (patch-Makefile.in) = ca7154014ff1c626093572e37c3a3a5073370c0b
+SHA1 (ssdeep-2.14.1.tar.gz) = 7064d5cc11cb22b7ef2dc952bdac035e548cbffd
+RMD160 (ssdeep-2.14.1.tar.gz) = f345a5e23563fe6f1dd56887c086bdcca4667d4d
+SHA512 (ssdeep-2.14.1.tar.gz) = 6f45a961800fcbd4a5c8f1dac9afc7e0791ecd5aded28f3048d4ade68870a8e928704c80a5778a463b9492d561ae4568785c2b8c873f485d5d9c500d74955f07
+Size (ssdeep-2.14.1.tar.gz) = 86366 bytes
+SHA1 (patch-Makefile.am) = 7635b1d82bc03a7004de0cf71b3a29fafb06c64e
diff -r f84640993a2a -r 01f5edae35bd security/ssdeep/patches/patch-Makefile.am
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/security/ssdeep/patches/patch-Makefile.am Sun May 30 01:41:28 2021 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-Makefile.am,v 1.1 2021/05/30 01:41:28 khorben Exp $
+
+Do not build ssdeep statically
+
+--- Makefile.am.orig 2017-11-07 02:31:15.000000000 +0000
++++ Makefile.am
+@@ -2,7 +2,7 @@
+ bin_PROGRAMS=ssdeep
+
+ ssdeep_LDADD=libfuzzy.la
+-ssdeep_LDFLAGS=-static
++ssdeep_LDFLAGS=
+
+ ACLOCAL_AMFLAGS = -I m4
+
diff -r f84640993a2a -r 01f5edae35bd security/ssdeep/patches/patch-Makefile.in
--- a/security/ssdeep/patches/patch-Makefile.in Sun May 30 01:22:18 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-$NetBSD: patch-Makefile.in,v 1.2 2015/08/30 14:49:07 taca Exp $
-
---- Makefile.in.orig 2015-04-24 15:03:09.000000000 +0000
-+++ Makefile.in
-@@ -372,11 +372,11 @@ top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- ssdeep_LDADD = libfuzzy.la
--ssdeep_LDFLAGS = -static
-+ssdeep_LDFLAGS =
- ACLOCAL_AMFLAGS = -I m4
- lib_LTLIBRARIES = libfuzzy.la
- libfuzzy_la_SOURCES = fuzzy.c edit_dist.c find-file-size.c
--libfuzzy_la_LDFLAGS = -no-undefined -version-info 3:0:1
-+libfuzzy_la_LDFLAGS = -rpath ${PREFIX}/lib -no-undefined -version-info 3:0:1
- include_HEADERS = fuzzy.h edit_dist.h
- man_MANS = ssdeep.1
- ssdeep_SOURCES = main.cpp match.cpp engine.cpp filedata.cpp \
Home |
Main Index |
Thread Index |
Old Index