From owner-svn-ports-head@freebsd.org Tue Feb 27 15:04:48 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6131BF2D54D; Tue, 27 Feb 2018 15:04:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 12CC17C3D3; Tue, 27 Feb 2018 15:04:48 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E96104317; Tue, 27 Feb 2018 15:04:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1RF4lIF027876; Tue, 27 Feb 2018 15:04:47 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1RF4lLG027872; Tue, 27 Feb 2018 15:04:47 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802271504.w1RF4lLG027872@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 27 Feb 2018 15:04:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463144 - in head/security: . rubygem-aes_key_wrap X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/security: . rubygem-aes_key_wrap X-SVN-Commit-Revision: 463144 X-SVN-Commit-Repository: ports 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.25 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, 27 Feb 2018 15:04:48 -0000 Author: sunpoet Date: Tue Feb 27 15:04:47 2018 New Revision: 463144 URL: https://svnweb.freebsd.org/changeset/ports/463144 Log: Add rubygem-aes_key_wrap 1.0.1 AESKeyWrap is a Ruby implementation of AES Key Wrap (RFC 3394, a.k.a. NIST Key Wrap). WWW: https://github.com/tomdalling/aes_key_wrap Added: head/security/rubygem-aes_key_wrap/ head/security/rubygem-aes_key_wrap/Makefile (contents, props changed) head/security/rubygem-aes_key_wrap/distinfo (contents, props changed) head/security/rubygem-aes_key_wrap/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Feb 27 13:25:49 2018 (r463143) +++ head/security/Makefile Tue Feb 27 15:04:47 2018 (r463144) @@ -1060,6 +1060,7 @@ SUBDIR += rkhunter SUBDIR += rndpassw SUBDIR += ruby-camellia + SUBDIR += rubygem-aes_key_wrap SUBDIR += rubygem-airbrussh SUBDIR += rubygem-attr_encrypted SUBDIR += rubygem-attr_encrypted30 Added: head/security/rubygem-aes_key_wrap/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-aes_key_wrap/Makefile Tue Feb 27 15:04:47 2018 (r463144) @@ -0,0 +1,18 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= aes_key_wrap +PORTVERSION= 1.0.1 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Ruby implementation of AES Key Wrap + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USE_RUBY= yes +USES= gem + +.include Added: head/security/rubygem-aes_key_wrap/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-aes_key_wrap/distinfo Tue Feb 27 15:04:47 2018 (r463144) @@ -0,0 +1,3 @@ +TIMESTAMP = 1519733612 +SHA256 (rubygem/aes_key_wrap-1.0.1.gem) = 0770dc79001aa46e03b25772ffbc4de0fefd2cde4eac7bf39f5204f4c0342852 +SIZE (rubygem/aes_key_wrap-1.0.1.gem) = 7680 Added: head/security/rubygem-aes_key_wrap/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-aes_key_wrap/pkg-descr Tue Feb 27 15:04:47 2018 (r463144) @@ -0,0 +1,4 @@ +AESKeyWrap is a Ruby implementation of AES Key Wrap (RFC 3394, a.k.a. NIST Key +Wrap). + +WWW: https://github.com/tomdalling/aes_key_wrap