svn commit: r500360 - in head/net: . py-DTLSSocket
Tobias C. Berner
tcberner at FreeBSD.org
Sun Apr 28 19:01:44 UTC 2019
Author: tcberner
Date: Sun Apr 28 19:01:42 2019
New Revision: 500360
URL: https://svnweb.freebsd.org/changeset/ports/500360
Log:
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
Added:
head/net/py-DTLSSocket/
head/net/py-DTLSSocket/Makefile (contents, props changed)
head/net/py-DTLSSocket/distinfo (contents, props changed)
head/net/py-DTLSSocket/pkg-descr (contents, props changed)
Modified:
head/net/Makefile
Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile Sun Apr 28 19:00:01 2019 (r500359)
+++ head/net/Makefile Sun Apr 28 19:01:42 2019 (r500360)
@@ -1011,6 +1011,7 @@
SUBDIR += pwhois
SUBDIR += pxe
SUBDIR += pxe-pdhcp
+ SUBDIR += py-DTLSSocket
SUBDIR += py-GeoIP2
SUBDIR += py-aiocoap
SUBDIR += py-aiohttp-socks
Added: head/net/py-DTLSSocket/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/py-DTLSSocket/Makefile Sun Apr 28 19:01:42 2019 (r500360)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME= DTLSSocket
+DISTVERSION= 0.1.9
+CATEGORIES= net
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= tcberner at 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>
Added: head/net/py-DTLSSocket/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/py-DTLSSocket/distinfo Sun Apr 28 19:01:42 2019 (r500360)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1556476641
+SHA256 (DTLSSocket-0.1.9.tar.gz) = e05157155e79ebb70e345a9a193cf285f2589ed38436cb3feda0766a31ae75a5
+SIZE (DTLSSocket-0.1.9.tar.gz) = 192894
Added: head/net/py-DTLSSocket/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/py-DTLSSocket/pkg-descr Sun Apr 28 19:01:42 2019 (r500360)
@@ -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
More information about the svn-ports-head
mailing list