Received: by mail.netbsd.org (Postfix, from userid 605) id 1FADE84D36; Thu, 2 Feb 2023 13:10:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 50F7984D31 for ; Thu, 2 Feb 2023 13:10:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Uy7WsvenYF9Y for ; Thu, 2 Feb 2023 13:10:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9DB6F84C71 for ; Thu, 2 Feb 2023 13:10:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 96C42FA90; Thu, 2 Feb 2023 13:10:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167534340518460" MIME-Version: 1.0 Date: Thu, 2 Feb 2023 13:10:05 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/net/rabbitmq-c To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230202131005.96C42FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167534340518460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Feb 2 13:10:05 UTC 2023 Modified Files: pkgsrc/net/rabbitmq-c: Makefile PLIST distinfo Log Message: rabbitmq-c: updated to 0.12.0 rabbitmq-c v0.12.0 rabbitmq-c now compiles as C99 CMake 3.12 is new minimum required version CMake -DBUILD_TESTS renamed to -DBUILD_TESTING CMake -DBUILD_EXAMPLES now defaults to OFF CMake -DBUILD_TOOLS now defaults to OFF Unix library version now matches the release version, SONAME remains the same. Modernized CMake scripts to better adopt modern standards Public headers have moved to rabbitmq-c/ directory Dropped support for MSVC older than VS 2010 Dropped support for OpenSSL v1.1.0 and older Minimum SSL version set to TLSv1.2 Updated to RabbitMQ framing to v3.8.19 To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/net/rabbitmq-c/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/net/rabbitmq-c/PLIST cvs rdiff -u -r1.12 -r1.13 pkgsrc/net/rabbitmq-c/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167534340518460 Content-Disposition: inline Content-Length: 3387 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/rabbitmq-c/Makefile diff -u pkgsrc/net/rabbitmq-c/Makefile:1.18 pkgsrc/net/rabbitmq-c/Makefile:1.19 --- pkgsrc/net/rabbitmq-c/Makefile:1.18 Mon Apr 5 11:48:43 2021 +++ pkgsrc/net/rabbitmq-c/Makefile Thu Feb 2 13:10:05 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2021/04/05 11:48:43 adam Exp $ +# $NetBSD: Makefile,v 1.19 2023/02/02 13:10:05 adam Exp $ -DISTNAME= rabbitmq-c-0.11.0 +DISTNAME= rabbitmq-c-0.12.0 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=alanxz/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -10,15 +10,15 @@ HOMEPAGE= https://github.com/alanxz/rabb COMMENT= C-language AMQP client library for use with AMQP servers LICENSE= mit -BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto +BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto -USE_CMAKE= yes -USE_LANGUAGES= c c99 -USE_TOOLS+= pkg-config -CMAKE_ARGS+= -DBUILD_TOOLS=ON -CMAKE_ARGS+= -DBUILD_TOOLS_DOCS=ON -CMAKE_ARGS+= -DENABLE_SSL_SUPPORT=ON -TEST_TARGET= test +USE_CMAKE= yes +USE_LANGUAGES= c c99 +USE_TOOLS+= pkg-config +CMAKE_ARGS+= -DBUILD_TOOLS=ON +CMAKE_ARGS+= -DBUILD_TOOLS_DOCS=ON +CMAKE_ARGS+= -DENABLE_SSL_SUPPORT=ON +TEST_TARGET= test .include "../../devel/popt/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" Index: pkgsrc/net/rabbitmq-c/PLIST diff -u pkgsrc/net/rabbitmq-c/PLIST:1.10 pkgsrc/net/rabbitmq-c/PLIST:1.11 --- pkgsrc/net/rabbitmq-c/PLIST:1.10 Mon Apr 5 11:48:43 2021 +++ pkgsrc/net/rabbitmq-c/PLIST Thu Feb 2 13:10:05 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.10 2021/04/05 11:48:43 adam Exp $ +@comment $NetBSD: PLIST,v 1.11 2023/02/02 13:10:05 adam Exp $ bin/amqp-consume bin/amqp-declare-queue bin/amqp-delete-queue @@ -8,14 +8,19 @@ include/amqp.h include/amqp_framing.h include/amqp_ssl_socket.h include/amqp_tcp_socket.h +include/rabbitmq-c/amqp.h +include/rabbitmq-c/export.h +include/rabbitmq-c/framing.h +include/rabbitmq-c/ssl_socket.h +include/rabbitmq-c/tcp_socket.h lib/cmake/rabbitmq-c/rabbitmq-c-config-version.cmake lib/cmake/rabbitmq-c/rabbitmq-c-config.cmake lib/cmake/rabbitmq-c/rabbitmq-targets-release.cmake lib/cmake/rabbitmq-c/rabbitmq-targets.cmake lib/librabbitmq.a lib/librabbitmq.so +lib/librabbitmq.so.${PKGVERSION} lib/librabbitmq.so.4 -lib/librabbitmq.so.4.5.0 lib/pkgconfig/librabbitmq.pc man/man1/amqp-consume.1 man/man1/amqp-declare-queue.1 Index: pkgsrc/net/rabbitmq-c/distinfo diff -u pkgsrc/net/rabbitmq-c/distinfo:1.12 pkgsrc/net/rabbitmq-c/distinfo:1.13 --- pkgsrc/net/rabbitmq-c/distinfo:1.12 Tue Oct 26 11:06:47 2021 +++ pkgsrc/net/rabbitmq-c/distinfo Thu Feb 2 13:10:05 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.12 2021/10/26 11:06:47 nia Exp $ +$NetBSD: distinfo,v 1.13 2023/02/02 13:10:05 adam Exp $ -BLAKE2s (rabbitmq-c-0.11.0.tar.gz) = 37182f1c9e819bea9dc033cb593788d2109dd654505253d168d21b6592c5a5b7 -SHA512 (rabbitmq-c-0.11.0.tar.gz) = 0c3dbb6e2b862e9f25e3f76df798ea272bbd81de2865950b95adf1f1e5791eb20d7c9d5a76cb7d2fda54bad5f12bdf69cbfa7e9fd1afdede6f9ec729ca2287de -Size (rabbitmq-c-0.11.0.tar.gz) = 145638 bytes +BLAKE2s (rabbitmq-c-0.12.0.tar.gz) = b4b5e7b4a9bd9bf78b63f61091df9c1263b1b35fa7e09a1571983531e5c38615 +SHA512 (rabbitmq-c-0.12.0.tar.gz) = 2cefe12133966cb80fd352415a6c618ed986381978cd8c92bd6bf555318ad1a61e91ce9c4c1fce882ef206758ba57356f1a22983f63b602a44e16f78627437ff +Size (rabbitmq-c-0.12.0.tar.gz) = 127199 bytes --_----------=_167534340518460--