Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Jun 2015 07:26:44 +0000 (UTC)
From:      Thomas Zander <riggs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r389597 - in head/security: . py-gpsoauth
Message-ID:  <201506140726.t5E7QitW019362@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: riggs
Date: Sun Jun 14 07:26:44 2015
New Revision: 389597
URL: https://svnweb.freebsd.org/changeset/ports/389597

Log:
  Add py-gpsoauth, a Python client library for Google Play Services OAuth

Added:
  head/security/py-gpsoauth/
  head/security/py-gpsoauth/Makefile   (contents, props changed)
  head/security/py-gpsoauth/distinfo   (contents, props changed)
  head/security/py-gpsoauth/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sun Jun 14 07:22:58 2015	(r389596)
+++ head/security/Makefile	Sun Jun 14 07:26:44 2015	(r389597)
@@ -795,6 +795,7 @@
     SUBDIR += py-flask-httpauth
     SUBDIR += py-gnupg
     SUBDIR += py-gnutls
+    SUBDIR += py-gpsoauth
     SUBDIR += py-htpasswd
     SUBDIR += py-itsdangerous
     SUBDIR += py-kerberos

Added: head/security/py-gpsoauth/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-gpsoauth/Makefile	Sun Jun 14 07:26:44 2015	(r389597)
@@ -0,0 +1,28 @@
+# Created by: Thomas Zander <riggs@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	gpsoauth
+PORTVERSION=	0.0.20150603
+CATEGORIES=	security python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	riggs@FreeBSD.org
+COMMENT=	Python client library for Google Play Services OAuth
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pycrypto>=2.6.1:${PORTSDIR}/security/py-pycrypto \
+		${PYTHON_PKGNAMEPREFIX}requests>=2.7.0:${PORTSDIR}/www/py-requests \
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	simon-weber
+GH_PROJECT=	gpsoauth
+GH_TAGNAME=	ea8246b
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/security/py-gpsoauth/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-gpsoauth/distinfo	Sun Jun 14 07:26:44 2015	(r389597)
@@ -0,0 +1,2 @@
+SHA256 (simon-weber-gpsoauth-0.0.20150603-ea8246b_GH0.tar.gz) = 2a816dcb12ba4e3f8e7e04b7e5c8383ad59969ddad15a9eabac9731e00696f4f
+SIZE (simon-weber-gpsoauth-0.0.20150603-ea8246b_GH0.tar.gz) = 4422

Added: head/security/py-gpsoauth/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-gpsoauth/pkg-descr	Sun Jun 14 07:26:44 2015	(r389597)
@@ -0,0 +1,8 @@
+gpsoauth allows python code to use the "master token" flow that KB
+Sriram described at
+http://sbktech.blogspot.com/2014/01/inside-android-play-services-magic.html.
+
+This is be useful when writing code that poses as a Google app, like
+gmusicapi does.
+
+WWW: http://github.com/simon-weber/gpsoauth



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