git: 5e78c94768c5 - main - devel/py-jupyter-collaboration: Update to 2.1.2

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Mon, 29 Jul 2024 12:46:28 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=5e78c94768c5e8a35ab313db91babc0b589f2efe

commit 5e78c94768c5e8a35ab313db91babc0b589f2efe
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2024-07-29 12:39:36 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2024-07-29 12:39:36 +0000

    devel/py-jupyter-collaboration: Update to 2.1.2
    
    Changes:        https://github.com/jupyterlab/jupyter-collaboration/releases
                    https://jupyterlab-realtime-collaboration.readthedocs.io/en/latest/changelog.html
---
 devel/py-jupyter-collaboration/Makefile           |  3 +-
 devel/py-jupyter-collaboration/distinfo           |  6 ++--
 devel/py-jupyter-collaboration/files/patch-pycrdt | 36 -----------------------
 3 files changed, 4 insertions(+), 41 deletions(-)

diff --git a/devel/py-jupyter-collaboration/Makefile b/devel/py-jupyter-collaboration/Makefile
index a1b58887e942..e3e602f81fed 100644
--- a/devel/py-jupyter-collaboration/Makefile
+++ b/devel/py-jupyter-collaboration/Makefile
@@ -1,6 +1,5 @@
 PORTNAME=	jupyter-collaboration
-PORTVERSION=	2.1.1
-PORTREVISION=	2
+PORTVERSION=	2.1.2
 CATEGORIES=	devel python
 MASTER_SITES=	PYPI \
 		https://github.com/jupyterlab/jupyter-collaboration/releases/download/v${PORTVERSION}/
diff --git a/devel/py-jupyter-collaboration/distinfo b/devel/py-jupyter-collaboration/distinfo
index b434894d0f15..b1accfc74d40 100644
--- a/devel/py-jupyter-collaboration/distinfo
+++ b/devel/py-jupyter-collaboration/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1715842696
-SHA256 (jupyter_collaboration-2.1.1.tar.gz) = 4f50c25c6d81126c16deaf92d2bd78a39b2fcb86690dce696b4006b740d71c1f
-SIZE (jupyter_collaboration-2.1.1.tar.gz) = 4740027
+TIMESTAMP = 1722249036
+SHA256 (jupyter_collaboration-2.1.2.tar.gz) = b8b6cd633b336922e753855c683af928171137e5e6fc1e3bd6cf96f6a2626ec9
+SIZE (jupyter_collaboration-2.1.2.tar.gz) = 4740189
diff --git a/devel/py-jupyter-collaboration/files/patch-pycrdt b/devel/py-jupyter-collaboration/files/patch-pycrdt
deleted file mode 100644
index 203290ab7562..000000000000
--- a/devel/py-jupyter-collaboration/files/patch-pycrdt
+++ /dev/null
@@ -1,36 +0,0 @@
-Obtained from:	https://github.com/jupyterlab/jupyter-collaboration/commit/86ef807c45658b91d865fc821de54839fd2522ba
-
---- jupyter_collaboration/handlers.py.orig	2020-02-02 00:00:00 UTC
-+++ jupyter_collaboration/handlers.py
-@@ -14,9 +14,9 @@ from jupyter_ydoc import ydocs as YDOCS
- from jupyter_server.base.handlers import APIHandler, JupyterHandler
- from jupyter_server.utils import ensure_async
- from jupyter_ydoc import ydocs as YDOCS
-+from pycrdt import YMessageType, write_var_uint
- from pycrdt_websocket.websocket_server import YRoom
- from pycrdt_websocket.ystore import BaseYStore
--from pycrdt_websocket.yutils import YMessageType, write_var_uint
- from tornado import web
- from tornado.websocket import WebSocketHandler
- 
---- pyproject.toml.orig	2020-02-02 00:00:00 UTC
-+++ pyproject.toml
-@@ -29,7 +29,8 @@ dependencies = [
- dependencies = [
-     "jupyter_server>=2.0.0,<3.0.0",
-     "jupyter_ydoc>=2.0.0,<3.0.0",
--    "pycrdt-websocket>=0.13.4,<0.14.0",
-+    "pycrdt",
-+    "pycrdt-websocket>=0.14.0,<0.15.0",
-     "jupyter_events>=0.10.0",
-     "jupyter_server_fileid>=0.7.0,<1",
-     "jsonschema>=4.18.0"
-@@ -143,6 +144,8 @@ filterwarnings = [
-     "ignore:can't resolve package from __spec__ or __package__, falling back on __name__ and __path__:ImportWarning",
-     # see https://github.com/dateutil/dateutil/issues/1314
-     "ignore:.*datetime.utcfromtimestamp\\(\\) is deprecated.*:DeprecationWarning:",
-+    # From anyio https://github.com/agronholm/anyio/pull/715
-+    'ignore:Unclosed <MemoryObjectSendStream>:ResourceWarning',
- ]
- 
- [tool.mypy]