1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

New port: net/py-DTLSSocket -- DTLSSocket is a cython wrapper for tinydtls with a Socket like interface

This is a cython wrapper for tinydtls.

It currently implements a socket like Interface with sendmsg and readmsg.
All other calls are passt to the underlying socket.

For more info of tinydtls see https://projects.eclipse.org/projects/iot.tinydtls

WWW: https://git.fslab.de/jkonra2m/tinydtls-cython
This commit is contained in:
Tobias C. Berner 2019-04-28 19:01:42 +00:00
parent 04f3e92a74
commit 7462c119b9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=500360
4 changed files with 33 additions and 0 deletions

View File

@ -1011,6 +1011,7 @@
SUBDIR += pwhois
SUBDIR += pxe
SUBDIR += pxe-pdhcp
SUBDIR += py-DTLSSocket
SUBDIR += py-GeoIP2
SUBDIR += py-aiocoap
SUBDIR += py-aiohttp-socks

View File

@ -0,0 +1,20 @@
# $FreeBSD$
PORTNAME= DTLSSocket
DISTVERSION= 0.1.9
CATEGORIES= net
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= tcberner@FreeBSD.org
COMMENT= Python IKEA Tradfri API controller
LICENSE= EPL
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= autoconf>0:devel/autoconf
USES= python
USE_PYTHON= autoplist cython distutils
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1556476641
SHA256 (DTLSSocket-0.1.9.tar.gz) = e05157155e79ebb70e345a9a193cf285f2589ed38436cb3feda0766a31ae75a5
SIZE (DTLSSocket-0.1.9.tar.gz) = 192894

View File

@ -0,0 +1,9 @@
This is a cython wrapper for tinydtls.
It currently implements a socket like Interface with sendmsg and readmsg.
All other calls are passt to the underlying socket.
For more info of tinydtls see
https://projects.eclipse.org/projects/iot.tinydtls
WWW: https://git.fslab.de/jkonra2m/tinydtls-cython