diff options
author | Carlo Strub <cs@FreeBSD.org> | 2023-02-25 16:53:52 +0000 |
---|---|---|
committer | Carlo Strub <cs@FreeBSD.org> | 2023-02-25 16:53:52 +0000 |
commit | 38ed1ecce3038ae4018f821c859af0b79c9e7872 (patch) | |
tree | 5333de4492c19ce7ccc5ab39b88001c35ecab5ee | |
parent | 5111b40cb9eb3a6b9cea4467145893fd7caa4e86 (diff) | |
download | ports-38ed1ecce3038ae4018f821c859af0b79c9e7872.tar.gz ports-38ed1ecce3038ae4018f821c859af0b79c9e7872.zip |
net-p2p/lxmf: Lightweight Extensible Message Format for Reticulum
-rw-r--r-- | net-p2p/Makefile | 1 | ||||
-rw-r--r-- | net-p2p/lxmf/Makefile | 19 | ||||
-rw-r--r-- | net-p2p/lxmf/distinfo | 3 | ||||
-rw-r--r-- | net-p2p/lxmf/pkg-descr | 5 |
4 files changed, 28 insertions, 0 deletions
diff --git a/net-p2p/Makefile b/net-p2p/Makefile index ae05f1de3307..f2e2d6bba8de 100644 --- a/net-p2p/Makefile +++ b/net-p2p/Makefile @@ -55,6 +55,7 @@ SUBDIR += litecoin SUBDIR += litecoin-daemon SUBDIR += litecoin-utils + SUBDIR += lxmf SUBDIR += microdc2 SUBDIR += minder SUBDIR += mktorrent diff --git a/net-p2p/lxmf/Makefile b/net-p2p/lxmf/Makefile new file mode 100644 index 000000000000..542321fa9651 --- /dev/null +++ b/net-p2p/lxmf/Makefile @@ -0,0 +1,19 @@ +PORTNAME= lxmf +DISTVERSION= 0.3.1 +CATEGORIES= net-p2p +MASTER_SITES= PYPI + +MAINTAINER= cs@FreeBSD.org +COMMENT= Lightweight Extensible Message Format for Reticulum +WWW= https://github.com/markqvist/nomadnet + +LICENSE= MIT + +RUN_DEPENDS= reticulum>0:net-p2p/reticulum + +USES= python:3.4+ +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/net-p2p/lxmf/distinfo b/net-p2p/lxmf/distinfo new file mode 100644 index 000000000000..50ab2abb5cad --- /dev/null +++ b/net-p2p/lxmf/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1677338101 +SHA256 (lxmf-0.3.1.tar.gz) = 75159b67082e5558becc395aaaf842bf7afb10769794cd8c00f13fd923bdb8b8 +SIZE (lxmf-0.3.1.tar.gz) = 30485 diff --git a/net-p2p/lxmf/pkg-descr b/net-p2p/lxmf/pkg-descr new file mode 100644 index 000000000000..7ae38c160054 --- /dev/null +++ b/net-p2p/lxmf/pkg-descr @@ -0,0 +1,5 @@ +LXMF is a simple and flexible messaging format and delivery protocol that +allows a wide variety of implementations, while using as little bandwidth as +possible. It is built on top of Reticulum and offers zero-conf message routing, +end-to-end encryption and Forward Secrecy, and can be transported over any kind +of medium that Reticulum supports. |