pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/protobuf-c



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Nov 26 06:06:28 UTC 2023

Modified Files:
        pkgsrc/devel/protobuf-c: Makefile distinfo
Removed Files:
        pkgsrc/devel/protobuf-c/patches: patch-build-cmake_CMakeLists.txt
            patch-configure.ac patch-protoc-c_c__bytes__field.h
            patch-protoc-c_c__enum.h patch-protoc-c_c__enum__field.h
            patch-protoc-c_c__extension.h patch-protoc-c_c__field.h
            patch-protoc-c_c__file.cc patch-protoc-c_c__file.h
            patch-protoc-c_c__generator.h patch-protoc-c_c__helpers.h
            patch-protoc-c_c__message.cc patch-protoc-c_c__message.h
            patch-protoc-c_c__message__field.h
            patch-protoc-c_c__primitive__field.cc
            patch-protoc-c_c__primitive__field.h patch-protoc-c_c__service.h
            patch-protoc-c_c__string__field.h

Log Message:
protobuf-c: update to 1.5.0.

What's Changed

    Makefile.am: change link order by @franksinankaya in #486
    GitHub actions fail on Windows due to missing unzip command by @britzl in #525
    Export and install CMake targets by @morrisonlevi in #472
    Use CMAKE_CURRENT_BINARY_DIR instead of CMAKE_BINARY_DIR by @KivApple in #482
    remove deprecated functionality by @aviborg in #542
    Avoid "unused variable" compiler warning by @rgriege in #545
    Update autotools by @AtariDreams in #550
    Support for new Google protobuf 22.x, 23.x releases by @edmonds in #673
    Miscellaneous fixes by @edmonds in #675
    Remove protobuf 2.x support by @edmonds in #676
    Silence some compiler diagnostics by @edmonds in #677
    Fixing MSVC build for Msbuild and Makefile generators by @MiguelBarro in #685


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/devel/protobuf-c/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/protobuf-c/distinfo
cvs rdiff -u -r1.1 -r0 \
    pkgsrc/devel/protobuf-c/patches/patch-build-cmake_CMakeLists.txt \
    pkgsrc/devel/protobuf-c/patches/patch-configure.ac \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__bytes__field.h \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__enum.h \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__enum__field.h \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__extension.h \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__generator.h \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__helpers.h \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__message__field.h \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__primitive__field.cc \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__primitive__field.h \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__service.h \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__string__field.h
cvs rdiff -u -r1.3 -r0 \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__field.h \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__file.cc \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__file.h \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__message.cc \
    pkgsrc/devel/protobuf-c/patches/patch-protoc-c_c__message.h

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-c/Makefile
diff -u pkgsrc/devel/protobuf-c/Makefile:1.17 pkgsrc/devel/protobuf-c/Makefile:1.18
--- pkgsrc/devel/protobuf-c/Makefile:1.17       Wed Nov 15 18:14:42 2023
+++ pkgsrc/devel/protobuf-c/Makefile    Sun Nov 26 06:06:28 2023
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2023/11/15 18:14:42 wiz Exp $
+# $NetBSD: Makefile,v 1.18 2023/11/26 06:06:28 wiz Exp $
 
-DISTNAME=      protobuf-c-1.4.1
-PKGREVISION=   3
+DISTNAME=      protobuf-c-1.5.0
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=protobuf-c/}
 GITHUB_RELEASE=        v${PKGVERSION_NOREV}
@@ -11,17 +10,14 @@ HOMEPAGE=   https://github.com/protobuf-c/
 COMMENT=       Protocol Buffers implementation in C
 LICENSE=       modified-bsd
 
-USE_LANGUAGES=         c c++14
+USE_LANGUAGES=         c c++
+USE_CXX_FEATURES+=     c++17
 USE_LIBTOOL=           yes
-USE_TOOLS+=            gmake pkg-config autoconf automake autoreconf
+USE_TOOLS+=            gmake pkg-config
 GNU_CONFIGURE=         yes
 PKGCONFIG_OVERRIDE+=   protobuf-c/libprotobuf-c.pc.in
 TEST_TARGET=           check
 
-pre-configure:
-       ${LN} -s ${BUILDLINK_DIR}/include/google ${WRKSRC}/google
-       cd ${WRKSRC} && autoreconf -fiv
-
 .include "../../devel/protobuf/buildlink3.mk"
 .include "../../mk/atomic64.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/protobuf-c/distinfo
diff -u pkgsrc/devel/protobuf-c/distinfo:1.13 pkgsrc/devel/protobuf-c/distinfo:1.14
--- pkgsrc/devel/protobuf-c/distinfo:1.13       Fri Nov  3 13:11:25 2023
+++ pkgsrc/devel/protobuf-c/distinfo    Sun Nov 26 06:06:28 2023
@@ -1,23 +1,5 @@
-$NetBSD: distinfo,v 1.13 2023/11/03 13:11:25 wiz Exp $
+$NetBSD: distinfo,v 1.14 2023/11/26 06:06:28 wiz Exp $
 
-BLAKE2s (protobuf-c-1.4.1.tar.gz) = 3585955198453b1e7a80392379219df5338b8e63e0f7756fa02264ab0bcc7d0b
-SHA512 (protobuf-c-1.4.1.tar.gz) = 190a4aa5c607853e6bf860b0974deb21e4f7f6209e810251eaca9612b59ea676779b0ca217fb1572914ffb8de3315a7d24f162b14d447ee671a9adc5b1271e41
-Size (protobuf-c-1.4.1.tar.gz) = 513596 bytes
-SHA1 (patch-build-cmake_CMakeLists.txt) = fedaf0ceb1c2b0736d1e614af343ecbf30000107
-SHA1 (patch-configure.ac) = 24b08254e94502c85948a7c984fa36dcd9ea6aa4
-SHA1 (patch-protoc-c_c__bytes__field.h) = 902f4dddb997240d93f3dcc529f9022f1b43d093
-SHA1 (patch-protoc-c_c__enum.h) = 0508bf6c0335731446aebf45d6b9b95c5891023e
-SHA1 (patch-protoc-c_c__enum__field.h) = 9e3d5a18d546c31f06cc889204a37cc5e1035fbc
-SHA1 (patch-protoc-c_c__extension.h) = 22135ae90c6a83572ab128f90c0c833528f33e97
-SHA1 (patch-protoc-c_c__field.h) = 8a36dd7ad664ddca6a3b1278ac8bf26c22cd6ab5
-SHA1 (patch-protoc-c_c__file.cc) = 21bae3e4ca0932bc77ec82e4b06850e2e879e3bf
-SHA1 (patch-protoc-c_c__file.h) = 4fdde8e54fa980065b2c4577fd735cbdfb31df0a
-SHA1 (patch-protoc-c_c__generator.h) = 9666ea994c2a80dc4469cfa3258120943eabd0b3
-SHA1 (patch-protoc-c_c__helpers.h) = 6eabefa37418bae0ad5dbd618381ecc2b5eb1a4d
-SHA1 (patch-protoc-c_c__message.cc) = 8fd07301ef5115568928dd82ac14f8b0c98157ed
-SHA1 (patch-protoc-c_c__message.h) = 1532a8f82cbccecfaff50d47418316dca8bfa3ad
-SHA1 (patch-protoc-c_c__message__field.h) = 99effa3dd97a7b5c18606c055bd07ecd7f1cacea
-SHA1 (patch-protoc-c_c__primitive__field.cc) = fc911511a33c1052df7e44eca395388ad5f57342
-SHA1 (patch-protoc-c_c__primitive__field.h) = 884876a9224f1eb1be9e31dbaac0ea1b4e1e6ba1
-SHA1 (patch-protoc-c_c__service.h) = 1d75f64e5dc7bf3b26425871d89088a4b8cf5362
-SHA1 (patch-protoc-c_c__string__field.h) = 224972b17f1c959a6dc991e4852c401d8419a459
+BLAKE2s (protobuf-c-1.5.0.tar.gz) = 7f89b0a27fe78e2bd91b67013315845a236dd9787121a7c5f1989850639e9573
+SHA512 (protobuf-c-1.5.0.tar.gz) = 175c9fc901cab88308730eea982dd62b1e0decdceb80aa53be163f17a440b4acecb834a784beab5cd71186413a322a323f4539758a8727ca51801cf92f9bd3da
+Size (protobuf-c-1.5.0.tar.gz) = 507251 bytes



Home | Main Index | Thread Index | Old Index