From owner-svn-ports-all@freebsd.org Wed Sep 27 18:59:00 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 410BBE0C6C5; Wed, 27 Sep 2017 18:59:00 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 04F3B8248B; Wed, 27 Sep 2017 18:58:59 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8RIwx3e000918; Wed, 27 Sep 2017 18:58:59 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8RIwwL4000914; Wed, 27 Sep 2017 18:58:58 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201709271858.v8RIwwL4000914@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Wed, 27 Sep 2017 18:58:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450779 - in head/www: . py-google-auth X-SVN-Group: ports-head X-SVN-Commit-Author: wg X-SVN-Commit-Paths: in head/www: . py-google-auth X-SVN-Commit-Revision: 450779 X-SVN-Commit-Repository: ports 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.23 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: Wed, 27 Sep 2017 18:59:00 -0000 Author: wg Date: Wed Sep 27 18:58:58 2017 New Revision: 450779 URL: https://svnweb.freebsd.org/changeset/ports/450779 Log: www/py-google-auth: Google Authentication Library This library simplifies using Google's various server-to-server authentication mechanisms to access Google APIs. WWW: https://github.com/GoogleCloudPlatform/google-auth-library-python Added: head/www/py-google-auth/ head/www/py-google-auth/Makefile (contents, props changed) head/www/py-google-auth/distinfo (contents, props changed) head/www/py-google-auth/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Sep 27 18:50:45 2017 (r450778) +++ head/www/Makefile Wed Sep 27 18:58:58 2017 (r450779) @@ -1668,6 +1668,7 @@ SUBDIR += py-goobook SUBDIR += py-google SUBDIR += py-google-api-python-client + SUBDIR += py-google-auth SUBDIR += py-graphite-api SUBDIR += py-graphite-web SUBDIR += py-grequests Added: head/www/py-google-auth/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google-auth/Makefile Wed Sep 27 18:58:58 2017 (r450779) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= google-auth +PORTVERSION= 1.1.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Google Authentication Library + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyasn1>0:devel/py-pyasn1 \ + ${PYTHON_PKGNAMEPREFIX}pyasn1-modules>0:devel/py-pyasn1-modules \ + ${PYTHON_PKGNAMEPREFIX}rsa>0:security/py-rsa \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}cachetools>0:devel/py-cachetools + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/www/py-google-auth/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google-auth/distinfo Wed Sep 27 18:58:58 2017 (r450779) @@ -0,0 +1,3 @@ +TIMESTAMP = 1506509328 +SHA256 (google-auth-1.1.1.tar.gz) = e00236a914906409367e96fdcf5c08aaca3ab5bd3aab0c5c5ea9255162640215 +SIZE (google-auth-1.1.1.tar.gz) = 290557 Added: head/www/py-google-auth/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google-auth/pkg-descr Wed Sep 27 18:58:58 2017 (r450779) @@ -0,0 +1,4 @@ +This library simplifies using Google's various server-to-server +authentication mechanisms to access Google APIs. + +WWW: https://github.com/GoogleCloudPlatform/google-auth-library-python