Index: head/net/py-dugong/Makefile =================================================================== --- head/net/py-dugong/Makefile (revision 549882) +++ head/net/py-dugong/Makefile (revision 549883) @@ -1,25 +1,25 @@ # $FreeBSD$ PORTNAME= dugong -PORTVERSION= 3.7.3 +PORTVERSION= 3.7.5 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= niklaas@kulturflatrate.net COMMENT= HTTP 1.1 client module designed for RESTful protocols LICENSE= PSFL LICENSE_FILE= ${WRKSRC}/LICENSE TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} -NO_ARCH= yes - USES= python:3.3+ tar:bzip2 USE_PYTHON= autoplist distutils + +NO_ARCH= yes do-test: ${PYTHON_CMD} -m pytest ${WRKSRC}/test .include Index: head/net/py-dugong/distinfo =================================================================== --- head/net/py-dugong/distinfo (revision 549882) +++ head/net/py-dugong/distinfo (revision 549883) @@ -1,3 +1,3 @@ -TIMESTAMP = 1534556579 -SHA256 (dugong-3.7.3.tar.bz2) = e0fd39eb6e2845d5365e158af94e20aad2d5275c15b02a698dd14e64de5db48f -SIZE (dugong-3.7.3.tar.bz2) = 206720 +TIMESTAMP = 1600944094 +SHA256 (dugong-3.7.5.tar.bz2) = d0d07606282230fd9832f2de647e4cb46882c227883e6a12a8ff811ac46d7283 +SIZE (dugong-3.7.5.tar.bz2) = 211642 Index: head/net/py-dugong/pkg-descr =================================================================== --- head/net/py-dugong/pkg-descr (revision 549882) +++ head/net/py-dugong/pkg-descr (revision 549883) @@ -1,24 +1,24 @@ The Python Dugong module provides an API for communicating with HTTP 1.1 servers. It is an alternative to the standard library's http.client (formerly httplib) module. In contrast to http.client, Dugong: * allows you to send multiple requests right after each other without having to read the responses first. * supports waiting for 100-continue before sending the request body. * raises an exception instead of silently delivering partial data if the connection is closed before all data has been received. * raises one specific exception (ConnectionClosed) if the connection has been closed (while http.client connection may raise any of BrokenPipeError, BadStatusLine, ConnectionAbortedError, ConnectionResetError, IncompleteRead or simply return '' on read) * supports non-blocking, asynchronous operation and is compatible with the asyncio module. * can in most cases distinguish between an unavailable DNS server and an unresolvable hostname. * is not compatible with old HTTP 0.9 or 1.0 servers. All request and response headers are represented as str, but must be encodable in latin1. Request and response body must be bytes-like objects or binary streams. -WWW: https://bitbucket.org/nikratio/python-dugong/ +WWW: https://github.com/python-dugong/python-dugong/