From owner-svn-ports-all@freebsd.org Sat Jan 4 09:00:56 2020 Return-Path: Delivered-To: svn-ports-all@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 AD7741F73F3; Sat, 4 Jan 2020 09:00:56 +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 47qbN84BnGz3y6c; Sat, 4 Jan 2020 09:00:56 +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 8B6BAA777; Sat, 4 Jan 2020 09:00:56 +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 00490ubx052545; Sat, 4 Jan 2020 09:00:56 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00490tEu052541; Sat, 4 Jan 2020 09:00:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202001040900.00490tEu052541@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:00:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r521986 - in head/devel: . py-grpc-google-iam-v1 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-grpc-google-iam-v1 X-SVN-Commit-Revision: 521986 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.29 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: Sat, 04 Jan 2020 09:00:56 -0000 Author: sunpoet Date: Sat Jan 4 09:00:55 2020 New Revision: 521986 URL: https://svnweb.freebsd.org/changeset/ports/521986 Log: Add py-grpc-google-iam-v1 0.12.3 Cloud Identity and Access Management (IAM) A Service Account is an account used to identify services (non-humans) to Google. A Service Account has a list of Service Account Keys, which can be used to authenticate to Google. A Service Account Key is a public/private keypair generated by Google. Google retains the public key, while the customer is given the private key. The private key can be used to sign JWTs and authenticate Service Accounts to Google. WWW: https://github.com/googleapis/googleapis/tree/master/google/iam Added: head/devel/py-grpc-google-iam-v1/ head/devel/py-grpc-google-iam-v1/Makefile (contents, props changed) head/devel/py-grpc-google-iam-v1/distinfo (contents, props changed) head/devel/py-grpc-google-iam-v1/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jan 4 08:31:21 2020 (r521985) +++ head/devel/Makefile Sat Jan 4 09:00:55 2020 (r521986) @@ -4490,6 +4490,7 @@ SUBDIR += py-greenlet SUBDIR += py-grizzled SUBDIR += py-grouch + SUBDIR += py-grpc-google-iam-v1 SUBDIR += py-grpcio SUBDIR += py-grpcio-gcp SUBDIR += py-grpcio-tools Added: head/devel/py-grpc-google-iam-v1/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-grpc-google-iam-v1/Makefile Sat Jan 4 09:00:55 2020 (r521986) @@ -0,0 +1,24 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= grpc-google-iam-v1 +PORTVERSION= 0.12.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= GRPC library for the google-iam-v1 service + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}googleapis-common-protos>=1.5.2<2.0.0:devel/py-googleapis-common-protos@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}grpcio>=1.0.0<2.0.0:devel/py-grpcio@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-grpc-google-iam-v1/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-grpc-google-iam-v1/distinfo Sat Jan 4 09:00:55 2020 (r521986) @@ -0,0 +1,3 @@ +TIMESTAMP = 1578117365 +SHA256 (grpc-google-iam-v1-0.12.3.tar.gz) = 0bfb5b56f648f457021a91c0df0db4934b6e0c300bd0f2de2333383fe958aa72 +SIZE (grpc-google-iam-v1-0.12.3.tar.gz) = 13551 Added: head/devel/py-grpc-google-iam-v1/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-grpc-google-iam-v1/pkg-descr Sat Jan 4 09:00:55 2020 (r521986) @@ -0,0 +1,11 @@ +Cloud Identity and Access Management (IAM) + +A Service Account is an account used to identify services (non-humans) to +Google. A Service Account has a list of Service Account Keys, which can be used +to authenticate to Google. + +A Service Account Key is a public/private keypair generated by Google. Google +retains the public key, while the customer is given the private key. The private +key can be used to sign JWTs and authenticate Service Accounts to Google. + +WWW: https://github.com/googleapis/googleapis/tree/master/google/iam