Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 463561A921F for ; Fri, 18 Mar 2022 12:59:41 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 3B24A84F1C; Fri, 18 Mar 2022 12:59:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 764D984E61 for ; Fri, 18 Mar 2022 12:59:39 +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 I7BJvV63sgZl for ; Fri, 18 Mar 2022 12:59:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D0E5684C13 for ; Fri, 18 Mar 2022 12:59:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CA245FB24; Fri, 18 Mar 2022 12:59:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1647608378212350" MIME-Version: 1.0 Date: Fri, 18 Mar 2022 12:59:38 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/chat/matrix-synapse To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20220318125938.CA245FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1647608378212350 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Fri Mar 18 12:59:38 UTC 2022 Modified Files: pkgsrc/chat/matrix-synapse: MESSAGE Makefile Log Message: chat/matrix-synapse: Update to 1.54.0 (This commit message belongs with the previous commit, which had the wrong commit message due to ENOTENOUGHCOFFEE.) Upstream changes are bugfixes and Add support for MSC3202: sending one-time key counts and fallback key usage states to Application Services. (#11617) Improve the generated URL previews for some web pages. Contributed by @AndrewRyanChama. (#11985) Track cache invalidations in Prometheus metrics, as already happens for cache eviction based on size or time. (#12000) Implement experimental support for MSC3720 (account status endpoints). (#12001, #12067) Enable modules to set a custom display name when registering a user. (#12009) Advertise Matrix 1.1 and 1.2 support on /_matrix/client/versions. (#12020, (#12022) Support only the stable identifier for MSC3069's is_guest on /_matrix/client/v3/account/whoami. (#12021) Use room version 9 as the default room version (per MSC3589). (#12058) Add module callbacks to react to user deactivation status changes (i.e. deactivations and reactivations) and profile updates. (#12062) To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/chat/matrix-synapse/MESSAGE cvs rdiff -u -r1.45 -r1.46 pkgsrc/chat/matrix-synapse/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1647608378212350 Content-Disposition: inline Content-Length: 1836 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/matrix-synapse/MESSAGE diff -u pkgsrc/chat/matrix-synapse/MESSAGE:1.2 pkgsrc/chat/matrix-synapse/MESSAGE:1.3 --- pkgsrc/chat/matrix-synapse/MESSAGE:1.2 Thu Apr 15 15:54:00 2021 +++ pkgsrc/chat/matrix-synapse/MESSAGE Fri Mar 18 12:59:38 2022 @@ -1,5 +1,5 @@ =========================================================================== -$NetBSD: MESSAGE,v 1.2 2021/04/15 15:54:00 jperkin Exp $ +$NetBSD: MESSAGE,v 1.3 2022/03/18 12:59:38 gdt Exp $ To generate a Synapse configuration, run: @@ -11,6 +11,8 @@ ${PYTHONBIN} -m synapse.app.homeserver \ --generate-config \ --report-stats=no -If you want to use Synapse with SQLite3 on NetBSD, you need to add -PREFER_PKGSRC+= sqlite3 to mk.conf and rebuild databases/py-sqlite3. +The builtin SQLite3 in NetBSD lacks features needed by Synapse. To +use Synapse with SQLite3, one must build with pgksrc sqlite3, via +PREFER_PKGSRC+=sqlite3. + =========================================================================== Index: pkgsrc/chat/matrix-synapse/Makefile diff -u pkgsrc/chat/matrix-synapse/Makefile:1.45 pkgsrc/chat/matrix-synapse/Makefile:1.46 --- pkgsrc/chat/matrix-synapse/Makefile:1.45 Fri Mar 18 12:23:50 2022 +++ pkgsrc/chat/matrix-synapse/Makefile Fri Mar 18 12:59:38 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.45 2022/03/18 12:23:50 gdt Exp $ +# $NetBSD: Makefile,v 1.46 2022/03/18 12:59:38 gdt Exp $ DISTNAME= matrix-synapse-1.54.0 CATEGORIES= chat @@ -62,7 +62,7 @@ SYNAPSE_GROUP?= ${SYNAPSE_USER} SYNAPSE_DATA?= ${VARBASE}/db/matrix-synapse BUILD_DEFS+= SYNAPSE_USER SYNAPSE_GROUP SYNAPSE_DATA VARBASE -OWN_DIRS_PERMS+= ${SYNAPSE_DATA} ${SYNAPSE_USER} ${SYNAPSE_GROUP} 0770 +OWN_DIRS_PERMS+= ${SYNAPSE_DATA} ${SYNAPSE_USER} ${SYNAPSE_GROUP} 0770 PKG_USERS_VARS= SYNAPSE_USER PKG_GROUPS_VARS= SYNAPSE_GROUP --_----------=_1647608378212350--