From owner-svn-ports-head@FreeBSD.ORG Mon Mar 2 14:30:21 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F31CA30; Mon, 2 Mar 2015 14:30:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 21FC0E21; Mon, 2 Mar 2015 14:30:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t22EULbO090472; Mon, 2 Mar 2015 14:30:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t22EUKoB090466; Mon, 2 Mar 2015 14:30:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201503021430.t22EUKoB090466@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 2 Mar 2015 14:30:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380268 - head/security/rubygem-scrypt 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.18-1 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: Mon, 02 Mar 2015 14:30:21 -0000 Author: sunpoet Date: Mon Mar 2 14:30:19 2015 New Revision: 380268 URL: https://svnweb.freebsd.org/changeset/ports/380268 QAT: https://qat.redports.org/buildarchive/r380268/ Log: - Add rubygem-scrypt 2.0.0 The scrypt key derivation function is designed to be far more secure against hardware brute-force attacks than alternative functions such as PBKDF2 or bcrypt. WWW: https://github.com/pbhogan/scrypt RG: https://rubygems.org/gems/scrypt Added: head/security/rubygem-scrypt/ head/security/rubygem-scrypt/Makefile (contents, props changed) head/security/rubygem-scrypt/distinfo (contents, props changed) head/security/rubygem-scrypt/pkg-descr (contents, props changed) Added: head/security/rubygem-scrypt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-scrypt/Makefile Mon Mar 2 14:30:19 2015 (r380268) @@ -0,0 +1,21 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= scrypt +PORTVERSION= 2.0.0 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Scrypt key derivation function + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= rubygem-ffi-compiler>=0.0.2:${PORTSDIR}/devel/rubygem-ffi-compiler \ + rubygem-rake>=0:${PORTSDIR}/devel/rubygem-rake + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/security/rubygem-scrypt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-scrypt/distinfo Mon Mar 2 14:30:19 2015 (r380268) @@ -0,0 +1,2 @@ +SHA256 (rubygem/scrypt-2.0.0.gem) = 34cf4f10e0fa4b03b6722e3987a9907fd89a83293dabcc5333541349a2da17ea +SIZE (rubygem/scrypt-2.0.0.gem) = 23552 Added: head/security/rubygem-scrypt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-scrypt/pkg-descr Mon Mar 2 14:30:19 2015 (r380268) @@ -0,0 +1,6 @@ +The scrypt key derivation function is designed to be far more secure against +hardware brute-force attacks than alternative functions such as PBKDF2 or +bcrypt. + +WWW: https://github.com/pbhogan/scrypt +RG: https://rubygems.org/gems/scrypt