From owner-svn-ports-all@freebsd.org Mon Mar 27 19:16:02 2017 Return-Path: Delivered-To: svn-ports-all@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 1B378D20BEB; Mon, 27 Mar 2017 19:16:02 +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 mx1.freebsd.org (Postfix) with ESMTPS id EA04D68; Mon, 27 Mar 2017 19:16:01 +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 v2RJG1ZE040377; Mon, 27 Mar 2017 19:16:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2RJG0pH040373; Mon, 27 Mar 2017 19:16:00 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201703271916.v2RJG0pH040373@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 27 Mar 2017 19:16:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437078 - in head/devel: . rubygem-google-protobuf X-SVN-Group: ports-head 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.23 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: Mon, 27 Mar 2017 19:16:02 -0000 Author: sunpoet Date: Mon Mar 27 19:16:00 2017 New Revision: 437078 URL: https://svnweb.freebsd.org/changeset/ports/437078 Log: Add rubygem-google-protobuf 3.2.0.2 rubygem-google-protobuf is a Ruby extension that implements Protocol Buffers functionality. It makes use of generated Ruby code that defines message and enum types in a Ruby DSL. You may write definitions in this DSL directly, but we recommend using protoc's Ruby generation support with .proto files. The build process in this directory only installs the extension; you need to install protoc as well to have Ruby code generation functionality. WWW: https://developers.google.com/protocol-buffers/ WWW: https://github.com/google/protobuf/tree/master/ruby Added: head/devel/rubygem-google-protobuf/ head/devel/rubygem-google-protobuf/Makefile (contents, props changed) head/devel/rubygem-google-protobuf/distinfo (contents, props changed) head/devel/rubygem-google-protobuf/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 27 19:12:25 2017 (r437077) +++ head/devel/Makefile Mon Mar 27 19:16:00 2017 (r437078) @@ -5277,6 +5277,7 @@ SUBDIR += rubygem-glib2 SUBDIR += rubygem-gobject-introspection SUBDIR += rubygem-google-api-client + SUBDIR += rubygem-google-protobuf SUBDIR += rubygem-graf SUBDIR += rubygem-grape SUBDIR += rubygem-grape-entity Added: head/devel/rubygem-google-protobuf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-google-protobuf/Makefile Mon Mar 27 19:16:00 2017 (r437078) @@ -0,0 +1,17 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= google-protobuf +PORTVERSION= 3.2.0.2 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Ruby extension to Google Protocol Buffers + +LICENSE= BSD3CLAUSE + +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-google-protobuf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-google-protobuf/distinfo Mon Mar 27 19:16:00 2017 (r437078) @@ -0,0 +1,3 @@ +TIMESTAMP = 1490207616 +SHA256 (rubygem/google-protobuf-3.2.0.2.gem) = 5443d72483a0dd37ecb7e5f14e59b1c11f0a806aabe4b7d679f244731398a3cd +SIZE (rubygem/google-protobuf-3.2.0.2.gem) = 231424 Added: head/devel/rubygem-google-protobuf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-google-protobuf/pkg-descr Mon Mar 27 19:16:00 2017 (r437078) @@ -0,0 +1,9 @@ +rubygem-google-protobuf is a Ruby extension that implements Protocol Buffers +functionality. It makes use of generated Ruby code that defines message and enum +types in a Ruby DSL. You may write definitions in this DSL directly, but we +recommend using protoc's Ruby generation support with .proto files. The build +process in this directory only installs the extension; you need to install +protoc as well to have Ruby code generation functionality. + +WWW: https://developers.google.com/protocol-buffers/ +WWW: https://github.com/google/protobuf/tree/master/ruby