pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel devel/{py-,}protobuf: Update to 3.4.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/17c6e92e7b5c
branches:  trunk
changeset: 370595:17c6e92e7b5c
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Fri Oct 20 23:02:25 2017 +0000

description:
devel/{py-,}protobuf: Update to 3.4.1

Notable changes:

* C++
  - Proto3 messages are now able to preserve unknown fields.
  - Packable proto3 fields are now packed by default in serialization.

* Python
  - SerializeToString API is changed to SerializeToString(self, **kwargs).
  - Added sort_keys parameter in json format to make the output
    deterministic.

diffstat:

 devel/protobuf/Makefile.common |   4 ++--
 devel/protobuf/PLIST           |   5 ++---
 devel/protobuf/distinfo        |  10 +++++-----
 devel/py-protobuf/Makefile     |   3 +--
 devel/py-protobuf/PLIST        |   8 +++++++-
 devel/py-protobuf/distinfo     |  10 +++++-----
 6 files changed, 22 insertions(+), 18 deletions(-)

diffs (113 lines):

diff -r f538e5322c1c -r 17c6e92e7b5c devel/protobuf/Makefile.common
--- a/devel/protobuf/Makefile.common    Fri Oct 20 17:58:00 2017 +0000
+++ b/devel/protobuf/Makefile.common    Fri Oct 20 23:02:25 2017 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile.common,v 1.7 2017/05/02 10:49:30 wiz Exp $
+# $NetBSD: Makefile.common,v 1.8 2017/10/20 23:02:25 minskim Exp $
 #
 # used by devel/protobuf/Makefile
 # used by devel/py-protobuf/Makefile
 
-PROTOBUFVER=   3.3.0
+PROTOBUFVER=   3.4.1
 
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=google/}
 GITHUB_PROJECT=        protobuf
diff -r f538e5322c1c -r 17c6e92e7b5c devel/protobuf/PLIST
--- a/devel/protobuf/PLIST      Fri Oct 20 17:58:00 2017 +0000
+++ b/devel/protobuf/PLIST      Fri Oct 20 23:02:25 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2017/05/02 10:49:30 wiz Exp $
+@comment $NetBSD: PLIST,v 1.8 2017/10/20 23:02:25 minskim Exp $
 bin/protoc
 include/google/protobuf/any.h
 include/google/protobuf/any.pb.h
@@ -6,6 +6,7 @@
 include/google/protobuf/api.pb.h
 include/google/protobuf/api.proto
 include/google/protobuf/arena.h
+include/google/protobuf/arena_impl.h
 include/google/protobuf/arenastring.h
 include/google/protobuf/compiler/code_generator.h
 include/google/protobuf/compiler/command_line_interface.h
@@ -25,8 +26,6 @@
 include/google/protobuf/compiler/plugin.h
 include/google/protobuf/compiler/plugin.pb.h
 include/google/protobuf/compiler/plugin.proto
-include/google/protobuf/compiler/profile.pb.h
-include/google/protobuf/compiler/profile.proto
 include/google/protobuf/compiler/python/python_generator.h
 include/google/protobuf/compiler/ruby/ruby_generator.h
 include/google/protobuf/descriptor.h
diff -r f538e5322c1c -r 17c6e92e7b5c devel/protobuf/distinfo
--- a/devel/protobuf/distinfo   Fri Oct 20 17:58:00 2017 +0000
+++ b/devel/protobuf/distinfo   Fri Oct 20 23:02:25 2017 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.16 2017/07/01 15:26:52 jperkin Exp $
+$NetBSD: distinfo,v 1.17 2017/10/20 23:02:25 minskim Exp $
 
-SHA1 (protobuf-cpp-3.3.0.tar.gz) = 886010a222d5d52bba137ce35da369949d0e8913
-RMD160 (protobuf-cpp-3.3.0.tar.gz) = fd8611a77b5d70295ae925e3b66ff3091af3b109
-SHA512 (protobuf-cpp-3.3.0.tar.gz) = 3fbee5ebaf8aa83793af87ce593fb2511057e26251ff7276c0cb108edd8c4699cbe376e30679f23953900219d89cd13f5bf5232eb717e6ce6e702ed48dadfaa8
-Size (protobuf-cpp-3.3.0.tar.gz) = 4214662 bytes
+SHA1 (protobuf-cpp-3.4.1.tar.gz) = f5a62fa19d590525aa4338df42da375ea8912091
+RMD160 (protobuf-cpp-3.4.1.tar.gz) = 79d4802e0362b01d7ae12719143d4311281d2413
+SHA512 (protobuf-cpp-3.4.1.tar.gz) = 6189e23c7e381f62e971bd0e35ad9c3ed8effe584755357013887c6a582cb5a9a654c39affa2a073b658854138f31bfb70f89fa1df494e9386f1d64fd73d07d2
+Size (protobuf-cpp-3.4.1.tar.gz) = 4274863 bytes
 SHA1 (patch-configure) = ec7003c29d2d3e9aeb9ea90921313e9eb68d3127
 SHA1 (patch-configure.ac) = 208a5ce72905aa95ad73ee0f751d4a58f0c37f5f
 SHA1 (patch-gmock_configure) = a39355c602366450e3cdb6bc7dbc0523fc194319
diff -r f538e5322c1c -r 17c6e92e7b5c devel/py-protobuf/Makefile
--- a/devel/py-protobuf/Makefile        Fri Oct 20 17:58:00 2017 +0000
+++ b/devel/py-protobuf/Makefile        Fri Oct 20 23:02:25 2017 +0000
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.11 2017/05/12 20:11:39 leot Exp $
+# $NetBSD: Makefile,v 1.12 2017/10/20 23:02:25 minskim Exp $
 
 .include "../../devel/protobuf/Makefile.common"
 
 DISTNAME=      protobuf-python-${PROTOBUFVER}
-PKGREVISION=   1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/-python//}
 CATEGORIES+=   python
 
diff -r f538e5322c1c -r 17c6e92e7b5c devel/py-protobuf/PLIST
--- a/devel/py-protobuf/PLIST   Fri Oct 20 17:58:00 2017 +0000
+++ b/devel/py-protobuf/PLIST   Fri Oct 20 23:02:25 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2016/10/19 12:16:34 wiz Exp $
+@comment $NetBSD: PLIST,v 1.5 2017/10/20 23:02:25 minskim Exp $
 ${PYSITELIB}/google/protobuf/__init__.py
 ${PYSITELIB}/google/protobuf/__init__.pyc
 ${PYSITELIB}/google/protobuf/__init__.pyo
@@ -218,6 +218,12 @@
 ${PYSITELIB}/google/protobuf/symbol_database.py
 ${PYSITELIB}/google/protobuf/symbol_database.pyc
 ${PYSITELIB}/google/protobuf/symbol_database.pyo
+${PYSITELIB}/google/protobuf/test_messages_proto2_pb2.py
+${PYSITELIB}/google/protobuf/test_messages_proto2_pb2.pyc
+${PYSITELIB}/google/protobuf/test_messages_proto2_pb2.pyo
+${PYSITELIB}/google/protobuf/test_messages_proto3_pb2.py
+${PYSITELIB}/google/protobuf/test_messages_proto3_pb2.pyc
+${PYSITELIB}/google/protobuf/test_messages_proto3_pb2.pyo
 ${PYSITELIB}/google/protobuf/text_encoding.py
 ${PYSITELIB}/google/protobuf/text_encoding.pyc
 ${PYSITELIB}/google/protobuf/text_encoding.pyo
diff -r f538e5322c1c -r 17c6e92e7b5c devel/py-protobuf/distinfo
--- a/devel/py-protobuf/distinfo        Fri Oct 20 17:58:00 2017 +0000
+++ b/devel/py-protobuf/distinfo        Fri Oct 20 23:02:25 2017 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.10 2017/07/20 07:25:00 wiz Exp $
+$NetBSD: distinfo,v 1.11 2017/10/20 23:02:25 minskim Exp $
 
-SHA1 (protobuf-python-3.3.0.tar.gz) = 01ccddc003234d11626422b8a8bc82723a5485b1
-RMD160 (protobuf-python-3.3.0.tar.gz) = fe3ab218c8a580c50b057a36e5ab1e18d3087e0c
-SHA512 (protobuf-python-3.3.0.tar.gz) = bf1cb12524b0008016714c129f0f8605ef66b484fbe4e527b4f364b8a56ba70b046ad3c945094553ed85941a4215a1041cb0797531de7f0a620267d966fed26e
-Size (protobuf-python-3.3.0.tar.gz) = 4492367 bytes
+SHA1 (protobuf-python-3.4.1.tar.gz) = 8ffff7abd3faaf282176dd45b19d39a7c6718262
+RMD160 (protobuf-python-3.4.1.tar.gz) = 7d2c2876b7533da6c9cad8f9aa4dac71c9678494
+SHA512 (protobuf-python-3.4.1.tar.gz) = 571c7e08c3186c465e65b8dc441563de9d604571f8f9784e86a8c59359f5617d9903ae299950d1049feff8d4db9557c6bf193b1fd9bae8eabcd43e797b4c2581
+Size (protobuf-python-3.4.1.tar.gz) = 4559061 bytes
 SHA1 (patch-configure) = ec7003c29d2d3e9aeb9ea90921313e9eb68d3127
 SHA1 (patch-configure.ac) = 208a5ce72905aa95ad73ee0f751d4a58f0c37f5f
 SHA1 (patch-gmock_configure) = a39355c602366450e3cdb6bc7dbc0523fc194319



Home | Main Index | Thread Index | Old Index