From owner-svn-ports-all@freebsd.org Sun Aug 9 20:21:04 2015 Return-Path: Delivered-To: svn-ports-all@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 3002599DD23; Sun, 9 Aug 2015 20:21:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.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 13ECC108; Sun, 9 Aug 2015 20:21:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79KL3Q4016863; Sun, 9 Aug 2015 20:21:03 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79KL3ZD016859; Sun, 9 Aug 2015 20:21:03 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508092021.t79KL3ZD016859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 20:21:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393825 - in head/security: . rubygem-attr_encrypted 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.20 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: Sun, 09 Aug 2015 20:21:04 -0000 Author: swills Date: Sun Aug 9 20:21:02 2015 New Revision: 393825 URL: https://svnweb.freebsd.org/changeset/ports/393825 Log: secrutiy/rubygem-attr_encrypted: create port Ruby library which generates attr_accessors that encrypt and decrypt attributes transparently WWW: https://github.com/attr-encrypted/attr_encrypted PR: 201806 Submitted by: Torsten Zühlsdorff Added: head/security/rubygem-attr_encrypted/ head/security/rubygem-attr_encrypted/Makefile (contents, props changed) head/security/rubygem-attr_encrypted/distinfo (contents, props changed) head/security/rubygem-attr_encrypted/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Aug 9 20:17:48 2015 (r393824) +++ head/security/Makefile Sun Aug 9 20:21:02 2015 (r393825) @@ -912,6 +912,7 @@ SUBDIR += ruby-hmac SUBDIR += ruby-password SUBDIR += ruby-tcpwrap + SUBDIR += rubygem-attr_encrypted SUBDIR += rubygem-bcrypt SUBDIR += rubygem-bcrypt-ruby SUBDIR += rubygem-doorkeeper Added: head/security/rubygem-attr_encrypted/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-attr_encrypted/Makefile Sun Aug 9 20:21:02 2015 (r393825) @@ -0,0 +1,20 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= attr_encrypted +PORTVERSION= 1.3.4 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Generates attr_accessors that encrypt and decrypt attributes + +LICENSE= MIT + +RUN_DEPENDS= rubygem-encryptor>=1.3.0:${PORTSDIR}/security/rubygem-encryptor + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/security/rubygem-attr_encrypted/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-attr_encrypted/distinfo Sun Aug 9 20:21:02 2015 (r393825) @@ -0,0 +1,2 @@ +SHA256 (rubygem/attr_encrypted-1.3.4.gem) = 175d9e2a9193f251419818900be9627069c573141dec823175f38c8a0941a2c2 +SIZE (rubygem/attr_encrypted-1.3.4.gem) = 20992 Added: head/security/rubygem-attr_encrypted/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-attr_encrypted/pkg-descr Sun Aug 9 20:21:02 2015 (r393825) @@ -0,0 +1,4 @@ +Ruby library which generates attr_accessors that encrypt +and decrypt attributes transparently + +WWW: https://github.com/attr-encrypted/attr_encrypted