From owner-svn-ports-all@FreeBSD.ORG Tue Aug 26 15:07:45 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6E8D3C7; Tue, 26 Aug 2014 15:07:45 +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 B824E31BB; Tue, 26 Aug 2014 15:07:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7QF7jsB038058; Tue, 26 Aug 2014 15:07:45 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7QF7iD8038054; Tue, 26 Aug 2014 15:07:44 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201408261507.s7QF7iD8038054@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 26 Aug 2014 15:07:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r366219 - in head/security: . rubygem-bcrypt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Aug 2014 15:07:46 -0000 Author: swills Date: Tue Aug 26 15:07:44 2014 New Revision: 366219 URL: http://svnweb.freebsd.org/changeset/ports/366219 QAT: https://qat.redports.org/buildarchive/r366219/ Log: security/rubygem-bcrypt: add rubygem-bcrypt port bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD project for hashing passwords. The bcrypt Ruby gem provides a simple wrapper for safely handling passwords. WWW: https://github.com/codahale/bcrypt-ruby Added: head/security/rubygem-bcrypt/ head/security/rubygem-bcrypt/Makefile (contents, props changed) head/security/rubygem-bcrypt/distinfo (contents, props changed) head/security/rubygem-bcrypt/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Aug 26 14:42:38 2014 (r366218) +++ head/security/Makefile Tue Aug 26 15:07:44 2014 (r366219) @@ -866,6 +866,7 @@ SUBDIR += ruby-hmac SUBDIR += ruby-password SUBDIR += ruby-tcpwrap + SUBDIR += rubygem-bcrypt SUBDIR += rubygem-bcrypt-ruby SUBDIR += rubygem-ezcrypto SUBDIR += rubygem-gpgr Added: head/security/rubygem-bcrypt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-bcrypt/Makefile Tue Aug 26 15:07:44 2014 (r366219) @@ -0,0 +1,16 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= bcrypt +PORTVERSION= 3.1.7 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= OpenBSD bcrypt password hashing algorithm + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/security/rubygem-bcrypt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-bcrypt/distinfo Tue Aug 26 15:07:44 2014 (r366219) @@ -0,0 +1,2 @@ +SHA256 (rubygem/bcrypt-3.1.7.gem) = 1c30953152c7151eac21aa59eed7ea933a7bc5d5838edea1d30d79b005955702 +SIZE (rubygem/bcrypt-3.1.7.gem) = 43520 Added: head/security/rubygem-bcrypt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-bcrypt/pkg-descr Tue Aug 26 15:07:44 2014 (r366219) @@ -0,0 +1,5 @@ +bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD +project for hashing passwords. The bcrypt Ruby gem provides a simple wrapper +for safely handling passwords. + +WWW: https://github.com/codahale/bcrypt-ruby