From owner-svn-ports-all@freebsd.org Sat Jun 2 22:24:48 2018 Return-Path: Delivered-To: svn-ports-all@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 BBF70FEF945; Sat, 2 Jun 2018 22:24: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 6E7A27C17A; Sat, 2 Jun 2018 22:24: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 4FAA915E48; Sat, 2 Jun 2018 22:24:48 +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 w52MOmKe031275; Sat, 2 Jun 2018 22:24:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w52MOlZd031270; Sat, 2 Jun 2018 22:24:47 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806022224.w52MOlZd031270@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 2 Jun 2018 22:24:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471407 - in head/security: . rubygem-ed25519 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/security: . rubygem-ed25519 X-SVN-Commit-Revision: 471407 X-SVN-Commit-Repository: ports 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.26 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: Sat, 02 Jun 2018 22:24:49 -0000 Author: sunpoet Date: Sat Jun 2 22:24:47 2018 New Revision: 471407 URL: https://svnweb.freebsd.org/changeset/ports/471407 Log: Add rubygem-ed25519 1.2.4 ed25519.rb is a Ruby binding to the Ed25519 elliptic curve public-key signature system described in RFC 8032. Two implementations are provided: a MRI C extension which uses the "ref10" implementation from the SUPERCOP benchmark suite, and a pure Java version based on str4d/ed25519-java. Ed25519 is one of two notable algorithms implemented atop the Curve25519 elliptic curve. The x25519 gem is a related project of this one, and implements the X25519 Diffie-Hellman key exchange algorithm on the Montgomery form of Curve25519. WWW: https://github.com/crypto-rb/ed25519 Added: head/security/rubygem-ed25519/ head/security/rubygem-ed25519/Makefile (contents, props changed) head/security/rubygem-ed25519/distinfo (contents, props changed) head/security/rubygem-ed25519/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Jun 2 22:03:00 2018 (r471406) +++ head/security/Makefile Sat Jun 2 22:24:47 2018 (r471407) @@ -1103,6 +1103,7 @@ SUBDIR += rubygem-doorkeeper-openid_connect12 SUBDIR += rubygem-doorkeeper-rails5 SUBDIR += rubygem-doorkeeper-rails50 + SUBDIR += rubygem-ed25519 SUBDIR += rubygem-encryptor SUBDIR += rubygem-ezcrypto SUBDIR += rubygem-googleauth Added: head/security/rubygem-ed25519/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-ed25519/Makefile Sat Jun 2 22:24:47 2018 (r471407) @@ -0,0 +1,18 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= ed25519 +PORTVERSION= 1.2.4 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Ruby binding to the Ed25519 (RFC 8032) + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_RUBY= yes +USES= gem + +.include Added: head/security/rubygem-ed25519/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-ed25519/distinfo Sat Jun 2 22:24:47 2018 (r471407) @@ -0,0 +1,3 @@ +TIMESTAMP = 1527946165 +SHA256 (rubygem/ed25519-1.2.4.gem) = dc62c3491e9484d566519ab2bfca1406c7527694c902e6d05074c3a33ecab3b8 +SIZE (rubygem/ed25519-1.2.4.gem) = 137216 Added: head/security/rubygem-ed25519/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-ed25519/pkg-descr Sat Jun 2 22:24:47 2018 (r471407) @@ -0,0 +1,13 @@ +ed25519.rb is a Ruby binding to the Ed25519 elliptic curve public-key signature +system described in RFC 8032. + +Two implementations are provided: a MRI C extension which uses the "ref10" +implementation from the SUPERCOP benchmark suite, and a pure Java version based +on str4d/ed25519-java. + +Ed25519 is one of two notable algorithms implemented atop the Curve25519 +elliptic curve. The x25519 gem is a related project of this one, and implements +the X25519 Diffie-Hellman key exchange algorithm on the Montgomery form of +Curve25519. + +WWW: https://github.com/crypto-rb/ed25519