summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorgdt <gdt@pkgsrc.org>2022-03-18 12:59:38 +0000
committergdt <gdt@pkgsrc.org>2022-03-18 12:59:38 +0000
commitb844ab406c0011412d220dde7560b623574874d5 (patch)
treebae747aea49d1d4bc5c6fd3ddb1e2e4e16759af9 /chat
parent979a4c6a882c6447e80995a77ef8df29b8d5538b (diff)
downloadpkgsrc-b844ab406c0011412d220dde7560b623574874d5.tar.gz
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)
Diffstat (limited to 'chat')
-rw-r--r--chat/matrix-synapse/MESSAGE8
-rw-r--r--chat/matrix-synapse/Makefile4
2 files changed, 7 insertions, 5 deletions
diff --git a/chat/matrix-synapse/MESSAGE b/chat/matrix-synapse/MESSAGE
index df18347aa1c..ce2f7bd0393 100644
--- a/chat/matrix-synapse/MESSAGE
+++ b/chat/matrix-synapse/MESSAGE
@@ -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.
+
===========================================================================
diff --git a/chat/matrix-synapse/Makefile b/chat/matrix-synapse/Makefile
index ce67bda1482..0e2ebe10152 100644
--- a/chat/matrix-synapse/Makefile
+++ b/chat/matrix-synapse/Makefile
@@ -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