pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/net/py-magic-wormhole-mailbox-server net/py-magic-worm...
details: https://anonhg.NetBSD.org/pkgsrc/rev/744e083c3daa
branches: trunk
changeset: 455068:744e083c3daa
user: wiz <wiz%pkgsrc.org@localhost>
date: Sun Jun 27 16:33:17 2021 +0000
description:
net/py-magic-wormhole-mailbox-server: import py-magic-wormhole-mailbox-server-0.4.1
This repository holds the code for the main server that Magic-Wormhole
clients connect to. The server performs store-and-forward delivery
for small key-exchange and control messages. Bulk data is sent over
a direct TCP connection, or through a transit-relay.
Clients connect with WebSockets, for low-latency delivery in the
happy case where both clients are attached at the same time. Message
are stored to enable non-simultaneous clients to make forward
progress. The server uses a small SQLite database for persistence
(and clients will reconnect automatically, allowing the server to
be rebooted without losing state). An optional "usage DB" tracks
historical activity for status monitoring and operational maintenance.
diffstat:
net/py-magic-wormhole-mailbox-server/DESCR | 12 ++++
net/py-magic-wormhole-mailbox-server/Makefile | 23 ++++++++
net/py-magic-wormhole-mailbox-server/PLIST | 76 +++++++++++++++++++++++++++
net/py-magic-wormhole-mailbox-server/distinfo | 6 ++
4 files changed, 117 insertions(+), 0 deletions(-)
diffs (133 lines):
diff -r 13ace5b91725 -r 744e083c3daa net/py-magic-wormhole-mailbox-server/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/py-magic-wormhole-mailbox-server/DESCR Sun Jun 27 16:33:17 2021 +0000
@@ -0,0 +1,12 @@
+This repository holds the code for the main server that Magic-Wormhole
+clients connect to. The server performs store-and-forward delivery
+for small key-exchange and control messages. Bulk data is sent over
+a direct TCP connection, or through a transit-relay.
+
+Clients connect with WebSockets, for low-latency delivery in the
+happy case where both clients are attached at the same time. Message
+are stored to enable non-simultaneous clients to make forward
+progress. The server uses a small SQLite database for persistence
+(and clients will reconnect automatically, allowing the server to
+be rebooted without losing state). An optional "usage DB" tracks
+historical activity for status monitoring and operational maintenance.
diff -r 13ace5b91725 -r 744e083c3daa net/py-magic-wormhole-mailbox-server/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/py-magic-wormhole-mailbox-server/Makefile Sun Jun 27 16:33:17 2021 +0000
@@ -0,0 +1,23 @@
+# $NetBSD: Makefile,v 1.1 2021/06/27 16:33:17 wiz Exp $
+
+DISTNAME= magic-wormhole-mailbox-server-0.4.1
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES= net python
+MASTER_SITES= ${MASTER_SITE_PYPI:=m/magic-wormhole-mailbox-server/}
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= https://github.com/magic-wormhole/magic-wormhole-mailbox-server
+COMMENT= Main server for Magic Wormhole
+LICENSE= mit
+
+DEPENDS+= ${PYPKGPREFIX}-attrs>=16.3.0:../../devel/py-attrs
+DEPENDS+= ${PYPKGPREFIX}-autobahn>=0.14.1:../../www/py-autobahn
+DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
+DEPENDS+= ${PYPKGPREFIX}-twisted>=17.5.0:../../net/py-twisted
+TEST_DEPENDS+= ${PYPKGPREFIX}-treq-[0-9]*:../../devel/py-treq
+TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
+
+USE_LANGUAGES= # none
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 13ace5b91725 -r 744e083c3daa net/py-magic-wormhole-mailbox-server/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/py-magic-wormhole-mailbox-server/PLIST Sun Jun 27 16:33:17 2021 +0000
@@ -0,0 +1,76 @@
+@comment $NetBSD: PLIST,v 1.1 2021/06/27 16:33:17 wiz Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/twisted/plugins/magic_wormhole_mailbox.py
+${PYSITELIB}/twisted/plugins/magic_wormhole_mailbox.pyc
+${PYSITELIB}/twisted/plugins/magic_wormhole_mailbox.pyo
+${PYSITELIB}/wormhole_mailbox_server/__init__.py
+${PYSITELIB}/wormhole_mailbox_server/__init__.pyc
+${PYSITELIB}/wormhole_mailbox_server/__init__.pyo
+${PYSITELIB}/wormhole_mailbox_server/_version.py
+${PYSITELIB}/wormhole_mailbox_server/_version.pyc
+${PYSITELIB}/wormhole_mailbox_server/_version.pyo
+${PYSITELIB}/wormhole_mailbox_server/database.py
+${PYSITELIB}/wormhole_mailbox_server/database.pyc
+${PYSITELIB}/wormhole_mailbox_server/database.pyo
+${PYSITELIB}/wormhole_mailbox_server/db-schemas/channel-v1.sql
+${PYSITELIB}/wormhole_mailbox_server/db-schemas/upgrade-usage-to-v2.sql
+${PYSITELIB}/wormhole_mailbox_server/db-schemas/usage-v1.sql
+${PYSITELIB}/wormhole_mailbox_server/db-schemas/usage-v2.sql
+${PYSITELIB}/wormhole_mailbox_server/increase_rlimits.py
+${PYSITELIB}/wormhole_mailbox_server/increase_rlimits.pyc
+${PYSITELIB}/wormhole_mailbox_server/increase_rlimits.pyo
+${PYSITELIB}/wormhole_mailbox_server/server.py
+${PYSITELIB}/wormhole_mailbox_server/server.pyc
+${PYSITELIB}/wormhole_mailbox_server/server.pyo
+${PYSITELIB}/wormhole_mailbox_server/server_tap.py
+${PYSITELIB}/wormhole_mailbox_server/server_tap.pyc
+${PYSITELIB}/wormhole_mailbox_server/server_tap.pyo
+${PYSITELIB}/wormhole_mailbox_server/server_websocket.py
+${PYSITELIB}/wormhole_mailbox_server/server_websocket.pyc
+${PYSITELIB}/wormhole_mailbox_server/server_websocket.pyo
+${PYSITELIB}/wormhole_mailbox_server/test/__init__.py
+${PYSITELIB}/wormhole_mailbox_server/test/__init__.pyc
+${PYSITELIB}/wormhole_mailbox_server/test/__init__.pyo
+${PYSITELIB}/wormhole_mailbox_server/test/common.py
+${PYSITELIB}/wormhole_mailbox_server/test/common.pyc
+${PYSITELIB}/wormhole_mailbox_server/test/common.pyo
+${PYSITELIB}/wormhole_mailbox_server/test/test_config.py
+${PYSITELIB}/wormhole_mailbox_server/test/test_config.pyc
+${PYSITELIB}/wormhole_mailbox_server/test/test_config.pyo
+${PYSITELIB}/wormhole_mailbox_server/test/test_database.py
+${PYSITELIB}/wormhole_mailbox_server/test/test_database.pyc
+${PYSITELIB}/wormhole_mailbox_server/test/test_database.pyo
+${PYSITELIB}/wormhole_mailbox_server/test/test_rlimits.py
+${PYSITELIB}/wormhole_mailbox_server/test/test_rlimits.pyc
+${PYSITELIB}/wormhole_mailbox_server/test/test_rlimits.pyo
+${PYSITELIB}/wormhole_mailbox_server/test/test_server.py
+${PYSITELIB}/wormhole_mailbox_server/test/test_server.pyc
+${PYSITELIB}/wormhole_mailbox_server/test/test_server.pyo
+${PYSITELIB}/wormhole_mailbox_server/test/test_service.py
+${PYSITELIB}/wormhole_mailbox_server/test/test_service.pyc
+${PYSITELIB}/wormhole_mailbox_server/test/test_service.pyo
+${PYSITELIB}/wormhole_mailbox_server/test/test_stats.py
+${PYSITELIB}/wormhole_mailbox_server/test/test_stats.pyc
+${PYSITELIB}/wormhole_mailbox_server/test/test_stats.pyo
+${PYSITELIB}/wormhole_mailbox_server/test/test_util.py
+${PYSITELIB}/wormhole_mailbox_server/test/test_util.pyc
+${PYSITELIB}/wormhole_mailbox_server/test/test_util.pyo
+${PYSITELIB}/wormhole_mailbox_server/test/test_web.py
+${PYSITELIB}/wormhole_mailbox_server/test/test_web.pyc
+${PYSITELIB}/wormhole_mailbox_server/test/test_web.pyo
+${PYSITELIB}/wormhole_mailbox_server/test/test_ws_client.py
+${PYSITELIB}/wormhole_mailbox_server/test/test_ws_client.pyc
+${PYSITELIB}/wormhole_mailbox_server/test/test_ws_client.pyo
+${PYSITELIB}/wormhole_mailbox_server/test/ws_client.py
+${PYSITELIB}/wormhole_mailbox_server/test/ws_client.pyc
+${PYSITELIB}/wormhole_mailbox_server/test/ws_client.pyo
+${PYSITELIB}/wormhole_mailbox_server/util.py
+${PYSITELIB}/wormhole_mailbox_server/util.pyc
+${PYSITELIB}/wormhole_mailbox_server/util.pyo
+${PYSITELIB}/wormhole_mailbox_server/web.py
+${PYSITELIB}/wormhole_mailbox_server/web.pyc
+${PYSITELIB}/wormhole_mailbox_server/web.pyo
diff -r 13ace5b91725 -r 744e083c3daa net/py-magic-wormhole-mailbox-server/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/net/py-magic-wormhole-mailbox-server/distinfo Sun Jun 27 16:33:17 2021 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2021/06/27 16:33:17 wiz Exp $
+
+SHA1 (magic-wormhole-mailbox-server-0.4.1.tar.gz) = 8730b1ac5fe9f5fd36535de85b246e0e19e998a2
+RMD160 (magic-wormhole-mailbox-server-0.4.1.tar.gz) = 4cecbb06bae48adf0f1478964fa686168ea916c2
+SHA512 (magic-wormhole-mailbox-server-0.4.1.tar.gz) = 17e66d61589b2a9620d56a4df82489d0c9aad40b6d61ff89c6b44e2ab96f8f4f12849879d5950025cbc7a657a2cd6f1afb36505adad52566f57571de645b70a4
+Size (magic-wormhole-mailbox-server-0.4.1.tar.gz) = 64830 bytes
Home |
Main Index |
Thread Index |
Old Index