From owner-svn-ports-head@freebsd.org Tue Jul 12 08:46:23 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2961DB93B41; Tue, 12 Jul 2016 08:46:23 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0410815CF; Tue, 12 Jul 2016 08:46:22 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6C8kM7x033265; Tue, 12 Jul 2016 08:46:22 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6C8kLE5033260; Tue, 12 Jul 2016 08:46:21 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201607120846.u6C8kLE5033260@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 12 Jul 2016 08:46:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418416 - in head/security: . libargon2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jul 2016 08:46:23 -0000 Author: jbeich Date: Tue Jul 12 08:46:21 2016 New Revision: 418416 URL: https://svnweb.freebsd.org/changeset/ports/418416 Log: security/libargon2: add new port PR: 209411 Submitted by: Christopher Hall Reviewed by: Yonas Yanfa, Vladimir Krstulja Argon2 is a password-hashing function that summarizes the state of the art in the design of memory-hard functions and can be used to hash passwords for credential storage, key derivation, or other applications. https://github.com/P-H-C/phc-winner-argon2 Added: head/security/libargon2/ head/security/libargon2/Makefile (contents, props changed) head/security/libargon2/distinfo (contents, props changed) head/security/libargon2/pkg-descr (contents, props changed) head/security/libargon2/pkg-plist (contents, props changed) Modified: head/security/Makefile (contents, props changed) Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Jul 12 08:28:32 2016 (r418415) +++ head/security/Makefile Tue Jul 12 08:46:21 2016 (r418416) @@ -291,6 +291,7 @@ SUBDIR += letsencrypt.sh SUBDIR += letskencrypt SUBDIR += libadacrypt + SUBDIR += libargon2 SUBDIR += libassuan SUBDIR += libbeid SUBDIR += libbf Added: head/security/libargon2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libargon2/Makefile Tue Jul 12 08:46:21 2016 (r418416) @@ -0,0 +1,28 @@ +# Created by: Christopher Hall +# $FreeBSD$ + +PORTNAME= libargon2 +PORTVERSION= 20160530 +CATEGORIES= security devel + +MAINTAINER= hsw@bitmark.com +COMMENT= Memory hard password hashing program and library + +LICENSE= CC0-1.0 + +USE_GITHUB= yes +GH_ACCOUNT= P-H-C +GH_PROJECT= phc-winner-argon2 +GH_TAGNAME= 4625cc5 + +USES= gmake +USE_LDCONFIG= yes + +do-install: + ${INSTALL_DATA} ${WRKSRC}/include/argon2.h ${STAGEDIR}${PREFIX}/include + ${INSTALL_LIB} ${WRKSRC}/libargon2.a ${STAGEDIR}${PREFIX}/lib + ${INSTALL_LIB} ${WRKSRC}/libargon2.so ${STAGEDIR}${PREFIX}/lib + ${INSTALL_PROGRAM} ${WRKSRC}/argon2 ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/argon2.1 ${STAGEDIR}${PREFIX}/man/man1 + +.include Added: head/security/libargon2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libargon2/distinfo Tue Jul 12 08:46:21 2016 (r418416) @@ -0,0 +1,2 @@ +SHA256 (P-H-C-phc-winner-argon2-20160530-4625cc5_GH0.tar.gz) = 14e0a5107e2d868de7ecdfbd0ad7ff5c46fa2a8f8eaf4c9c4f10fde7d1d8d77e +SIZE (P-H-C-phc-winner-argon2-20160530-4625cc5_GH0.tar.gz) = 1162095 Added: head/security/libargon2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libargon2/pkg-descr Tue Jul 12 08:46:21 2016 (r418416) @@ -0,0 +1,6 @@ +Argon2 is a password-hashing function that summarizes the state of the +art in the design of memory-hard functions and can be used to hash +passwords for credential storage, key derivation, or other +applications. + +WWW: https://github.com/P-H-C/phc-winner-argon2 Added: head/security/libargon2/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libargon2/pkg-plist Tue Jul 12 08:46:21 2016 (r418416) @@ -0,0 +1,5 @@ +bin/argon2 +include/argon2.h +lib/libargon2.a +lib/libargon2.so +man/man1/argon2.1.gz