pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

ncrack: Update to 0.7



Module Name:	pkgsrc-wip
Committed By:	Leonardo Taccari <leot%NetBSD.org@localhost>
Pushed By:	leot
Date:		Thu Jan 2 02:27:06 2020 +0100
Changeset:	9786f088fdd71f1a0f22de7f427bd2120240ccbb

Modified Files:
	ncrack/Makefile
	ncrack/distinfo
Added Files:
	ncrack/patches/patch-portable__endian.h

Log Message:
ncrack: Update to 0.7

Changes:
Ncrack 0.7
----------
 o Added new modules: DICOM, Wordpress, MQTT
 o New module: CVS
   [Panagiotis Ilias / Barrend]
 o New module: SMB2
   [Aurelien Aptel]
 o Extended RDP module to support all latest Windows versions
 o Added -oX output option
 o Added support for latest OpenSSL 1.1.1c
 o Ported opensshlib to OpenSSL 1.1
   [Hilko Bengen]
 o Fixed MySQL, SSH crashes
   [Christian Inci]

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=9786f088fdd71f1a0f22de7f427bd2120240ccbb

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 ncrack/Makefile                         |  4 ++--
 ncrack/distinfo                         |  9 +++++----
 ncrack/patches/patch-portable__endian.h | 20 ++++++++++++++++++++
 3 files changed, 27 insertions(+), 6 deletions(-)

diffs:
diff --git a/ncrack/Makefile b/ncrack/Makefile
index 96df04e022..7f5dbe4777 100644
--- a/ncrack/Makefile
+++ b/ncrack/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD$
 
-DISTNAME=	ncrack-0.6
+DISTNAME=	ncrack-0.7
 CATEGORIES=	security
 MASTER_SITES=	https://nmap.org/ncrack/dist/
 
@@ -13,7 +13,7 @@ GNU_CONFIGURE=	yes
 USE_LANGUAGES=	c c++
 USE_TOOLS+=	gmake
 
-WRKSRC=		${WRKDIR}/ncrack-0.6.0
+CFLAGS.NetBSD+=	-D_OPENBSD_SOURCE	# reallocarray(3)
 
 .include "../../security/openssl/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff --git a/ncrack/distinfo b/ncrack/distinfo
index 9a184f0dbe..156166a7e1 100644
--- a/ncrack/distinfo
+++ b/ncrack/distinfo
@@ -1,6 +1,7 @@
 $NetBSD$
 
-SHA1 (ncrack-0.6.tar.gz) = b5c35e672332158b4756711ba6ca60cec3dc7183
-RMD160 (ncrack-0.6.tar.gz) = 86a71eab10dbaacbc8186f8768a3d0870821dfc7
-SHA512 (ncrack-0.6.tar.gz) = 08d9c19b91b661cb212d2d0061e3498e75438388365c85cbd7d7d0b45b85b8dd8b2ba5de53b375792bdec55513f9c71f331712ef4a13369c6c11425b70a4b53b
-Size (ncrack-0.6.tar.gz) = 3913259 bytes
+SHA1 (ncrack-0.7.tar.gz) = bc442be4a2c662a22b40318eaa8fdb2bb26f3c80
+RMD160 (ncrack-0.7.tar.gz) = e73e98e0dc8d12bd2a6a2c2e2618ee867ef2ea91
+SHA512 (ncrack-0.7.tar.gz) = 52b327b0330b2e46d71a9442fbacf8471462e093049b68b8f2fab008b7046762c82d0468d004cc042a1342082f5c6b5d20a792f028929a7f039bd8d5e2bd49e0
+Size (ncrack-0.7.tar.gz) = 8586213 bytes
+SHA1 (patch-portable__endian.h) = 9967d96b06962d523d01fe150795e4f67a3db170
diff --git a/ncrack/patches/patch-portable__endian.h b/ncrack/patches/patch-portable__endian.h
new file mode 100644
index 0000000000..ddeb971f87
--- /dev/null
+++ b/ncrack/patches/patch-portable__endian.h
@@ -0,0 +1,20 @@
+$NetBSD$
+
+NetBSD does not need any macro (re)adjustments.
+
+--- portable_endian.h.orig	2019-08-24 22:25:32.000000000 +0000
++++ portable_endian.h
+@@ -81,11 +81,11 @@
+ #	define __LITTLE_ENDIAN LITTLE_ENDIAN
+ #	define __PDP_ENDIAN    PDP_ENDIAN
+ 
+-#elif defined(__OpenBSD__)
++#elif defined(__NetBSD__) || defined(__OpenBSD__)
+ 
+ #	include <sys/endian.h>
+ 
+-#elif defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
++#elif defined(__FreeBSD__) || defined(__DragonFly__)
+ 
+ #	include <sys/endian.h>
+ 


Home | Main Index | Thread Index | Old Index