From owner-svn-ports-head@freebsd.org Sat Jan 4 09:01:18 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6B2EB1F7554; Sat, 4 Jan 2020 09:01:18 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47qbNZ2JVtz3yJk; Sat, 4 Jan 2020 09:01:18 +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 4A4E1A798; Sat, 4 Jan 2020 09:01:18 +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 00491IYL054259; Sat, 4 Jan 2020 09:01:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00491HFY054255; Sat, 4 Jan 2020 09:01:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202001040901.00491HFY054255@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 4 Jan 2020 09:01:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r521987 - in head/www: . py-google-cloud-bigtable X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/www: . py-google-cloud-bigtable X-SVN-Commit-Revision: 521987 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.29 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: Sat, 04 Jan 2020 09:01:18 -0000 Author: sunpoet Date: Sat Jan 4 09:01:17 2020 New Revision: 521987 URL: https://svnweb.freebsd.org/changeset/ports/521987 Log: Add py-google-cloud-bigtable 1.2.1 Google Cloud Bigtable is Google's NoSQL Big Data database service. It's the same database that powers many core Google services, including Search, Analytics, Maps, and Gmail. WWW: https://github.com/googleapis/google-cloud-python WWW: https://github.com/googleapis/google-cloud-python/tree/master/bigtable Added: head/www/py-google-cloud-bigtable/ head/www/py-google-cloud-bigtable/Makefile (contents, props changed) head/www/py-google-cloud-bigtable/distinfo (contents, props changed) head/www/py-google-cloud-bigtable/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Jan 4 09:00:55 2020 (r521986) +++ head/www/Makefile Sat Jan 4 09:01:17 2020 (r521987) @@ -1662,6 +1662,7 @@ SUBDIR += py-google SUBDIR += py-google-api-core SUBDIR += py-google-api-python-client + SUBDIR += py-google-cloud-bigtable SUBDIR += py-google-cloud-core SUBDIR += py-google-cloud-dlp SUBDIR += py-google-cloud-logging Added: head/www/py-google-cloud-bigtable/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google-cloud-bigtable/Makefile Sat Jan 4 09:01:17 2020 (r521987) @@ -0,0 +1,26 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= google-cloud-bigtable +PORTVERSION= 1.2.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Google Cloud Bigtable API client library + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}google-api-core>=1.14.0<2.0.0:www/py-google-api-core@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}google-cloud-core>=1.0.3<2.0:www/py-google-cloud-core@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}grpc-google-iam-v1>=0.12.3<0.13:devel/py-grpc-google-iam-v1@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}grpcio>=1.8.2<2.0:devel/py-grpcio@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/www/py-google-cloud-bigtable/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google-cloud-bigtable/distinfo Sat Jan 4 09:01:17 2020 (r521987) @@ -0,0 +1,3 @@ +TIMESTAMP = 1578117367 +SHA256 (google-cloud-bigtable-1.2.1.tar.gz) = 48675d3ef98741fe2ffa57766d861d70a2855d003237868138e495bfa19390f3 +SIZE (google-cloud-bigtable-1.2.1.tar.gz) = 237235 Added: head/www/py-google-cloud-bigtable/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-google-cloud-bigtable/pkg-descr Sat Jan 4 09:01:17 2020 (r521987) @@ -0,0 +1,6 @@ +Google Cloud Bigtable is Google's NoSQL Big Data database service. It's the same +database that powers many core Google services, including Search, Analytics, +Maps, and Gmail. + +WWW: https://github.com/googleapis/google-cloud-python +WWW: https://github.com/googleapis/google-cloud-python/tree/master/bigtable