From owner-svn-ports-head@FreeBSD.ORG Sun Oct 20 23:48:07 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DF90556D; Sun, 20 Oct 2013 23:48:07 +0000 (UTC) (envelope-from swills@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B17AE2A27; Sun, 20 Oct 2013 23:48:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9KNm7s6059019; Sun, 20 Oct 2013 23:48:07 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9KNm6Tj059012; Sun, 20 Oct 2013 23:48:06 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201310202348.r9KNm6Tj059012@svn.freebsd.org> From: Steve Wills Date: Sun, 20 Oct 2013 23:48:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331074 - in head/net: . rubygem-omniauth-oauth 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.14 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, 20 Oct 2013 23:48:08 -0000 Author: swills Date: Sun Oct 20 23:48:06 2013 New Revision: 331074 URL: http://svnweb.freebsd.org/changeset/ports/331074 Log: A generic OAuth (1.0/1.0a) strategy for OmniAuth. WWW: https://github.com/intridea/omniauth-oauth PR: ports/182697 Submitted by: Loic Blot Added: head/net/rubygem-omniauth-oauth/ head/net/rubygem-omniauth-oauth/Makefile (contents, props changed) head/net/rubygem-omniauth-oauth/distinfo (contents, props changed) head/net/rubygem-omniauth-oauth/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Oct 20 23:35:32 2013 (r331073) +++ head/net/Makefile Sun Oct 20 23:48:06 2013 (r331074) @@ -1040,6 +1040,7 @@ SUBDIR += rubygem-network_interface SUBDIR += rubygem-oauth SUBDIR += rubygem-oauth2 + SUBDIR += rubygem-omniauth-oauth SUBDIR += rubygem-open-uri-cached SUBDIR += rubygem-openid SUBDIR += rubygem-packetfu Added: head/net/rubygem-omniauth-oauth/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-omniauth-oauth/Makefile Sun Oct 20 23:48:06 2013 (r331074) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= omniauth-oauth +PORTVERSION= 1.0.1 +CATEGORIES= net rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Generic OAuth strategy for OmniAuth + +RUN_DEPENDS= rubygem-oauth>=0:${PORTSDIR}/net/rubygem-oauth \ + rubygem-omniauth>=1.0:${PORTSDIR}/security/rubygem-omniauth + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +NO_STAGE= yes + +.include Added: head/net/rubygem-omniauth-oauth/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-omniauth-oauth/distinfo Sun Oct 20 23:48:06 2013 (r331074) @@ -0,0 +1,2 @@ +SHA256 (rubygem/omniauth-oauth-1.0.1.gem) = 9f1bfb30fe6ba823935330d2036e08a5406e980f1e20c9b1271b82ee34fbe759 +SIZE (rubygem/omniauth-oauth-1.0.1.gem) = 8192 Added: head/net/rubygem-omniauth-oauth/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-omniauth-oauth/pkg-descr Sun Oct 20 23:48:06 2013 (r331074) @@ -0,0 +1,3 @@ +A generic OAuth (1.0/1.0a) strategy for OmniAuth. + +WWW: https://github.com/intridea/omniauth-oauth