Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 10 Feb 2015 11:19:55 +0000 (UTC)
From:      Ruslan Makhmatkhanov <rm@FreeBSD.org>
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
Message-ID:  <201502101119.t1ABJtAO038381@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502101119.t1ABJtAO038381>