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:           Wed Jun 26 19:49:34 UTC 2024

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

Log Message:
protobuf py-protobuf: updated to [5.]27.2

Protocol Buffers v27.2

Compiler

Avoid calling absl::InitializeLog in protoc with MSVC (aa7fcb3)

C++

Fix string_type bugs in edition 2023 (4923b8d)
Add simple conformance test that builds the old gencode against the current runtime. (9cfb59b)
Make the underlying type of the enum by 8-bits instead of using bitfields for (316f493)

Java

Cleanup imports and comments in V3 stubs. (270ca66)
Add stubs for GeneratedMessageV3, RepeatedFieldBuilderV3, SingleFieldBuilderV3 for compatibility with older <4.26.x gencode. (1e360a4)
Fix checking unknown field set empty which wasn't exposed yet in 27.x (c7a006a)
Reserialize all unresolved features using java features from the generated pool in case of descriptors from the custom pool. (2426a02)
Reparse unknown features using extension registry containing Java features. (e5ddc45)
Fix data race in crosslink. (3d71e22)
Fix delimited inheritance in all languages. (c4f359e)

Csharp

Regenerate stale files (29f1b52)
Fix delimited inheritance in all languages. (c4f359e)

Python

Fix delimited inheritance in all languages. (c4f359e)

PHP

PHP C-Extension

Regenerate stale files (29f1b52)
See also UPB changes below, which may affect PHP C-Extension.

Ruby

Ruby C-Extension

Regenerate stale files (29f1b52)
See also UPB changes below, which may affect Ruby C-Extension.

UPB (Python/PHP/Ruby C-Extension)

Fix delimited inheritance in all languages. (c4f359e)

Other

Port windows bootstrapping fix


To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 pkgsrc/devel/protobuf/Makefile
cvs rdiff -u -r1.80 -r1.81 pkgsrc/devel/protobuf/distinfo
cvs rdiff -u -r1.73 -r1.74 pkgsrc/devel/py-protobuf/Makefile
cvs rdiff -u -r1.68 -r1.69 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.79 pkgsrc/devel/protobuf/Makefile:1.80
--- pkgsrc/devel/protobuf/Makefile:1.79 Thu Jun  6 18:58:45 2024
+++ pkgsrc/devel/protobuf/Makefile      Wed Jun 26 19:49:33 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.79 2024/06/06 18:58:45 adam Exp $
+# $NetBSD: Makefile,v 1.80 2024/06/26 19:49:33 adam Exp $
 #
 # When updating this, please also update devel/py-protobuf.
 #
@@ -8,7 +8,7 @@
 # likely that any upstream release, even if apparently minor, will
 # require a recursive revbump.
 
-DISTNAME=      protobuf-27.1
+DISTNAME=      protobuf-27.2
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=protocolbuffers/}
 GITHUB_PROJECT=        protobuf

Index: pkgsrc/devel/protobuf/distinfo
diff -u pkgsrc/devel/protobuf/distinfo:1.80 pkgsrc/devel/protobuf/distinfo:1.81
--- pkgsrc/devel/protobuf/distinfo:1.80 Thu Jun  6 18:58:45 2024
+++ pkgsrc/devel/protobuf/distinfo      Wed Jun 26 19:49:33 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.80 2024/06/06 18:58:45 adam Exp $
+$NetBSD: distinfo,v 1.81 2024/06/26 19:49:33 adam Exp $
 
-BLAKE2s (protobuf-27.1.tar.gz) = 3e755aefa6f06a12ec3e956c2e0bf5f6b5aef85c50f37cea5dc5ef6157cfa0ee
-SHA512 (protobuf-27.1.tar.gz) = a34f4830fa3ddfd6e96e98c72bead23fba8966abdd687ca1f86181af1658bc4f541c75f7ba78ab66e139b180a8398735f598a1a38bdc0668154647ce00222e77
-Size (protobuf-27.1.tar.gz) = 6278488 bytes
+BLAKE2s (protobuf-27.2.tar.gz) = bb15d214794dff9a93b2efb0c5c2b536ff55c1589d12aae61d0d6a1589c1c375
+SHA512 (protobuf-27.2.tar.gz) = 664c66b62cf1ed0c65d9b910d8e67d4d5d471113697f1b8edf1573cd5c0fc8e850ac53ce984e48e6c6b9cbbefa12f8530058384e7388e65a59c1e46d03772397
+Size (protobuf-27.2.tar.gz) = 6282174 bytes

Index: pkgsrc/devel/py-protobuf/Makefile
diff -u pkgsrc/devel/py-protobuf/Makefile:1.73 pkgsrc/devel/py-protobuf/Makefile:1.74
--- pkgsrc/devel/py-protobuf/Makefile:1.73      Thu Jun  6 18:58:45 2024
+++ pkgsrc/devel/py-protobuf/Makefile   Wed Jun 26 19:49:34 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.73 2024/06/06 18:58:45 adam Exp $
+# $NetBSD: Makefile,v 1.74 2024/06/26 19:49:34 adam Exp $
 
-DISTNAME=      protobuf-5.27.1
+DISTNAME=      protobuf-5.27.2
 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.68 pkgsrc/devel/py-protobuf/distinfo:1.69
--- pkgsrc/devel/py-protobuf/distinfo:1.68      Thu Jun  6 18:58:45 2024
+++ pkgsrc/devel/py-protobuf/distinfo   Wed Jun 26 19:49:34 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.68 2024/06/06 18:58:45 adam Exp $
+$NetBSD: distinfo,v 1.69 2024/06/26 19:49:34 adam Exp $
 
-BLAKE2s (protobuf-5.27.1.tar.gz) = e7f652cec9ec5b709aa07b40c4efbcf3e4f059852eaa4d671dd92793fe7c0bcf
-SHA512 (protobuf-5.27.1.tar.gz) = 4324a73182e2cceb61a0e06aa0157d6b75024fc277e0bc23e224cf75c85ecd2eb9ada2f7cd627a691d049eb03334c4666c96573d7f38acb72ceeb69849d38d61
-Size (protobuf-5.27.1.tar.gz) = 401656 bytes
+BLAKE2s (protobuf-5.27.2.tar.gz) = 5a84a219a93024956442e2928b2d5950005dca31f4256088ef54d85070c07258
+SHA512 (protobuf-5.27.2.tar.gz) = b3afcf13e223d7e855ac0aa000cc395e3ea1301b2e3dfe3c0d5435d8031be3726e6aec1fb6228c572aa1685f75aba2d97d2c9dfdb6d9e058a2e88321d6ba9180
+Size (protobuf-5.27.2.tar.gz) = 401640 bytes



Home | Main Index | Thread Index | Old Index