From owner-svn-ports-head@freebsd.org Tue Mar 20 22:33:51 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96EA8F510B9; Tue, 20 Mar 2018 22:33:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 472936C15C; Tue, 20 Mar 2018 22:33:51 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 41F8022B9D; Tue, 20 Mar 2018 22:33:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2KMXpqD001878; Tue, 20 Mar 2018 22:33:51 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2KMXodQ001874; Tue, 20 Mar 2018 22:33:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201803202233.w2KMXodQ001874@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Mar 2018 22:33:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465114 - in head/www: . py-google-api-core X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/www: . py-google-api-core X-SVN-Commit-Revision: 465114 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.25 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: Tue, 20 Mar 2018 22:33:51 -0000 Author: sunpoet Date: Tue Mar 20 22:33:50 2018 New Revision: 465114 URL: https://svnweb.freebsd.org/changeset/ports/465114 Log: Add py-google-api-core 1.1.0 Core Library for Google Client Libraries This library is not meant to stand-alone. Instead it defines common helpers used by all Google API clients. WWW: https://pypi.python.org/pypi/google-api-core WWW: https://github.com/GoogleCloudPlatform/google-cloud-python Added: head/www/py-google-api-core/ head/www/py-google-api-core/Makefile (contents, props changed) head/www/py-google-api-core/distinfo (contents, props changed) head/www/py-google-api-core/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Mar 20 22:27:21 2018 (r465113) +++ head/www/Makefile Tue Mar 20 22:33:50 2018 (r465114) @@ -1681,6 +1681,7 @@ SUBDIR += py-gevent-websocket SUBDIR += py-goobook SUBDIR += py-google + SUBDIR += py-google-api-core SUBDIR += py-google-api-python-client SUBDIR += py-google-cloud-core SUBDIR += py-google-cloud-storage Added: head/www/py-google-api-core/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google-api-core/Makefile Tue Mar 20 22:33:50 2018 (r465114) @@ -0,0 +1,29 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= google-api-core +PORTVERSION= 1.1.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Core Google API Client Library + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PY_FUTURES} \ + ${PYTHON_PKGNAMEPREFIX}google-auth>=0.4.0:security/py-google-auth@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}googleapis-common-protos>=1.5.3:devel/py-googleapis-common-protos@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}grpcio>=1.8.2:devel/py-grpcio@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}protobuf>=3.0.0:devel/py-protobuf@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.18.0:www/py-requests@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${FLAVOR} + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include Added: head/www/py-google-api-core/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google-api-core/distinfo Tue Mar 20 22:33:50 2018 (r465114) @@ -0,0 +1,3 @@ +TIMESTAMP = 1521579041 +SHA256 (google-api-core-1.1.0.tar.gz) = b4f103de6bd38ab346f7d17236f6098a51ebdff733ff69956a0f1e29cb35f10b +SIZE (google-api-core-1.1.0.tar.gz) = 53350 Added: head/www/py-google-api-core/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google-api-core/pkg-descr Tue Mar 20 22:33:50 2018 (r465114) @@ -0,0 +1,7 @@ +Core Library for Google Client Libraries + +This library is not meant to stand-alone. Instead it defines common helpers used +by all Google API clients. + +WWW: https://pypi.python.org/pypi/google-api-core +WWW: https://github.com/GoogleCloudPlatform/google-cloud-python