From owner-svn-ports-head@freebsd.org Wed Sep 27 19:37:33 2017 Return-Path: Delivered-To: svn-ports-head@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 57B79E0D8E0; Wed, 27 Sep 2017 19:37:33 +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 318BC83F36; Wed, 27 Sep 2017 19:37:33 +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 v8RJbWCJ017770; Wed, 27 Sep 2017 19:37:32 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8RJbVPm017766; Wed, 27 Sep 2017 19:37:31 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201709271937.v8RJbVPm017766@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 19:37:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450783 - in head/www: . py-google-cloud-core X-SVN-Group: ports-head X-SVN-Commit-Author: wg X-SVN-Commit-Paths: in head/www: . py-google-cloud-core X-SVN-Commit-Revision: 450783 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Sep 2017 19:37:33 -0000 Author: wg Date: Wed Sep 27 19:37:31 2017 New Revision: 450783 URL: https://svnweb.freebsd.org/changeset/ports/450783 Log: www/py-google-cloud-core: API Client library for Google Cloud: Core Helpers This library is not meant to stand-alone. Instead it defines common helpers (e.g. base Client classes) used by all of the google-cloud-* packages. WWW: https://pypi.python.org/pypi/google-cloud-core Added: head/www/py-google-cloud-core/ head/www/py-google-cloud-core/Makefile (contents, props changed) head/www/py-google-cloud-core/distinfo (contents, props changed) head/www/py-google-cloud-core/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Sep 27 19:35:09 2017 (r450782) +++ head/www/Makefile Wed Sep 27 19:37:31 2017 (r450783) @@ -1668,6 +1668,7 @@ SUBDIR += py-goobook SUBDIR += py-google SUBDIR += py-google-api-python-client + SUBDIR += py-google-cloud-core SUBDIR += py-graphite-api SUBDIR += py-graphite-web SUBDIR += py-grequests Added: head/www/py-google-cloud-core/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google-cloud-core/Makefile Wed Sep 27 19:37:31 2017 (r450783) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= google-cloud-core +PORTVERSION= 0.27.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= API Client library for Google Cloud: Core Helpers + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}googleapis-common-protos>0:devel/py-googleapis-common-protos \ + ${PYTHON_PKGNAMEPREFIX}google-auth>0:security/py-google-auth \ + ${PYTHON_PKGNAMEPREFIX}protobuf>0:devel/py-protobuf \ + ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six + +USES= python +USE_PYTHON= distutils concurrent autoplist + +.include Added: head/www/py-google-cloud-core/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google-cloud-core/distinfo Wed Sep 27 19:37:31 2017 (r450783) @@ -0,0 +1,3 @@ +TIMESTAMP = 1506509178 +SHA256 (google-cloud-core-0.27.1.tar.gz) = 1e52449feb72160a726798a085d7b0cf1d7b88d4b4af00f04d9ca9d6eb47847b +SIZE (google-cloud-core-0.27.1.tar.gz) = 58048 Added: head/www/py-google-cloud-core/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google-cloud-core/pkg-descr Wed Sep 27 19:37:31 2017 (r450783) @@ -0,0 +1,4 @@ +This library is not meant to stand-alone. Instead it defines common helpers +(e.g. base Client classes) used by all of the google-cloud-* packages. + +WWW: https://pypi.python.org/pypi/google-cloud-core