1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

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

This commit is contained in:
Thomas Zander 2015-06-14 07:26:44 +00:00
parent 816ac6adfc
commit 629cdc24e7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=389597
4 changed files with 39 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -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

View File

@ -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