Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 699D184FBC for ; Sun, 6 Aug 2023 20:20:19 +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 M7coHmTlrFri for ; Sun, 6 Aug 2023 20:20:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id C5E3C84D91 for ; Sun, 6 Aug 2023 20:20:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B70D2FBDB; Sun, 6 Aug 2023 20:20:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1691353218291490" MIME-Version: 1.0 Date: Sun, 6 Aug 2023 20:20:18 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/net/websocketpp To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230806202018.B70D2FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1691353218291490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Aug 6 20:20:18 UTC 2023 Modified Files: pkgsrc/net/websocketpp: Makefile distinfo Log Message: websocketpp: updated to 0.8.2 WebSocket++/0.8.2 This is a bug fix patch that fixes a major issue affecting compatibility with newer versions of the Asio library (including the one bundled in Boost 1.70 and higher). It also includes some documentation, cmake, and OpenSSL compatibility fixes. WebSocket++/0.8.1 This is a bug fix patch to fix a major test suite regression introduced in 0.8.0 and adjust installation behavior to make downstream packaging easier. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/websocketpp/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/websocketpp/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1691353218291490 Content-Disposition: inline Content-Length: 2025 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/websocketpp/Makefile diff -u pkgsrc/net/websocketpp/Makefile:1.1 pkgsrc/net/websocketpp/Makefile:1.2 --- pkgsrc/net/websocketpp/Makefile:1.1 Tue Mar 14 13:09:37 2017 +++ pkgsrc/net/websocketpp/Makefile Sun Aug 6 20:20:18 2023 @@ -1,16 +1,18 @@ -# $NetBSD: Makefile,v 1.1 2017/03/14 13:09:37 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2023/08/06 20:20:18 adam Exp $ -DISTNAME= websocketpp-0.7.0 +DISTNAME= websocketpp-0.8.2 CATEGORIES= net devel MASTER_SITES= ${MASTER_SITE_GITHUB:=zaphoyd/} MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://www.zaphoyd.com/websocketpp COMMENT= Header-only C++ library that implements the WebSocket protocol -#LICENSE= basically BSD, but includes other free software, see COPYING +LICENSE= modified-bsd # includes other free software, see COPYING -USE_CMAKE= yes USE_LANGUAGES= c c++ +USE_CXX_FEATURES= c++11 + .include "../../devel/boost-headers/buildlink3.mk" +.include "../../devel/cmake/build.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/net/websocketpp/distinfo diff -u pkgsrc/net/websocketpp/distinfo:1.3 pkgsrc/net/websocketpp/distinfo:1.4 --- pkgsrc/net/websocketpp/distinfo:1.3 Tue Oct 26 11:07:09 2021 +++ pkgsrc/net/websocketpp/distinfo Sun Aug 6 20:20:18 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2021/10/26 11:07:09 nia Exp $ +$NetBSD: distinfo,v 1.4 2023/08/06 20:20:18 adam Exp $ -BLAKE2s (websocketpp-0.7.0.tar.gz) = ac998ee5546aac3b55a8b8d020a7f6faaefe73847701c1ebbe1e4b0b5f56bfde -SHA512 (websocketpp-0.7.0.tar.gz) = 91a86d4f5120db3f474169bb146f865f82167b1e9eedabec8793b31005e4ce3d22083283bc1b9f9e37fa0da835addcb2b68260a27c753852c06b3b1bb2f3c12e -Size (websocketpp-0.7.0.tar.gz) = 682271 bytes +BLAKE2s (websocketpp-0.8.2.tar.gz) = 21287db3aadaf0dd63bbb4b937dc8f373fe053a5bdf73beb509b19a100a9315c +SHA512 (websocketpp-0.8.2.tar.gz) = b2afc63edb69ce81a3a6c06b3d857b3e8820f0e22300ac32bb20ab30ff07bd58bd5ada3e526ed8ab52de934e0e3a26cad2118b0e68ecf3e5e9e8d7101348fd06 +Size (websocketpp-0.8.2.tar.gz) = 701364 bytes --_----------=_1691353218291490--