Date: Sun, 28 Apr 2019 19:00:01 +0000 (UTC) From: "Tobias C. Berner" <tcberner@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r500359 - in head/net: . py-aiocoap Message-ID: <201904281900.x3SJ01TB097393@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tcberner Date: Sun Apr 28 19:00:01 2019 New Revision: 500359 URL: https://svnweb.freebsd.org/changeset/ports/500359 Log: New port: net/py-aiocoap -- The Python CoAP library The aiocoap package is an implementation of CoAP, the Constrained Application Protocol. It is written in Python 3 using its native asyncio methods to facilitate concurrent operations while maintaining an easy to use interface. aiocoap is originally based on txThings. If you want to use CoAP in your existing Twisted application, or can not migrate to Python 3 yet, that is probably more useful to you than aiocoap. WWW: https://github.com/chrysn/aiocoap Added: head/net/py-aiocoap/ head/net/py-aiocoap/Makefile (contents, props changed) head/net/py-aiocoap/distinfo (contents, props changed) head/net/py-aiocoap/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Apr 28 18:26:31 2019 (r500358) +++ head/net/Makefile Sun Apr 28 19:00:01 2019 (r500359) @@ -1012,6 +1012,7 @@ SUBDIR += pxe SUBDIR += pxe-pdhcp SUBDIR += py-GeoIP2 + SUBDIR += py-aiocoap SUBDIR += py-aiohttp-socks SUBDIR += py-amqp SUBDIR += py-amqplib Added: head/net/py-aiocoap/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-aiocoap/Makefile Sun Apr 28 19:00:01 2019 (r500359) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= aiocoap +DISTVERSION= 0.3 +CATEGORIES= net +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= tcberner@FreeBSD.org +COMMENT= Python CoAP library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python:3.5+ +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/net/py-aiocoap/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-aiocoap/distinfo Sun Apr 28 19:00:01 2019 (r500359) @@ -0,0 +1,3 @@ +TIMESTAMP = 1556476156 +SHA256 (aiocoap-0.3.tar.gz) = 402d4151db6d8d0b1d66af5b6e10e0de1521decbf12140637e5b8d2aa9c5aef6 +SIZE (aiocoap-0.3.tar.gz) = 78461 Added: head/net/py-aiocoap/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-aiocoap/pkg-descr Sun Apr 28 19:00:01 2019 (r500359) @@ -0,0 +1,11 @@ +The aiocoap package is an implementation of CoAP, the Constrained Application +Protocol. + +It is written in Python 3 using its native asyncio methods to facilitate +concurrent operations while maintaining an easy to use interface. + +aiocoap is originally based on txThings. If you want to use CoAP in your +existing Twisted application, or can not migrate to Python 3 yet, that is +probably more useful to you than aiocoap. + +WWW: https://github.com/chrysn/aiocoap
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904281900.x3SJ01TB097393>