From owner-svn-ports-head@freebsd.org Sun Apr 8 18:29:22 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 7333FF979C4; Sun, 8 Apr 2018 18:29:22 +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 245366E613; Sun, 8 Apr 2018 18:29:22 +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 1F542138F0; Sun, 8 Apr 2018 18:29:22 +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 w38ITM16059188; Sun, 8 Apr 2018 18:29:22 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w38ITLIT059184; Sun, 8 Apr 2018 18:29:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201804081829.w38ITLIT059184@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 8 Apr 2018 18:29:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466815 - in head/security: . rubygem-omniauth-jwt X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/security: . rubygem-omniauth-jwt X-SVN-Commit-Revision: 466815 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: Sun, 08 Apr 2018 18:29:22 -0000 Author: sunpoet Date: Sun Apr 8 18:29:21 2018 New Revision: 466815 URL: https://svnweb.freebsd.org/changeset/ports/466815 Log: Add rubygem-omniauth-jwt 0.0.2 JSON Web Token (JWT) is a simple way to send verified information between two parties online. This can be useful as a mechanism for providing Single Sign-On (SSO) to an application by allowing an authentication server to send a validated claim and log the user in. This is how Zendesk does SSO, for example. OmniAuth::JWT provides a clean, simple wrapper on top of JWT so that you can easily implement this kind of SSO either between your own applications or allow third parties to delegate authentication. WWW: https://github.com/mbleigh/omniauth-jwt Added: head/security/rubygem-omniauth-jwt/ head/security/rubygem-omniauth-jwt/Makefile (contents, props changed) head/security/rubygem-omniauth-jwt/distinfo (contents, props changed) head/security/rubygem-omniauth-jwt/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Apr 8 18:09:23 2018 (r466814) +++ head/security/Makefile Sun Apr 8 18:29:21 2018 (r466815) @@ -1117,6 +1117,7 @@ SUBDIR += rubygem-omniauth-cas SUBDIR += rubygem-omniauth-cas3 SUBDIR += rubygem-omniauth-gitlab + SUBDIR += rubygem-omniauth-jwt SUBDIR += rubygem-omniauth-multipassword SUBDIR += rubygem-omniauth-oauth2-generic SUBDIR += rubygem-omniauth-saml Added: head/security/rubygem-omniauth-jwt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-omniauth-jwt/Makefile Sun Apr 8 18:29:21 2018 (r466815) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= omniauth-jwt +PORTVERSION= 0.0.2 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= OmniAuth strategy to accept JWT-based single sign-on + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-jwt>=0:www/rubygem-jwt \ + rubygem-omniauth>=1.1:security/rubygem-omniauth + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/security/rubygem-omniauth-jwt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-omniauth-jwt/distinfo Sun Apr 8 18:29:21 2018 (r466815) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523121359 +SHA256 (rubygem/omniauth-jwt-0.0.2.gem) = b9bfcc600c3ed34feb0976f1e99035f3d1dba839f713f0ea08da9d5b7e49b963 +SIZE (rubygem/omniauth-jwt-0.0.2.gem) = 9216 Added: head/security/rubygem-omniauth-jwt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-omniauth-jwt/pkg-descr Sun Apr 8 18:29:21 2018 (r466815) @@ -0,0 +1,10 @@ +JSON Web Token (JWT) is a simple way to send verified information between two +parties online. This can be useful as a mechanism for providing Single Sign-On +(SSO) to an application by allowing an authentication server to send a validated +claim and log the user in. This is how Zendesk does SSO, for example. + +OmniAuth::JWT provides a clean, simple wrapper on top of JWT so that you can +easily implement this kind of SSO either between your own applications or allow +third parties to delegate authentication. + +WWW: https://github.com/mbleigh/omniauth-jwt