From owner-svn-ports-all@FreeBSD.ORG Tue Feb 10 11:19:57 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1421512F; Tue, 10 Feb 2015 11:19:57 +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 EAC07CB7; Tue, 10 Feb 2015 11:19:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1ABJuTg038385; Tue, 10 Feb 2015 11:19:56 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1ABJtAO038381; Tue, 10 Feb 2015 11:19:55 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201502101119.t1ABJtAO038381@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Tue, 10 Feb 2015 11:19:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378766 - in head/www: . py-flask-oauthlib X-SVN-Group: ports-head 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.18-1 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: Tue, 10 Feb 2015 11:19:57 -0000 Author: rm Date: Tue Feb 10 11:19:55 2015 New Revision: 378766 URL: https://svnweb.freebsd.org/changeset/ports/378766 QAT: https://qat.redports.org/buildarchive/r378766/ Log: Flask-OAuthlib is an extension to Flask that allows you to interact with remote OAuth enabled applications. On the client site, it is a replacement for Flask-OAuth. But it does more than that, it also helps you to create OAuth providers. WWW: https://github.com/lepture/flask-oauthlib/ Added: head/www/py-flask-oauthlib/ head/www/py-flask-oauthlib/Makefile (contents, props changed) head/www/py-flask-oauthlib/distinfo (contents, props changed) head/www/py-flask-oauthlib/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Feb 10 11:19:00 2015 (r378765) +++ head/www/Makefile Tue Feb 10 11:19:55 2015 (r378766) @@ -1542,6 +1542,7 @@ SUBDIR += py-flask-admin SUBDIR += py-flask-cache SUBDIR += py-flask-flatpages + SUBDIR += py-flask-oauthlib SUBDIR += py-flask-restful SUBDIR += py-flask-sockets SUBDIR += py-flask-uploads Added: head/www/py-flask-oauthlib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-flask-oauthlib/Makefile Tue Feb 10 11:19:55 2015 (r378766) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= Flask-OAuthlib +PORTVERSION= 0.9.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= OAuthlib for Flask + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>0:${PORTSDIR}/www/py-flask \ + ${PYTHON_PKGNAMEPREFIX}oauthlib>0:${PORTSDIR}/security/py-oauthlib \ + ${PYTHON_PKGNAMEPREFIX}requests-oauthlib>0:${PORTSDIR}/www/py-requests-oauthlib + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/www/py-flask-oauthlib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-flask-oauthlib/distinfo Tue Feb 10 11:19:55 2015 (r378766) @@ -0,0 +1,2 @@ +SHA256 (Flask-OAuthlib-0.9.0.tar.gz) = 719a63e04f163602b75183625dc5c604888034c5ade339c5fa80c0eb964690d5 +SIZE (Flask-OAuthlib-0.9.0.tar.gz) = 33339 Added: head/www/py-flask-oauthlib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-flask-oauthlib/pkg-descr Tue Feb 10 11:19:55 2015 (r378766) @@ -0,0 +1,6 @@ +Flask-OAuthlib is an extension to Flask that allows you to interact +with remote OAuth enabled applications. On the client site, it is a +replacement for Flask-OAuth. But it does more than that, it also +helps you to create OAuth providers. + +WWW: https://github.com/lepture/flask-oauthlib/