package/python-magic-wormhole-transit-relay: new package

Transit Relay server for Magic-Wormhole.

This repository implements the Magic-Wormhole "Transit Relay",
a server that helps clients establish bulk-data transit connections
even when both are behind NAT boxes. Each side makes a TCP connection
to this server and presents a handshake. Two connections with
identical handshakes are glued together, allowing them to pretend they
have a direct connection.

https://github.com/magic-wormhole/magic-wormhole-transit-relay

Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023.02.x
Julien Olivain 2022-11-22 21:31:29 +01:00 committed by Thomas Petazzoni
parent 9244052f28
commit 037dbe64d8
5 changed files with 36 additions and 0 deletions

View File

@ -1696,6 +1696,7 @@ F: package/python-gnupg/
F: package/python-hkdf/
F: package/python-magic-wormhole/
F: package/python-magic-wormhole-mailbox-server/
F: package/python-magic-wormhole-transit-relay/
F: package/python-pyalsa/
F: package/python-spake2/
F: package/rdma-core/

View File

@ -1122,6 +1122,7 @@ menu "External python modules"
source "package/python-m2crypto/Config.in"
source "package/python-magic-wormhole/Config.in"
source "package/python-magic-wormhole-mailbox-server/Config.in"
source "package/python-magic-wormhole-transit-relay/Config.in"
source "package/python-mako/Config.in"
source "package/python-markdown/Config.in"
source "package/python-markdown2/Config.in"

View File

@ -0,0 +1,15 @@
config BR2_PACKAGE_PYTHON_MAGIC_WORMHOLE_TRANSIT_RELAY
bool "python-magic-wormhole-transit-relay"
select BR2_PACKAGE_PYTHON_TWISTED # runtime
help
Transit Relay server for Magic-Wormhole.
This repository implements the Magic-Wormhole "Transit
Relay", a server that helps clients establish bulk-data
transit connections even when both are behind NAT
boxes. Each side makes a TCP connection to this server and
presents a handshake. Two connections with identical
handshakes are glued together, allowing them to pretend they
have a direct connection.
https://github.com/magic-wormhole/magic-wormhole-transit-relay

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/magic-wormhole-transit-relay/json
md5 aa575a4e22b3d5099674ba88b136a9a2 magic-wormhole-transit-relay-0.2.1.tar.gz
sha256 cb4801b46890eaff97286e0e3fec62d1d52ffe317d140083b6336a1fb4e8fa5e magic-wormhole-transit-relay-0.2.1.tar.gz
# Locally computed sha256 checksums
sha256 d70f6469bb210c2aa4c0dfd74f498ef5f0467a137d8296479088e7243c5884eb LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-magic-wormhole-transit-relay
#
################################################################################
PYTHON_MAGIC_WORMHOLE_TRANSIT_RELAY_VERSION = 0.2.1
PYTHON_MAGIC_WORMHOLE_TRANSIT_RELAY_SOURCE = magic-wormhole-transit-relay-$(PYTHON_MAGIC_WORMHOLE_TRANSIT_RELAY_VERSION).tar.gz
PYTHON_MAGIC_WORMHOLE_TRANSIT_RELAY_SITE = https://files.pythonhosted.org/packages/21/c9/be25bb30e327037e009657960fc594d089b118c0d81cc6a200cad1bb3852
PYTHON_MAGIC_WORMHOLE_TRANSIT_RELAY_SETUP_TYPE = setuptools
PYTHON_MAGIC_WORMHOLE_TRANSIT_RELAY_LICENSE = MIT
PYTHON_MAGIC_WORMHOLE_TRANSIT_RELAY_LICENSE_FILES = LICENSE
$(eval $(python-package))