Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 3AF2C7A269 for ; Sun, 11 Sep 2016 08:02:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A817D85E75; Sun, 11 Sep 2016 08:02:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 39D1E85E6E for ; Sun, 11 Sep 2016 08:02:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 2UuP7M6Alc2q for ; Sun, 11 Sep 2016 08:02:30 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4D1F484D04 for ; Sun, 11 Sep 2016 08:02:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 43145FBD1; Sun, 11 Sep 2016 08:02:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_147358095025660" MIME-Version: 1.0 Date: Sun, 11 Sep 2016 08:02:30 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20160911080230.43145FBD1@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_147358095025660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Sun Sep 11 08:02:30 UTC 2016 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/go-protobuf: DESCR Makefile PLIST buildlink3.mk distinfo Log Message: New package, go-protobuf. Protocol Buffers are Google's data interchange format. This software implements Go bindings for protocol buffers. For information about protocol buffers themselves, see https://developers.google.com/protocol-buffers/ To generate a diff of this commit: cvs rdiff -u -r1.2305 -r1.2306 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/go-protobuf/DESCR \ pkgsrc/devel/go-protobuf/Makefile pkgsrc/devel/go-protobuf/PLIST \ pkgsrc/devel/go-protobuf/buildlink3.mk pkgsrc/devel/go-protobuf/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_147358095025660 Content-Disposition: inline Content-Length: 10985 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.2305 pkgsrc/devel/Makefile:1.2306 --- pkgsrc/devel/Makefile:1.2305 Sun Aug 28 15:34:54 2016 +++ pkgsrc/devel/Makefile Sun Sep 11 08:02:29 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2305 2016/08/28 15:34:54 wiz Exp $ +# $NetBSD: Makefile,v 1.2306 2016/09/11 08:02:29 bsiegert Exp $ # COMMENT= Development utilities @@ -300,6 +300,7 @@ SUBDIR+= go-gls SUBDIR+= go-ini SUBDIR+= go-mow-cli SUBDIR+= go-nbreader +SUBDIR+= go-protobuf SUBDIR+= go-ratelimit SUBDIR+= go-review SUBDIR+= go-termbox Added files: Index: pkgsrc/devel/go-protobuf/DESCR diff -u /dev/null pkgsrc/devel/go-protobuf/DESCR:1.1 --- /dev/null Sun Sep 11 08:02:30 2016 +++ pkgsrc/devel/go-protobuf/DESCR Sun Sep 11 08:02:30 2016 @@ -0,0 +1,5 @@ +Protocol Buffers are Google's data interchange format. + +This software implements Go bindings for protocol buffers. For information +about protocol buffers themselves, see +https://developers.google.com/protocol-buffers/ Index: pkgsrc/devel/go-protobuf/Makefile diff -u /dev/null pkgsrc/devel/go-protobuf/Makefile:1.1 --- /dev/null Sun Sep 11 08:02:30 2016 +++ pkgsrc/devel/go-protobuf/Makefile Sun Sep 11 08:02:30 2016 @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1 2016/09/11 08:02:30 bsiegert Exp $ +# + +DISTNAME= go-protobuf-20160829 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_GITHUB:=golang/} +GITHUB_PROJECT= protobuf +GITHUB_TAG= 1f49d83 + +HOMEPAGE= http://godoc.org/${GO_SRCPATH} +COMMENT= Go support for Google protocol buffers +LICENSE= modified-bsd + +GO_SRCPATH= github.com/golang/protobuf +GO_DIST_BASE= ${GITHUB_PROJECT}-${GITHUB_TAG}* + +.include "../../lang/go/go-package.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/go-protobuf/PLIST diff -u /dev/null pkgsrc/devel/go-protobuf/PLIST:1.1 --- /dev/null Sun Sep 11 08:02:30 2016 +++ pkgsrc/devel/go-protobuf/PLIST Sun Sep 11 08:02:30 2016 @@ -0,0 +1,116 @@ +@comment $NetBSD: PLIST,v 1.1 2016/09/11 08:02:30 bsiegert Exp $ +bin/protoc-gen-go +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/jsonpb.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/jsonpb/jsonpb_test_proto.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/proto.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/proto/proto3_proto.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/proto/testdata.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/protoc-gen-go/descriptor.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/protoc-gen-go/generator.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/protoc-gen-go/grpc.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/protoc-gen-go/plugin.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/ptypes.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/ptypes/any.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/ptypes/duration.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/ptypes/empty.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/ptypes/struct.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/ptypes/timestamp.a +gopkg/pkg/${GO_PLATFORM}/github.com/golang/protobuf/ptypes/wrappers.a +gopkg/src/github.com/golang/protobuf/AUTHORS +gopkg/src/github.com/golang/protobuf/CONTRIBUTORS +gopkg/src/github.com/golang/protobuf/LICENSE +gopkg/src/github.com/golang/protobuf/Make.protobuf +gopkg/src/github.com/golang/protobuf/Makefile +gopkg/src/github.com/golang/protobuf/README.md +gopkg/src/github.com/golang/protobuf/_conformance/Makefile +gopkg/src/github.com/golang/protobuf/_conformance/conformance.go +gopkg/src/github.com/golang/protobuf/_conformance/conformance_proto/conformance.pb.go +gopkg/src/github.com/golang/protobuf/_conformance/conformance_proto/conformance.proto +gopkg/src/github.com/golang/protobuf/jsonpb/jsonpb.go +gopkg/src/github.com/golang/protobuf/jsonpb/jsonpb_test.go +gopkg/src/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/Makefile +gopkg/src/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/more_test_objects.pb.go +gopkg/src/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/more_test_objects.proto +gopkg/src/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/test_objects.pb.go +gopkg/src/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/test_objects.proto +gopkg/src/github.com/golang/protobuf/proto/Makefile +gopkg/src/github.com/golang/protobuf/proto/all_test.go +gopkg/src/github.com/golang/protobuf/proto/any_test.go +gopkg/src/github.com/golang/protobuf/proto/clone.go +gopkg/src/github.com/golang/protobuf/proto/clone_test.go +gopkg/src/github.com/golang/protobuf/proto/decode.go +gopkg/src/github.com/golang/protobuf/proto/encode.go +gopkg/src/github.com/golang/protobuf/proto/equal.go +gopkg/src/github.com/golang/protobuf/proto/equal_test.go +gopkg/src/github.com/golang/protobuf/proto/extensions.go +gopkg/src/github.com/golang/protobuf/proto/extensions_test.go +gopkg/src/github.com/golang/protobuf/proto/lib.go +gopkg/src/github.com/golang/protobuf/proto/message_set.go +gopkg/src/github.com/golang/protobuf/proto/message_set_test.go +gopkg/src/github.com/golang/protobuf/proto/pointer_reflect.go +gopkg/src/github.com/golang/protobuf/proto/pointer_unsafe.go +gopkg/src/github.com/golang/protobuf/proto/properties.go +gopkg/src/github.com/golang/protobuf/proto/proto3_proto/proto3.pb.go +gopkg/src/github.com/golang/protobuf/proto/proto3_proto/proto3.proto +gopkg/src/github.com/golang/protobuf/proto/proto3_test.go +gopkg/src/github.com/golang/protobuf/proto/size2_test.go +gopkg/src/github.com/golang/protobuf/proto/size_test.go +gopkg/src/github.com/golang/protobuf/proto/testdata/Makefile +gopkg/src/github.com/golang/protobuf/proto/testdata/golden_test.go +gopkg/src/github.com/golang/protobuf/proto/testdata/test.pb.go +gopkg/src/github.com/golang/protobuf/proto/testdata/test.proto +gopkg/src/github.com/golang/protobuf/proto/text.go +gopkg/src/github.com/golang/protobuf/proto/text_parser.go +gopkg/src/github.com/golang/protobuf/proto/text_parser_test.go +gopkg/src/github.com/golang/protobuf/proto/text_test.go +gopkg/src/github.com/golang/protobuf/protoc-gen-go/Makefile +gopkg/src/github.com/golang/protobuf/protoc-gen-go/descriptor/Makefile +gopkg/src/github.com/golang/protobuf/protoc-gen-go/descriptor/descriptor.pb.go +gopkg/src/github.com/golang/protobuf/protoc-gen-go/doc.go +gopkg/src/github.com/golang/protobuf/protoc-gen-go/generator/Makefile +gopkg/src/github.com/golang/protobuf/protoc-gen-go/generator/generator.go +gopkg/src/github.com/golang/protobuf/protoc-gen-go/generator/name_test.go +gopkg/src/github.com/golang/protobuf/protoc-gen-go/grpc/grpc.go +gopkg/src/github.com/golang/protobuf/protoc-gen-go/link_grpc.go +gopkg/src/github.com/golang/protobuf/protoc-gen-go/main.go +gopkg/src/github.com/golang/protobuf/protoc-gen-go/plugin/Makefile +gopkg/src/github.com/golang/protobuf/protoc-gen-go/plugin/plugin.pb.go +gopkg/src/github.com/golang/protobuf/protoc-gen-go/plugin/plugin.pb.golden +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/Makefile +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/extension_base.proto +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/extension_extra.proto +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/extension_test.go +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/extension_user.proto +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/grpc.proto +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/imp.pb.go.golden +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/imp.proto +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/imp2.proto +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/imp3.proto +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/main_test.go +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi1.proto +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi2.proto +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi3.proto +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.pb.go +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.pb.go.golden +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.proto +gopkg/src/github.com/golang/protobuf/protoc-gen-go/testdata/proto3.proto +gopkg/src/github.com/golang/protobuf/ptypes/any.go +gopkg/src/github.com/golang/protobuf/ptypes/any/any.pb.go +gopkg/src/github.com/golang/protobuf/ptypes/any/any.proto +gopkg/src/github.com/golang/protobuf/ptypes/any_test.go +gopkg/src/github.com/golang/protobuf/ptypes/doc.go +gopkg/src/github.com/golang/protobuf/ptypes/duration.go +gopkg/src/github.com/golang/protobuf/ptypes/duration/duration.pb.go +gopkg/src/github.com/golang/protobuf/ptypes/duration/duration.proto +gopkg/src/github.com/golang/protobuf/ptypes/duration_test.go +gopkg/src/github.com/golang/protobuf/ptypes/empty/empty.pb.go +gopkg/src/github.com/golang/protobuf/ptypes/empty/empty.proto +gopkg/src/github.com/golang/protobuf/ptypes/regen.sh +gopkg/src/github.com/golang/protobuf/ptypes/struct/struct.pb.go +gopkg/src/github.com/golang/protobuf/ptypes/struct/struct.proto +gopkg/src/github.com/golang/protobuf/ptypes/timestamp.go +gopkg/src/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go +gopkg/src/github.com/golang/protobuf/ptypes/timestamp/timestamp.proto +gopkg/src/github.com/golang/protobuf/ptypes/timestamp_test.go +gopkg/src/github.com/golang/protobuf/ptypes/wrappers/wrappers.pb.go +gopkg/src/github.com/golang/protobuf/ptypes/wrappers/wrappers.proto Index: pkgsrc/devel/go-protobuf/buildlink3.mk diff -u /dev/null pkgsrc/devel/go-protobuf/buildlink3.mk:1.1 --- /dev/null Sun Sep 11 08:02:30 2016 +++ pkgsrc/devel/go-protobuf/buildlink3.mk Sun Sep 11 08:02:30 2016 @@ -0,0 +1,15 @@ +# $NetBSD: buildlink3.mk,v 1.1 2016/09/11 08:02:30 bsiegert Exp $ + +BUILDLINK_TREE+= go-protobuf + +.if !defined(GO_PROTOBUF_BUILDLINK3_MK) +GO_PROTOBUF_BUILDLINK3_MK:= + +BUILDLINK_CONTENTS_FILTER.go-protobuf= ${EGREP} gopkg/ +BUILDLINK_DEPMETHOD.go-protobuf?= build + +BUILDLINK_API_DEPENDS.go-protobuf+= go-protobuf>=20160829 +BUILDLINK_PKGSRCDIR.go-protobuf?= ../../devel/go-protobuf +.endif # GO_PROTOBUF_BUILDLINK3_MK + +BUILDLINK_TREE+= -go-protobuf Index: pkgsrc/devel/go-protobuf/distinfo diff -u /dev/null pkgsrc/devel/go-protobuf/distinfo:1.1 --- /dev/null Sun Sep 11 08:02:30 2016 +++ pkgsrc/devel/go-protobuf/distinfo Sun Sep 11 08:02:30 2016 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2016/09/11 08:02:30 bsiegert Exp $ + +SHA1 (go-protobuf-20160829-1f49d83.tar.gz) = 5a408b2784f9ea5144e1fda9b624a4459099521b +RMD160 (go-protobuf-20160829-1f49d83.tar.gz) = fc382af2a7f13792140005bbffab7ded0a935655 +SHA512 (go-protobuf-20160829-1f49d83.tar.gz) = 6281846f0395df8411bf8548f83ebdf3c571acc888ef9a06fefd66e96345502f698728b7f9c03969c23af4ebca9374d3d285fa6bf2c0bc970efd8bbef5969e1e +Size (go-protobuf-20160829-1f49d83.tar.gz) = 240139 bytes --_----------=_147358095025660--