From owner-svn-ports-all@freebsd.org Sun Aug 9 20:17:49 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 E51F299DC52; Sun, 9 Aug 2015 20:17:49 +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 B98DFE79; Sun, 9 Aug 2015 20:17:49 +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 t79KHn7W015848; Sun, 9 Aug 2015 20:17:49 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79KHm0Y015844; Sun, 9 Aug 2015 20:17:48 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508092017.t79KHm0Y015844@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:17:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393824 - in head/security: . rubygem-encryptor 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:17:50 -0000 Author: swills Date: Sun Aug 9 20:17:48 2015 New Revision: 393824 URL: https://svnweb.freebsd.org/changeset/ports/393824 Log: security/rubygem-encryptor: create port A simple wrapper for the standard ruby OpenSSL library to encrypt and decrypt strings WWW: https://github.com/attr-encrypted/encryptor PR: 201808 Submitted by: Torsten Zühlsdorff Added: head/security/rubygem-encryptor/ head/security/rubygem-encryptor/Makefile (contents, props changed) head/security/rubygem-encryptor/distinfo (contents, props changed) head/security/rubygem-encryptor/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Aug 9 20:10:35 2015 (r393823) +++ head/security/Makefile Sun Aug 9 20:17:48 2015 (r393824) @@ -915,6 +915,7 @@ SUBDIR += rubygem-bcrypt SUBDIR += rubygem-bcrypt-ruby SUBDIR += rubygem-doorkeeper + SUBDIR += rubygem-encryptor SUBDIR += rubygem-ezcrypto SUBDIR += rubygem-gpgr SUBDIR += rubygem-gssapi Added: head/security/rubygem-encryptor/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-encryptor/Makefile Sun Aug 9 20:17:48 2015 (r393824) @@ -0,0 +1,18 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= encryptor +PORTVERSION= 1.3.0 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Wrapper for the standard ruby OpenSSL library + +LICENSE= MIT + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/security/rubygem-encryptor/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-encryptor/distinfo Sun Aug 9 20:17:48 2015 (r393824) @@ -0,0 +1,2 @@ +SHA256 (rubygem/encryptor-1.3.0.gem) = 3e6ce2ce8efdaeb0713f03ed278b4653f67c3bf6a14bc9618507060454c39813 +SIZE (rubygem/encryptor-1.3.0.gem) = 8704 Added: head/security/rubygem-encryptor/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-encryptor/pkg-descr Sun Aug 9 20:17:48 2015 (r393824) @@ -0,0 +1,4 @@ +A simple wrapper for the standard ruby OpenSSL library to encrypt +and decrypt strings + +WWW: https://github.com/attr-encrypted/encryptor