svn commit: r408819 - in head/security: . p5-Digest-SHA3

Adam Weinberger adamw at FreeBSD.org
Sat Feb 13 18:12:26 UTC 2016


Author: adamw
Date: Sat Feb 13 18:12:24 2016
New Revision: 408819
URL: https://svnweb.freebsd.org/changeset/ports/408819

Log:
  Add security/p5-Digest-SHA3, a NIST SHA3 implementation and perl interface.

Added:
  head/security/p5-Digest-SHA3/
  head/security/p5-Digest-SHA3/Makefile   (contents, props changed)
  head/security/p5-Digest-SHA3/distinfo   (contents, props changed)
  head/security/p5-Digest-SHA3/pkg-descr   (contents, props changed)
  head/security/p5-Digest-SHA3/pkg-plist   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sat Feb 13 17:59:06 2016	(r408818)
+++ head/security/Makefile	Sat Feb 13 18:12:24 2016	(r408819)
@@ -615,6 +615,7 @@
     SUBDIR += p5-Digest-SHA
     SUBDIR += p5-Digest-SHA-PurePerl
     SUBDIR += p5-Digest-SHA1
+    SUBDIR += p5-Digest-SHA3
     SUBDIR += p5-Digest-SV1
     SUBDIR += p5-Digest-Tiger
     SUBDIR += p5-Digest-Whirlpool

Added: head/security/p5-Digest-SHA3/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Digest-SHA3/Makefile	Sat Feb 13 18:12:24 2016	(r408819)
@@ -0,0 +1,19 @@
+# Created by: Adam Weinberger <adamw at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Digest-SHA3
+PORTVERSION=	0.24
+CATEGORIES=	security perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	adamw at FreeBSD.org
+COMMENT=	Perl extension for SHA-3
+
+USES=		perl5
+USE_PERL5=	configure
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Digest/SHA3/SHA3.so
+
+.include <bsd.port.mk>

Added: head/security/p5-Digest-SHA3/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Digest-SHA3/distinfo	Sat Feb 13 18:12:24 2016	(r408819)
@@ -0,0 +1,2 @@
+SHA256 (Digest-SHA3-0.24.tar.gz) = 49a7aa146f720877d557cf4c74c03c76ebf01c6dce94d374edb2610176941f5f
+SIZE (Digest-SHA3-0.24.tar.gz) = 28122

Added: head/security/p5-Digest-SHA3/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Digest-SHA3/pkg-descr	Sat Feb 13 18:12:24 2016	(r408819)
@@ -0,0 +1,10 @@
+Digest::SHA3 is a complete implementation of the NIST SHA-3 cryptographic hash
+function, as specified in Draft FIPS 202 (SHA-3 Standard: Permutation-Based
+Hash and Extendable-Output Functions).
+
+The module gives Perl programmers a convenient way to calculate SHA3-224,
+SHA3-256, SHA3-384, and SHA3-512 message digests, as well as variable-length
+hashes using SHAKE128 and SHAKE256. Digest::SHA3 can handle all types of input,
+including partial-byte data.
+
+WWW: https://metacpan.org/pod/Digest::SHA3

Added: head/security/p5-Digest-SHA3/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Digest-SHA3/pkg-plist	Sat Feb 13 18:12:24 2016	(r408819)
@@ -0,0 +1,5 @@
+bin/sha3sum
+%%SITE_ARCH%%/Digest/SHA3.pm
+%%SITE_ARCH%%/auto/Digest/SHA3/SHA3.so
+%%PERL5_MAN1%%/sha3sum.1.gz
+%%PERL5_MAN3%%/Digest::SHA3.3.gz


More information about the svn-ports-all mailing list