From owner-svn-ports-all@freebsd.org Sun Oct 27 11:29:38 2019 Return-Path: <owner-svn-ports-all@freebsd.org> 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 F3B91174EDA; Sun, 27 Oct 2019 11:29:38 +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 471FxZ5MR5z4cd3; Sun, 27 Oct 2019 11:29:38 +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 668E820886; Sun, 27 Oct 2019 11:29:38 +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 x9RBTcVQ092228; Sun, 27 Oct 2019 11:29:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9RBTbeQ092224; Sun, 27 Oct 2019 11:29:37 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201910271129.x9RBTbeQ092224@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> Date: Sun, 27 Oct 2019 11:29:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r515776 - in head/net: . rubygem-google-cloud-pubsub X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/net: . rubygem-google-cloud-pubsub X-SVN-Commit-Revision: 515776 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 <svn-ports-all.freebsd.org> List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-ports-all>, <mailto:svn-ports-all-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-all/> List-Post: <mailto:svn-ports-all@freebsd.org> List-Help: <mailto:svn-ports-all-request@freebsd.org?subject=help> List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-ports-all>, <mailto:svn-ports-all-request@freebsd.org?subject=subscribe> X-List-Received-Date: Sun, 27 Oct 2019 11:29:39 -0000 Author: sunpoet Date: Sun Oct 27 11:29:37 2019 New Revision: 515776 URL: https://svnweb.freebsd.org/changeset/ports/515776 Log: Add rubygem-google-cloud-pubsub 1.1.0 Google Cloud Pub/Sub (docs) is designed to provide reliable, many-to-many, asynchronous messaging between applications. Publisher applications can send messages to a "topic" and other applications can subscribe to that topic to receive the messages. By decoupling senders and receivers, Google Cloud Pub/Sub allows developers to communicate between independently written applications. WWW: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-pubsub Added: head/net/rubygem-google-cloud-pubsub/ head/net/rubygem-google-cloud-pubsub/Makefile (contents, props changed) head/net/rubygem-google-cloud-pubsub/distinfo (contents, props changed) head/net/rubygem-google-cloud-pubsub/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Oct 27 11:29:31 2019 (r515775) +++ head/net/Makefile Sun Oct 27 11:29:37 2019 (r515776) @@ -1260,6 +1260,7 @@ SUBDIR += rubygem-google-cloud-core SUBDIR += rubygem-google-cloud-env SUBDIR += rubygem-google-cloud-logging + SUBDIR += rubygem-google-cloud-pubsub SUBDIR += rubygem-google-cloud-storage SUBDIR += rubygem-grpc SUBDIR += rubygem-grpc124 Added: head/net/rubygem-google-cloud-pubsub/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-google-cloud-pubsub/Makefile Sun Oct 27 11:29:37 2019 (r515776) @@ -0,0 +1,26 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= google-cloud-pubsub +PORTVERSION= 1.1.0 +CATEGORIES= net rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Official library for Google Cloud Pub/Sub + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= rubygem-concurrent-ruby>=1.1<2:devel/rubygem-concurrent-ruby \ + rubygem-google-cloud-core>=1.2<2:net/rubygem-google-cloud-core \ + rubygem-google-gax>=1.8<2:devel/rubygem-google-gax \ + rubygem-googleapis-common-protos>=1.3.9<2.0:devel/rubygem-googleapis-common-protos \ + rubygem-grpc-google-iam-v1>=0.6.9<0.7:devel/rubygem-grpc-google-iam-v1 + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/net/rubygem-google-cloud-pubsub/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-google-cloud-pubsub/distinfo Sun Oct 27 11:29:37 2019 (r515776) @@ -0,0 +1,3 @@ +TIMESTAMP = 1572168793 +SHA256 (rubygem/google-cloud-pubsub-1.1.0.gem) = e514a472a3e045631934af1b9c0604bceb87841488284deed47379a5e6765e6f +SIZE (rubygem/google-cloud-pubsub-1.1.0.gem) = 101888 Added: head/net/rubygem-google-cloud-pubsub/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-google-cloud-pubsub/pkg-descr Sun Oct 27 11:29:37 2019 (r515776) @@ -0,0 +1,7 @@ +Google Cloud Pub/Sub (docs) is designed to provide reliable, many-to-many, +asynchronous messaging between applications. Publisher applications can send +messages to a "topic" and other applications can subscribe to that topic to +receive the messages. By decoupling senders and receivers, Google Cloud Pub/Sub +allows developers to communicate between independently written applications. + +WWW: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-pubsub