pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Jul 25 12:19:13 UTC 2022

Modified Files:
        pkgsrc/devel/protobuf: Makefile distinfo
        pkgsrc/devel/py-protobuf: Makefile distinfo

Log Message:
protobuf py-protobuf: updated to [34].21.3

Protocol Buffers v21.3

C++

Add header search paths to Protobuf-C++.podspec
Fixed Visual Studio constinit errors
Fix 9947: make the ABI compatible between debug and non-debug builds

UPB

Allow empty package names (fixes behavior regression in 4.21.0)
Fix a SEGV bug when comparing a non-materialized sub-message
Fix several bugs in descriptor mapping containers (eg. descriptor.services_by_name)
for x in mapping now yields keys rather than values, to match Python conventions and the behavior of the old library.
Lookup operations now correctly reject unhashable types as map keys.
We implement repr() to use the same format as dict.
Fix maps to use the ScalarMapContainer class when appropriate
Fix bug when parsing an unknown value in a proto2 enum extension

PHP

Add "readonly" as a keyword for PHP and add previous classnames to descriptor pool

Python

Make //:protobuf_python and //:well_known_types_py_pb2 public


To generate a diff of this commit:
cvs rdiff -u -r1.57 -r1.58 pkgsrc/devel/protobuf/Makefile
cvs rdiff -u -r1.64 -r1.65 pkgsrc/devel/protobuf/distinfo
cvs rdiff -u -r1.54 -r1.55 pkgsrc/devel/py-protobuf/Makefile
cvs rdiff -u -r1.50 -r1.51 pkgsrc/devel/py-protobuf/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/protobuf/Makefile
diff -u pkgsrc/devel/protobuf/Makefile:1.57 pkgsrc/devel/protobuf/Makefile:1.58
--- pkgsrc/devel/protobuf/Makefile:1.57 Mon Jul 18 14:19:52 2022
+++ pkgsrc/devel/protobuf/Makefile      Mon Jul 25 12:19:13 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.57 2022/07/18 14:19:52 wiz Exp $
+# $NetBSD: Makefile,v 1.58 2022/07/25 12:19:13 adam Exp $
 #
 # When updating this, please also update devel/py-protobuf
 #
@@ -7,13 +7,13 @@
 # from before and after, and do a recursive PKGREVISION
 # bump if necessary
 
-DISTNAME=      protobuf-cpp-3.21.2
+DISTNAME=      protobuf-cpp-3.21.3
 PKGNAME=       ${DISTNAME:S/-cpp//}
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=protocolbuffers/}
 GITHUB_PROJECT=        protobuf
 # attention, does not match version above!
-GITHUB_RELEASE=        v21.2
+GITHUB_RELEASE=        v21.3
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      https://github.com/protocolbuffers/protobuf

Index: pkgsrc/devel/protobuf/distinfo
diff -u pkgsrc/devel/protobuf/distinfo:1.64 pkgsrc/devel/protobuf/distinfo:1.65
--- pkgsrc/devel/protobuf/distinfo:1.64 Mon Jul 18 14:19:52 2022
+++ pkgsrc/devel/protobuf/distinfo      Mon Jul 25 12:19:13 2022
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.64 2022/07/18 14:19:52 wiz Exp $
+$NetBSD: distinfo,v 1.65 2022/07/25 12:19:13 adam Exp $
 
-BLAKE2s (protobuf-cpp-3.21.2.tar.gz) = 85ef70b1de4ca3ea97b9c88705c2afdc7febc750a7be87b3a258ea30f1ce2a6d
-SHA512 (protobuf-cpp-3.21.2.tar.gz) = 2619b94871c2676d19a97bd5c4ead51daf4385fec67a96fa590e74ee4de3c49ba668ca108170f4dc778790b8d3033c2a7e41afdeebb986f07488ef80b7df3fb6
-Size (protobuf-cpp-3.21.2.tar.gz) = 4838235 bytes
+BLAKE2s (protobuf-cpp-3.21.3.tar.gz) = 4fe984a4b67af744fb91814c0c0bbdafd9d8f54f327aa5e7f7fb450a69df8518
+SHA512 (protobuf-cpp-3.21.3.tar.gz) = a906fe929bb6a1714ec487bcbd078bbfff1f862b7de321dfa5d55969b061089d118a23a3647ccebf634815669af84c7b68087cc6dab713deaf3618586df046a5
+Size (protobuf-cpp-3.21.3.tar.gz) = 4834807 bytes
 SHA1 (patch-configure) = e9953648e5b3df015be007c1c424a564d1eb2bef
 SHA1 (patch-third__party_googletest_googlemock_configure) = 9afd8358eef2dffe7639ca70081f60535c116855

Index: pkgsrc/devel/py-protobuf/Makefile
diff -u pkgsrc/devel/py-protobuf/Makefile:1.54 pkgsrc/devel/py-protobuf/Makefile:1.55
--- pkgsrc/devel/py-protobuf/Makefile:1.54      Mon Jul 18 14:19:52 2022
+++ pkgsrc/devel/py-protobuf/Makefile   Mon Jul 25 12:19:13 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.54 2022/07/18 14:19:52 wiz Exp $
+# $NetBSD: Makefile,v 1.55 2022/07/25 12:19:13 adam Exp $
 
-DISTNAME=      protobuf-4.21.2
+DISTNAME=      protobuf-4.21.3
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/protobuf/}

Index: pkgsrc/devel/py-protobuf/distinfo
diff -u pkgsrc/devel/py-protobuf/distinfo:1.50 pkgsrc/devel/py-protobuf/distinfo:1.51
--- pkgsrc/devel/py-protobuf/distinfo:1.50      Mon Jul 18 14:19:52 2022
+++ pkgsrc/devel/py-protobuf/distinfo   Mon Jul 25 12:19:13 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.50 2022/07/18 14:19:52 wiz Exp $
+$NetBSD: distinfo,v 1.51 2022/07/25 12:19:13 adam Exp $
 
-BLAKE2s (protobuf-4.21.2.tar.gz) = 6dd3380f8567c92fa716dd607e5a2782dde341ba05c922c8e579dbc109237f63
-SHA512 (protobuf-4.21.2.tar.gz) = 58168d01de6b6ed4a36b2d97d7413185273633a08319d8f52ca18d3236be6597e167b803d432f3d6caa16314400102dd524313936f4f279c19aa665f1748f8eb
-Size (protobuf-4.21.2.tar.gz) = 220331 bytes
+BLAKE2s (protobuf-4.21.3.tar.gz) = 9e66a6cd8114781a0deb7fb5ce9e756d38bd43f17125f1d4488a15f00e8f6699
+SHA512 (protobuf-4.21.3.tar.gz) = 51b16bbd0b4a9ec44769763ef620b82f1b33282c139b898be494004602e09b8bafce2406a05ead6b25db83304c82891622796d430f2a6750c3d4e0f0d3b683b4
+Size (protobuf-4.21.3.tar.gz) = 220368 bytes



Home | Main Index | Thread Index | Old Index