From owner-dev-commits-ports-all@freebsd.org Tue Apr 27 20:50:42 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D63AA621EAA; Tue, 27 Apr 2021 20:50:42 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FVDS25cCJz4sx0; Tue, 27 Apr 2021 20:50:42 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B39702153E; Tue, 27 Apr 2021 20:50:42 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 13RKog6x055122; Tue, 27 Apr 2021 20:50:42 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 13RKog3J055121; Tue, 27 Apr 2021 20:50:42 GMT (envelope-from git) Date: Tue, 27 Apr 2021 20:50:42 GMT Message-Id: <202104272050.13RKog3J055121@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Neel Chauhan Subject: git: a69f7dd95d51 - main - New port: security/p5-Crypt-JWT MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: nc X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: a69f7dd95d51844481bd34bdfa12fef3898c7174 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Apr 2021 20:50:42 -0000 The branch main has been updated by nc: URL: https://cgit.FreeBSD.org/ports/commit/?id=a69f7dd95d51844481bd34bdfa12fef3898c7174 commit a69f7dd95d51844481bd34bdfa12fef3898c7174 Author: Neel Chauhan AuthorDate: 2021-04-27 20:50:18 +0000 Commit: Neel Chauhan CommitDate: 2021-04-27 20:50:18 +0000 New port: security/p5-Crypt-JWT JSON Web Token (JWT, JWS, JWE) as defined by RFC7519, RFC7515, RFC7516 implements the Perl interface to: * JSON Web Token (JWT) * JSON Web Signature (JWS) * JSON Web Encryption (JWE) As defined by RFC7519, RFC7515, RFC7516. The module implements all (100%) algorithms defined in RFC7518 - JSON Web Algorithms (JWA). This module supports Compact JWS/JWE and flattened JWS/JWE JSON serialization, general JSON serialization is not supported yet. PR: 255447 Submitted by: Sergei Vyshenski --- security/Makefile | 1 + security/p5-Crypt-JWT/Makefile | 25 +++++++++++++++++++++++++ security/p5-Crypt-JWT/distinfo | 3 +++ security/p5-Crypt-JWT/pkg-descr | 15 +++++++++++++++ security/p5-Crypt-JWT/pkg-plist | 4 ++++ 5 files changed, 48 insertions(+) diff --git a/security/Makefile b/security/Makefile index 6801e3770b33..3b2843941aff 100644 --- a/security/Makefile +++ b/security/Makefile @@ -517,6 +517,7 @@ SUBDIR += p5-Crypt-IDEA SUBDIR += p5-Crypt-Imail SUBDIR += p5-Crypt-Juniper + SUBDIR += p5-Crypt-JWT SUBDIR += p5-Crypt-Khazad SUBDIR += p5-Crypt-LE SUBDIR += p5-Crypt-LibSCEP diff --git a/security/p5-Crypt-JWT/Makefile b/security/p5-Crypt-JWT/Makefile new file mode 100644 index 000000000000..03ce998e7a40 --- /dev/null +++ b/security/p5-Crypt-JWT/Makefile @@ -0,0 +1,25 @@ +# Created by: Sergei Vyshenski + +PORTNAME= Crypt-JWT +PORTVERSION= 0.032 +CATEGORIES= security perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= svysh.fbsd@gmail.com +COMMENT= JSON Web Token (JWT, JWS, JWE) as defined by RFC7519, RFC7515, RFC7516 + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-CryptX>=0.067:security/p5-CryptX \ + p5-JSON>=0:converters/p5-JSON + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include diff --git a/security/p5-Crypt-JWT/distinfo b/security/p5-Crypt-JWT/distinfo new file mode 100644 index 000000000000..5ee12d0434b3 --- /dev/null +++ b/security/p5-Crypt-JWT/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1619536946 +SHA256 (Crypt-JWT-0.032.tar.gz) = 1d3e0f11aba0a946e39578abf8b3c45ef1a2fd0ad87245f5c1da75a660f035ca +SIZE (Crypt-JWT-0.032.tar.gz) = 83732 diff --git a/security/p5-Crypt-JWT/pkg-descr b/security/p5-Crypt-JWT/pkg-descr new file mode 100644 index 000000000000..e0f6a355be83 --- /dev/null +++ b/security/p5-Crypt-JWT/pkg-descr @@ -0,0 +1,15 @@ +JSON Web Token (JWT, JWS, JWE) as defined by RFC7519, RFC7515, RFC7516 +implements the Perl interface to: + + * JSON Web Token (JWT) + * JSON Web Signature (JWS) + * JSON Web Encryption (JWE) + +As defined by RFC7519, RFC7515, RFC7516. + +The module implements all (100%) algorithms defined in RFC7518 - JSON +Web Algorithms (JWA). This module supports Compact JWS/JWE and +flattened JWS/JWE JSON serialization, general JSON serialization +is not supported yet. + +WWW: https://metacpan.org/release/Crypt-JWT diff --git a/security/p5-Crypt-JWT/pkg-plist b/security/p5-Crypt-JWT/pkg-plist new file mode 100644 index 000000000000..b9feeba7add1 --- /dev/null +++ b/security/p5-Crypt-JWT/pkg-plist @@ -0,0 +1,4 @@ +%%SITE_PERL%%/Crypt/JWT.pm +%%SITE_PERL%%/Crypt/KeyWrap.pm +%%PERL5_MAN3%%/Crypt::JWT.3.gz +%%PERL5_MAN3%%/Crypt::KeyWrap.3.gz