From owner-svn-ports-head@FreeBSD.ORG Sun May 10 12:57:02 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 19079514; Sun, 10 May 2015 12:57:02 +0000 (UTC) Received: from svn.freebsd.org (svn.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 EF6EA1AB0; Sun, 10 May 2015 12:57:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4ACv12R017036; Sun, 10 May 2015 12:57:01 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4ACv0VP017029; Sun, 10 May 2015 12:57:00 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201505101257.t4ACv0VP017029@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Sun, 10 May 2015 12:57:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385953 - in head/security: . rubygem-omniauth-multipassword X-SVN-Group: ports-head 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.20 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, 10 May 2015 12:57:02 -0000 Author: mmoll Date: Sun May 10 12:57:00 2015 New Revision: 385953 URL: https://svnweb.freebsd.org/changeset/ports/385953 Log: new port: security/rubygem-omniauth-multipassword Ruby gem that implements an OmniAuth strategy that allows to authenticate against different password strategies at once. WWW: https://github.com/jgraichen/omniauth-multipassword PR: 199755 Differential Revision: https://reviews.freebsd.org/D2504 Submitted by: Torsten Zuehlsdorff Approved by: mat (mentor) Added: head/security/rubygem-omniauth-multipassword/ head/security/rubygem-omniauth-multipassword/Makefile (contents, props changed) head/security/rubygem-omniauth-multipassword/distinfo (contents, props changed) head/security/rubygem-omniauth-multipassword/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun May 10 12:45:50 2015 (r385952) +++ head/security/Makefile Sun May 10 12:57:00 2015 (r385953) @@ -920,6 +920,7 @@ SUBDIR += rubygem-omniauth SUBDIR += rubygem-omniauth-bitbucket SUBDIR += rubygem-omniauth-gitlab + SUBDIR += rubygem-omniauth-multipassword SUBDIR += rubygem-origami SUBDIR += rubygem-pyu-ruby-sasl SUBDIR += rubygem-razorback-scriptNugget Added: head/security/rubygem-omniauth-multipassword/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-omniauth-multipassword/Makefile Sun May 10 12:57:00 2015 (r385953) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= omniauth-multipassword +PORTVERSION= 0.4.1 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= OmniAuth strategy using different passwort strategies + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= rubygem-omniauth>=1.0:${PORTSDIR}/security/rubygem-omniauth + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/security/rubygem-omniauth-multipassword/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-omniauth-multipassword/distinfo Sun May 10 12:57:00 2015 (r385953) @@ -0,0 +1,2 @@ +SHA256 (rubygem/omniauth-multipassword-0.4.1.gem) = 35acded3b0f67ae4f9b699c4e415a728bd5f81e38365a651493506aa8c9ee93d +SIZE (rubygem/omniauth-multipassword-0.4.1.gem) = 7168 Added: head/security/rubygem-omniauth-multipassword/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-omniauth-multipassword/pkg-descr Sun May 10 12:57:00 2015 (r385953) @@ -0,0 +1,4 @@ +Ruby gem that implements an OmniAuth strategy that allows to +authenticate against different password strategies at once. + +WWW: https://github.com/jgraichen/omniauth-multipassword