Fri Nov 17 22:09:11 2017 UTC ()
Upgrade protobuf to version 3.5.0.

Pkgsrc changes:
 * Adapt PLIST.
 * After exchange, set MAINTAINER to pkgsrc-users@

Upstream changes:

2017-11-13 version 3.5.0 (C++/Java/Python/PHP/Objective-C/C#/Ruby/JavaScript)
  Planned Future Changes
  * Make C++ implementation C++11 only: we plan to require C++11 to build
    protobuf code starting from 3.6.0 release. Please join this github issue:
    https://github.com/google/protobuf/issues/2780 to provide your feedback.

  General
  * Unknown fields are now preserved in proto3 for most of the language
    implementations for proto3 by default. See the per-language section for
    details.
  * reserve keyword are now supported in enums

  C++
  * Proto3 messages are now preserving unknown fields by default. If you rely on
    unknowns fields being dropped. Please use DiscardUnknownFields() explicitly.
  * Deprecated the unsafe_arena_release_* and unsafe_arena_add_allocated_*
    methods for string fields.
  * Added move constructor and move assignment to RepeatedField,
    RepeatedPtrField and google::protobuf::Any.
  * Added perfect forwarding in Arena::CreateMessage
  * In-progress experimental support for implicit weak fields with lite protos.
    This feature allows the linker to strip out more unused messages and reduce
    binary size.
  * Various performance optimizations.

  Java
  * Proto3 messages are now preserving unknown fields by default. If you'd like
    to drop unknown fields, please use the DiscardUnknownFieldsParser API. For
    example:
      Parser<Foo> parser = DiscardUnknownFieldsParser.wrap(Foo.parser());
      Foo foo = parser.parseFrom(input);
  * Added a new CodedInputStream decoder for Iterable<ByteBuffer> with direct
    ByteBuffers.
  * TextFormat now prints unknown length-delimited fields as messages if
    possible.
  * FieldMaskUtil.merge() no longer creates unnecessary empty messages when a
    message field is unset in both source message and destination message.
  * Various performance optimizations.

  Python
  * Proto3 messages are now preserving unknown fields by default. Use
    message.DiscardUnknownFields() to drop unknown fields.
  * Add FieldDescriptor.file in generated code.
  * Add descriptor pool FindOneofByName in pure python.
  * Change unknown enum values into unknown field set .
  * Add more Python dict/list compatibility for Struct/ListValue.
  * Add utf-8 support for text_format.Merge()/Parse().
  * Support numeric unknown enum values for proto3 JSON format.
  * Add warning for Unexpected end-group tag in cpp extension.

  PHP
  * Proto3 messages are now preserving unknown fields.
  * Provide well known type messages in runtime.
  * Add prefix "PB" to generated class of reserved names.
  * Fixed all conformance tests for encode/decode json in php runtime. C
    extension needs more work.

  Objective-C
  * Fixed some issues around copying of messages with unknown fields and then
    mutating the unknown fields in the copy.

  C#
  * Added unknown field support in JsonParser.
  * Fixed oneof message field merge.
  * Simplify parsing messages from array slices.

  Ruby
  * Unknown fields are now preserved by default.
  * Fixed several bugs for segment fault.

  Javascript
  * Decoder can handle both paced and unpacked data no matter how the proto is
    defined.
  * Decoder now accept long varint for 32 bit integers.


(he)
diff -r1.13 -r1.14 pkgsrc/devel/protobuf/Makefile
diff -r1.8 -r1.9 pkgsrc/devel/protobuf/Makefile.common
diff -r1.8 -r1.9 pkgsrc/devel/protobuf/PLIST
diff -r1.17 -r1.18 pkgsrc/devel/protobuf/distinfo
diff -r1.5 -r1.6 pkgsrc/devel/py-protobuf/PLIST
diff -r1.11 -r1.12 pkgsrc/devel/py-protobuf/distinfo

cvs diff -r1.13 -r1.14 pkgsrc/devel/protobuf/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/protobuf/Makefile 2017/02/07 13:50:31 1.13
+++ pkgsrc/devel/protobuf/Makefile 2017/11/17 22:09:11 1.14
@@ -1,21 +1,21 @@ @@ -1,21 +1,21 @@
1# $NetBSD: Makefile,v 1.13 2017/02/07 13:50:31 wiz Exp $ 1# $NetBSD: Makefile,v 1.14 2017/11/17 22:09:11 he Exp $
2 2
3.include "Makefile.common" 3.include "Makefile.common"
4 4
5DISTNAME= protobuf-cpp-${PROTOBUFVER} 5DISTNAME= protobuf-cpp-${PROTOBUFVER}
6PKGNAME= ${DISTNAME:S/-cpp//} 6PKGNAME= ${DISTNAME:S/-cpp//}
7 7
8MAINTAINER= aran@100acres.us 8MAINTAINER= pkgsrc-users@NetBSD.org
9COMMENT= Google protocol buffers 9COMMENT= Google protocol buffers
10 10
11GNU_CONFIGURE= yes 11GNU_CONFIGURE= yes
12USE_LIBTOOL= yes 12USE_LIBTOOL= yes
13USE_LANGUAGES= c++ c 13USE_LANGUAGES= c++ c
14USE_TOOLS+= autoreconf automake autoconf gmake 14USE_TOOLS+= autoreconf automake autoconf gmake
15 15
16SET_LIBDIR= yes 16SET_LIBDIR= yes
17 17
18PKGCONFIG_OVERRIDE+= protobuf-lite.pc.in 18PKGCONFIG_OVERRIDE+= protobuf-lite.pc.in
19PKGCONFIG_OVERRIDE+= protobuf.pc.in 19PKGCONFIG_OVERRIDE+= protobuf.pc.in
20 20
21TEST_TARGET= check 21TEST_TARGET= check

cvs diff -r1.8 -r1.9 pkgsrc/devel/protobuf/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/devel/protobuf/Attic/Makefile.common 2017/10/20 23:02:25 1.8
+++ pkgsrc/devel/protobuf/Attic/Makefile.common 2017/11/17 22:09:11 1.9
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1# $NetBSD: Makefile.common,v 1.8 2017/10/20 23:02:25 minskim Exp $ 1# $NetBSD: Makefile.common,v 1.9 2017/11/17 22:09:11 he Exp $
2# 2#
3# used by devel/protobuf/Makefile 3# used by devel/protobuf/Makefile
4# used by devel/py-protobuf/Makefile 4# used by devel/py-protobuf/Makefile
5 5
6PROTOBUFVER= 3.4.1 6PROTOBUFVER= 3.5.0
7 7
8MASTER_SITES= ${MASTER_SITE_GITHUB:=google/} 8MASTER_SITES= ${MASTER_SITE_GITHUB:=google/}
9GITHUB_PROJECT= protobuf 9GITHUB_PROJECT= protobuf
10GITHUB_RELEASE= v${PKGVERSION_NOREV} 10GITHUB_RELEASE= v${PKGVERSION_NOREV}
11 11
12CATEGORIES= devel 12CATEGORIES= devel
13HOMEPAGE= https://github.com/google/protobuf 13HOMEPAGE= https://github.com/google/protobuf
14LICENSE= modified-bsd 14LICENSE= modified-bsd
15 15
16WRKSRC= ${WRKDIR}/protobuf-${PKGVERSION_NOREV} 16WRKSRC= ${WRKDIR}/protobuf-${PKGVERSION_NOREV}
17 17
18PATCHDIR= ${.CURDIR}/../../devel/protobuf/patches 18PATCHDIR= ${.CURDIR}/../../devel/protobuf/patches

cvs diff -r1.8 -r1.9 pkgsrc/devel/protobuf/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/protobuf/PLIST 2017/10/20 23:02:25 1.8
+++ pkgsrc/devel/protobuf/PLIST 2017/11/17 22:09:11 1.9
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.8 2017/10/20 23:02:25 minskim Exp $ 1@comment $NetBSD: PLIST,v 1.9 2017/11/17 22:09:11 he Exp $
2bin/protoc 2bin/protoc
3include/google/protobuf/any.h 3include/google/protobuf/any.h
4include/google/protobuf/any.pb.h 4include/google/protobuf/any.pb.h
5include/google/protobuf/any.proto 5include/google/protobuf/any.proto
6include/google/protobuf/api.pb.h 6include/google/protobuf/api.pb.h
7include/google/protobuf/api.proto 7include/google/protobuf/api.proto
8include/google/protobuf/arena.h 8include/google/protobuf/arena.h
9include/google/protobuf/arena_impl.h 9include/google/protobuf/arena_impl.h
10include/google/protobuf/arenastring.h 10include/google/protobuf/arenastring.h
11include/google/protobuf/compiler/code_generator.h 11include/google/protobuf/compiler/code_generator.h
12include/google/protobuf/compiler/command_line_interface.h 12include/google/protobuf/compiler/command_line_interface.h
13include/google/protobuf/compiler/cpp/cpp_generator.h 13include/google/protobuf/compiler/cpp/cpp_generator.h
14include/google/protobuf/compiler/csharp/csharp_generator.h 14include/google/protobuf/compiler/csharp/csharp_generator.h
@@ -68,27 +68,26 @@ include/google/protobuf/metadata_lite.h @@ -68,27 +68,26 @@ include/google/protobuf/metadata_lite.h
68include/google/protobuf/reflection.h 68include/google/protobuf/reflection.h
69include/google/protobuf/reflection_ops.h 69include/google/protobuf/reflection_ops.h
70include/google/protobuf/repeated_field.h 70include/google/protobuf/repeated_field.h
71include/google/protobuf/service.h 71include/google/protobuf/service.h
72include/google/protobuf/source_context.pb.h 72include/google/protobuf/source_context.pb.h
73include/google/protobuf/source_context.proto 73include/google/protobuf/source_context.proto
74include/google/protobuf/struct.pb.h 74include/google/protobuf/struct.pb.h
75include/google/protobuf/struct.proto 75include/google/protobuf/struct.proto
76include/google/protobuf/stubs/atomic_sequence_num.h 76include/google/protobuf/stubs/atomic_sequence_num.h
77include/google/protobuf/stubs/atomicops.h 77include/google/protobuf/stubs/atomicops.h
78include/google/protobuf/stubs/atomicops_internals_arm64_gcc.h 78include/google/protobuf/stubs/atomicops_internals_arm64_gcc.h
79include/google/protobuf/stubs/atomicops_internals_arm_gcc.h 79include/google/protobuf/stubs/atomicops_internals_arm_gcc.h
80include/google/protobuf/stubs/atomicops_internals_arm_qnx.h 80include/google/protobuf/stubs/atomicops_internals_arm_qnx.h
81include/google/protobuf/stubs/atomicops_internals_atomicword_compat.h 
82include/google/protobuf/stubs/atomicops_internals_generic_c11_atomic.h 81include/google/protobuf/stubs/atomicops_internals_generic_c11_atomic.h
83include/google/protobuf/stubs/atomicops_internals_generic_gcc.h 82include/google/protobuf/stubs/atomicops_internals_generic_gcc.h
84include/google/protobuf/stubs/atomicops_internals_mips_gcc.h 83include/google/protobuf/stubs/atomicops_internals_mips_gcc.h
85include/google/protobuf/stubs/atomicops_internals_power.h 84include/google/protobuf/stubs/atomicops_internals_power.h
86include/google/protobuf/stubs/atomicops_internals_ppc_gcc.h 85include/google/protobuf/stubs/atomicops_internals_ppc_gcc.h
87include/google/protobuf/stubs/atomicops_internals_solaris.h 86include/google/protobuf/stubs/atomicops_internals_solaris.h
88include/google/protobuf/stubs/atomicops_internals_tsan.h 87include/google/protobuf/stubs/atomicops_internals_tsan.h
89include/google/protobuf/stubs/atomicops_internals_x86_gcc.h 88include/google/protobuf/stubs/atomicops_internals_x86_gcc.h
90include/google/protobuf/stubs/atomicops_internals_x86_msvc.h 89include/google/protobuf/stubs/atomicops_internals_x86_msvc.h
91include/google/protobuf/stubs/bytestream.h 90include/google/protobuf/stubs/bytestream.h
92include/google/protobuf/stubs/callback.h 91include/google/protobuf/stubs/callback.h
93include/google/protobuf/stubs/casts.h 92include/google/protobuf/stubs/casts.h
94include/google/protobuf/stubs/common.h 93include/google/protobuf/stubs/common.h

cvs diff -r1.17 -r1.18 pkgsrc/devel/protobuf/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/protobuf/distinfo 2017/10/20 23:02:25 1.17
+++ pkgsrc/devel/protobuf/distinfo 2017/11/17 22:09:11 1.18
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1$NetBSD: distinfo,v 1.17 2017/10/20 23:02:25 minskim Exp $ 1$NetBSD: distinfo,v 1.18 2017/11/17 22:09:11 he Exp $
2 2
3SHA1 (protobuf-cpp-3.4.1.tar.gz) = f5a62fa19d590525aa4338df42da375ea8912091 3SHA1 (protobuf-cpp-3.5.0.tar.gz) = b5ae3104b6a9401beaac3d8af11da83df7135448
4RMD160 (protobuf-cpp-3.4.1.tar.gz) = 79d4802e0362b01d7ae12719143d4311281d2413 4RMD160 (protobuf-cpp-3.5.0.tar.gz) = 8cd9bb39287dd3d5277e5fd8c6e156a9d2a81206
5SHA512 (protobuf-cpp-3.4.1.tar.gz) = 6189e23c7e381f62e971bd0e35ad9c3ed8effe584755357013887c6a582cb5a9a654c39affa2a073b658854138f31bfb70f89fa1df494e9386f1d64fd73d07d2 5SHA512 (protobuf-cpp-3.5.0.tar.gz) = b1d3f3617898e3f73630ea7a43416a60b970291b4f93952b8d4f68ee5cd401f752d76cd1f6a65a87186b415208142401e01ffebb2ec52534e1db31abcc0d052e
6Size (protobuf-cpp-3.4.1.tar.gz) = 4274863 bytes 6Size (protobuf-cpp-3.5.0.tar.gz) = 4269335 bytes
7SHA1 (patch-configure) = ec7003c29d2d3e9aeb9ea90921313e9eb68d3127 7SHA1 (patch-configure) = ec7003c29d2d3e9aeb9ea90921313e9eb68d3127
8SHA1 (patch-configure.ac) = 208a5ce72905aa95ad73ee0f751d4a58f0c37f5f 8SHA1 (patch-configure.ac) = 208a5ce72905aa95ad73ee0f751d4a58f0c37f5f
9SHA1 (patch-gmock_configure) = a39355c602366450e3cdb6bc7dbc0523fc194319 9SHA1 (patch-gmock_configure) = a39355c602366450e3cdb6bc7dbc0523fc194319
10SHA1 (patch-gmock_configure.ac) = cfd7b7c87eff4b06ce6ecb34dec046561bbdc113 10SHA1 (patch-gmock_configure.ac) = cfd7b7c87eff4b06ce6ecb34dec046561bbdc113
11SHA1 (patch-m4_acx__check__suncc.m4) = faf96ee5d305c08d30e7c7d3578896971983e1dd 11SHA1 (patch-m4_acx__check__suncc.m4) = faf96ee5d305c08d30e7c7d3578896971983e1dd
12SHA1 (patch-src_google_protobuf_message__lite.cc) = 8f2ffe07b2710de5365148153978ad6d9939f522 12SHA1 (patch-src_google_protobuf_message__lite.cc) = 8f2ffe07b2710de5365148153978ad6d9939f522
13SHA1 (patch-src_google_protobuf_stubs_atomicops.h) = 9ec851134da674980a49302e9582a432a47f7974 13SHA1 (patch-src_google_protobuf_stubs_atomicops.h) = 9ec851134da674980a49302e9582a432a47f7974
14SHA1 (patch-src_google_protobuf_stubs_atomicops__internals__arm__gcc.h) = d60c554be8ff7fc9370bb036eef9101f9a6433e3 14SHA1 (patch-src_google_protobuf_stubs_atomicops__internals__arm__gcc.h) = d60c554be8ff7fc9370bb036eef9101f9a6433e3

cvs diff -r1.5 -r1.6 pkgsrc/devel/py-protobuf/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/py-protobuf/PLIST 2017/10/20 23:02:25 1.5
+++ pkgsrc/devel/py-protobuf/PLIST 2017/11/17 22:09:11 1.6
@@ -1,14 +1,21 @@ @@ -1,14 +1,21 @@
1@comment $NetBSD: PLIST,v 1.5 2017/10/20 23:02:25 minskim Exp $ 1@comment $NetBSD: PLIST,v 1.6 2017/11/17 22:09:11 he Exp $
 2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
 5${PYSITELIB}/${EGG_INFODIR}/namespace_packages.txt
 6${PYSITELIB}/${EGG_INFODIR}/requires.txt
 7${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 8${PYSITELIB}/${EGG_NAME}-nspkg.pth
2${PYSITELIB}/google/protobuf/__init__.py 9${PYSITELIB}/google/protobuf/__init__.py
3${PYSITELIB}/google/protobuf/__init__.pyc 10${PYSITELIB}/google/protobuf/__init__.pyc
4${PYSITELIB}/google/protobuf/__init__.pyo 11${PYSITELIB}/google/protobuf/__init__.pyo
5${PYSITELIB}/google/protobuf/any_pb2.py 12${PYSITELIB}/google/protobuf/any_pb2.py
6${PYSITELIB}/google/protobuf/any_pb2.pyc 13${PYSITELIB}/google/protobuf/any_pb2.pyc
7${PYSITELIB}/google/protobuf/any_pb2.pyo 14${PYSITELIB}/google/protobuf/any_pb2.pyo
8${PYSITELIB}/google/protobuf/any_test_pb2.py 15${PYSITELIB}/google/protobuf/any_test_pb2.py
9${PYSITELIB}/google/protobuf/any_test_pb2.pyc 16${PYSITELIB}/google/protobuf/any_test_pb2.pyc
10${PYSITELIB}/google/protobuf/any_test_pb2.pyo 17${PYSITELIB}/google/protobuf/any_test_pb2.pyo
11${PYSITELIB}/google/protobuf/api_pb2.py 18${PYSITELIB}/google/protobuf/api_pb2.py
12${PYSITELIB}/google/protobuf/api_pb2.pyc 19${PYSITELIB}/google/protobuf/api_pb2.pyc
13${PYSITELIB}/google/protobuf/api_pb2.pyo 20${PYSITELIB}/google/protobuf/api_pb2.pyo
14${PYSITELIB}/google/protobuf/compiler/__init__.py 21${PYSITELIB}/google/protobuf/compiler/__init__.py
@@ -169,26 +176,29 @@ ${PYSITELIB}/google/protobuf/internal/we @@ -169,26 +176,29 @@ ${PYSITELIB}/google/protobuf/internal/we
169${PYSITELIB}/google/protobuf/internal/well_known_types.pyo 176${PYSITELIB}/google/protobuf/internal/well_known_types.pyo
170${PYSITELIB}/google/protobuf/internal/well_known_types_test.py 177${PYSITELIB}/google/protobuf/internal/well_known_types_test.py
171${PYSITELIB}/google/protobuf/internal/well_known_types_test.pyc 178${PYSITELIB}/google/protobuf/internal/well_known_types_test.pyc
172${PYSITELIB}/google/protobuf/internal/well_known_types_test.pyo 179${PYSITELIB}/google/protobuf/internal/well_known_types_test.pyo
173${PYSITELIB}/google/protobuf/internal/wire_format.py 180${PYSITELIB}/google/protobuf/internal/wire_format.py
174${PYSITELIB}/google/protobuf/internal/wire_format.pyc 181${PYSITELIB}/google/protobuf/internal/wire_format.pyc
175${PYSITELIB}/google/protobuf/internal/wire_format.pyo 182${PYSITELIB}/google/protobuf/internal/wire_format.pyo
176${PYSITELIB}/google/protobuf/internal/wire_format_test.py 183${PYSITELIB}/google/protobuf/internal/wire_format_test.py
177${PYSITELIB}/google/protobuf/internal/wire_format_test.pyc 184${PYSITELIB}/google/protobuf/internal/wire_format_test.pyc
178${PYSITELIB}/google/protobuf/internal/wire_format_test.pyo 185${PYSITELIB}/google/protobuf/internal/wire_format_test.pyo
179${PYSITELIB}/google/protobuf/json_format.py 186${PYSITELIB}/google/protobuf/json_format.py
180${PYSITELIB}/google/protobuf/json_format.pyc 187${PYSITELIB}/google/protobuf/json_format.pyc
181${PYSITELIB}/google/protobuf/json_format.pyo 188${PYSITELIB}/google/protobuf/json_format.pyo
 189${PYSITELIB}/google/protobuf/map_proto2_unittest_pb2.py
 190${PYSITELIB}/google/protobuf/map_proto2_unittest_pb2.pyc
 191${PYSITELIB}/google/protobuf/map_proto2_unittest_pb2.pyo
182${PYSITELIB}/google/protobuf/map_unittest_pb2.py 192${PYSITELIB}/google/protobuf/map_unittest_pb2.py
183${PYSITELIB}/google/protobuf/map_unittest_pb2.pyc 193${PYSITELIB}/google/protobuf/map_unittest_pb2.pyc
184${PYSITELIB}/google/protobuf/map_unittest_pb2.pyo 194${PYSITELIB}/google/protobuf/map_unittest_pb2.pyo
185${PYSITELIB}/google/protobuf/message.py 195${PYSITELIB}/google/protobuf/message.py
186${PYSITELIB}/google/protobuf/message.pyc 196${PYSITELIB}/google/protobuf/message.pyc
187${PYSITELIB}/google/protobuf/message.pyo 197${PYSITELIB}/google/protobuf/message.pyo
188${PYSITELIB}/google/protobuf/message_factory.py 198${PYSITELIB}/google/protobuf/message_factory.py
189${PYSITELIB}/google/protobuf/message_factory.pyc 199${PYSITELIB}/google/protobuf/message_factory.pyc
190${PYSITELIB}/google/protobuf/message_factory.pyo 200${PYSITELIB}/google/protobuf/message_factory.pyo
191${PYSITELIB}/google/protobuf/proto_builder.py 201${PYSITELIB}/google/protobuf/proto_builder.py
192${PYSITELIB}/google/protobuf/proto_builder.pyc 202${PYSITELIB}/google/protobuf/proto_builder.pyc
193${PYSITELIB}/google/protobuf/proto_builder.pyo 203${PYSITELIB}/google/protobuf/proto_builder.pyo
194${PYSITELIB}/google/protobuf/pyext/__init__.py 204${PYSITELIB}/google/protobuf/pyext/__init__.py
@@ -268,20 +278,14 @@ ${PYSITELIB}/google/protobuf/unittest_pb @@ -268,20 +278,14 @@ ${PYSITELIB}/google/protobuf/unittest_pb
268${PYSITELIB}/google/protobuf/unittest_pb2.pyo 278${PYSITELIB}/google/protobuf/unittest_pb2.pyo
269${PYSITELIB}/google/protobuf/unittest_proto3_arena_pb2.py 279${PYSITELIB}/google/protobuf/unittest_proto3_arena_pb2.py
270${PYSITELIB}/google/protobuf/unittest_proto3_arena_pb2.pyc 280${PYSITELIB}/google/protobuf/unittest_proto3_arena_pb2.pyc
271${PYSITELIB}/google/protobuf/unittest_proto3_arena_pb2.pyo 281${PYSITELIB}/google/protobuf/unittest_proto3_arena_pb2.pyo
272${PYSITELIB}/google/protobuf/util/__init__.py 282${PYSITELIB}/google/protobuf/util/__init__.py
273${PYSITELIB}/google/protobuf/util/__init__.pyc 283${PYSITELIB}/google/protobuf/util/__init__.pyc
274${PYSITELIB}/google/protobuf/util/__init__.pyo 284${PYSITELIB}/google/protobuf/util/__init__.pyo
275${PYSITELIB}/google/protobuf/util/json_format_proto3_pb2.py 285${PYSITELIB}/google/protobuf/util/json_format_proto3_pb2.py
276${PYSITELIB}/google/protobuf/util/json_format_proto3_pb2.pyc 286${PYSITELIB}/google/protobuf/util/json_format_proto3_pb2.pyc
277${PYSITELIB}/google/protobuf/util/json_format_proto3_pb2.pyo 287${PYSITELIB}/google/protobuf/util/json_format_proto3_pb2.pyo
278${PYSITELIB}/google/protobuf/wrappers_pb2.py 288${PYSITELIB}/google/protobuf/wrappers_pb2.py
279${PYSITELIB}/google/protobuf/wrappers_pb2.pyc 289${PYSITELIB}/google/protobuf/wrappers_pb2.pyc
280${PYSITELIB}/google/protobuf/wrappers_pb2.pyo 290${PYSITELIB}/google/protobuf/wrappers_pb2.pyo
281${PYSITELIB}/${EGG_NAME}-nspkg.pth 291
282${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 
283${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 
284${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 
285${PYSITELIB}/${EGG_INFODIR}/namespace_packages.txt 
286${PYSITELIB}/${EGG_INFODIR}/requires.txt 
287${PYSITELIB}/${EGG_INFODIR}/top_level.txt 

cvs diff -r1.11 -r1.12 pkgsrc/devel/py-protobuf/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/py-protobuf/distinfo 2017/10/20 23:02:25 1.11
+++ pkgsrc/devel/py-protobuf/distinfo 2017/11/17 22:09:11 1.12
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1$NetBSD: distinfo,v 1.11 2017/10/20 23:02:25 minskim Exp $ 1$NetBSD: distinfo,v 1.12 2017/11/17 22:09:11 he Exp $
2 2
3SHA1 (protobuf-python-3.4.1.tar.gz) = 8ffff7abd3faaf282176dd45b19d39a7c6718262 3SHA1 (protobuf-python-3.5.0.tar.gz) = 4813791e9deecaea862e83217564df0ce56a80c6
4RMD160 (protobuf-python-3.4.1.tar.gz) = 7d2c2876b7533da6c9cad8f9aa4dac71c9678494 4RMD160 (protobuf-python-3.5.0.tar.gz) = bbef18f7312f450c7fc8b6954a3bad8693666104
5SHA512 (protobuf-python-3.4.1.tar.gz) = 571c7e08c3186c465e65b8dc441563de9d604571f8f9784e86a8c59359f5617d9903ae299950d1049feff8d4db9557c6bf193b1fd9bae8eabcd43e797b4c2581 5SHA512 (protobuf-python-3.5.0.tar.gz) = d641048f61b52cdf3f30730ba9c2c4d6d48fdf021fc7037bb55f87e3a4e350b47010f6eaef881b2de5fdfc7e67ed109a9529c6c75888aa6391f3a1b4a1be56e9
6Size (protobuf-python-3.4.1.tar.gz) = 4559061 bytes 6Size (protobuf-python-3.5.0.tar.gz) = 4560124 bytes
7SHA1 (patch-configure) = ec7003c29d2d3e9aeb9ea90921313e9eb68d3127 7SHA1 (patch-configure) = ec7003c29d2d3e9aeb9ea90921313e9eb68d3127
8SHA1 (patch-configure.ac) = 208a5ce72905aa95ad73ee0f751d4a58f0c37f5f 8SHA1 (patch-configure.ac) = 208a5ce72905aa95ad73ee0f751d4a58f0c37f5f
9SHA1 (patch-gmock_configure) = a39355c602366450e3cdb6bc7dbc0523fc194319 9SHA1 (patch-gmock_configure) = a39355c602366450e3cdb6bc7dbc0523fc194319
10SHA1 (patch-gmock_configure.ac) = cfd7b7c87eff4b06ce6ecb34dec046561bbdc113 10SHA1 (patch-gmock_configure.ac) = cfd7b7c87eff4b06ce6ecb34dec046561bbdc113
11SHA1 (patch-m4_acx__check__suncc.m4) = faf96ee5d305c08d30e7c7d3578896971983e1dd 11SHA1 (patch-m4_acx__check__suncc.m4) = faf96ee5d305c08d30e7c7d3578896971983e1dd
12SHA1 (patch-src_google_protobuf_message__lite.cc) = 8f2ffe07b2710de5365148153978ad6d9939f522 12SHA1 (patch-src_google_protobuf_message__lite.cc) = 8f2ffe07b2710de5365148153978ad6d9939f522
13SHA1 (patch-src_google_protobuf_stubs_atomicops.h) = 9ec851134da674980a49302e9582a432a47f7974 13SHA1 (patch-src_google_protobuf_stubs_atomicops.h) = 9ec851134da674980a49302e9582a432a47f7974
14SHA1 (patch-src_google_protobuf_stubs_atomicops__internals__arm__gcc.h) = d60c554be8ff7fc9370bb036eef9101f9a6433e3 14SHA1 (patch-src_google_protobuf_stubs_atomicops__internals__arm__gcc.h) = d60c554be8ff7fc9370bb036eef9101f9a6433e3