Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C20CA84ED2 for ; Thu, 30 Nov 2023 10:35:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id wqmUyx0Coq1Y for ; Thu, 30 Nov 2023 10:35:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 28EA884EAA for ; Thu, 30 Nov 2023 10:35:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1C3AEFA40; Thu, 30 Nov 2023 10:35:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170134050375600" MIME-Version: 1.0 Date: Thu, 30 Nov 2023 10:35:03 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc/chat/dino To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20231130103503.1C3AEFA40@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_170134050375600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Thu Nov 30 10:35:03 UTC 2023 Modified Files: pkgsrc/chat/dino: Makefile distinfo Log Message: Update chat/dino to version 0.3.1 to fix crash. This enables support for libsoup3. Use libsoup3 instead of libsoup2 so that no libsoup2 dependency exists, this fixes the crash on startup described in pkg/57733 . The committer has tested to start dino and it starts up with this update. Closes PR pkg/57733 To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 pkgsrc/chat/dino/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/chat/dino/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170134050375600 Content-Disposition: inline Content-Length: 2175 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/dino/Makefile diff -u pkgsrc/chat/dino/Makefile:1.32 pkgsrc/chat/dino/Makefile:1.33 --- pkgsrc/chat/dino/Makefile:1.32 Mon Nov 27 11:16:40 2023 +++ pkgsrc/chat/dino/Makefile Thu Nov 30 10:35:02 2023 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.32 2023/11/27 11:16:40 jperkin Exp $ +# $NetBSD: Makefile,v 1.33 2023/11/30 10:35:02 nros Exp $ -DISTNAME= dino-0.3.0 -PKGREVISION= 16 +DISTNAME= dino-0.3.1 CATEGORIES= chat MASTER_SITES= ${MASTER_SITE_GITHUB:=dino/} GITHUB_PROJECT= dino @@ -17,6 +16,8 @@ USE_LANGUAGES= c c++ USE_CMAKE= yes USE_PKGLOCALEDIR= yes +CMAKE_ARGS+= -DUSE_SOUP3:BOOL=ON + # Failed with exports/xmpp-vala.vapi target as of 0.1.0. MAKE_JOBS_SAFE= no @@ -31,7 +32,7 @@ BUILDLINK_API_DEPENDS.sqlite3+= sqlite3> .include "../../lang/vala/buildlink3.mk" .include "../../multimedia/gst-plugins1-base/buildlink3.mk" .include "../../net/libnice/buildlink3.mk" -.include "../../net/libsoup/buildlink3.mk" +.include "../../net/libsoup3/buildlink3.mk" .include "../../security/gpgme/buildlink3.mk" .include "../../security/gnutls/buildlink3.mk" .include "../../security/libgcrypt/buildlink3.mk" Index: pkgsrc/chat/dino/distinfo diff -u pkgsrc/chat/dino/distinfo:1.8 pkgsrc/chat/dino/distinfo:1.9 --- pkgsrc/chat/dino/distinfo:1.8 Sun Feb 27 21:56:53 2022 +++ pkgsrc/chat/dino/distinfo Thu Nov 30 10:35:02 2023 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2022/02/27 21:56:53 nia Exp $ +$NetBSD: distinfo,v 1.9 2023/11/30 10:35:02 nros Exp $ -BLAKE2s (dino-0.3.0.tar.gz) = dfc4e80012be78b746797d2b2bd2a187972aaf7cd94f8bf2d0181fc5eb617a71 -SHA512 (dino-0.3.0.tar.gz) = e3d885208451b00b0416a1401780a94a169fb1179b2f609f7965e3445873d6b72ded84cb471d534616892ec89b5edcd6701fc97c36f19d690f4b894399000515 -Size (dino-0.3.0.tar.gz) = 804810 bytes +BLAKE2s (dino-0.3.1.tar.gz) = 9ea52fa6960dc8bc3c2ec4c63f471a1bcbe7c93456979e0efa039580fe7040a2 +SHA512 (dino-0.3.1.tar.gz) = 971ac9e9c86187a5dc39453a656b9551a94a51bfefa25a2dabc0610e93ae70d9c5b1a9214633339bf2056ba216214766060c08f740e2f7007ed11e7ea914af2a +Size (dino-0.3.1.tar.gz) = 806613 bytes SHA1 (patch-main_CMakeLists.txt) = 8e6ddf182ba3b60d14d41b6dd902d473ae3b9ffe --_----------=_170134050375600--