Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Dec 2020 14:43:27 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r557933 - head/net/py-eventlet
Message-ID:  <202012131443.0BDEhRL8037971@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun Dec 13 14:43:27 2020
New Revision: 557933
URL: https://svnweb.freebsd.org/changeset/ports/557933

Log:
  Update to 0.29.1
  
  - Update COMMENT
  - Update pkg-descr
  - Update WWW
  
  Changes:	https://github.com/eventlet/eventlet/blob/master/NEWS

Modified:
  head/net/py-eventlet/Makefile
  head/net/py-eventlet/distinfo
  head/net/py-eventlet/pkg-descr

Modified: head/net/py-eventlet/Makefile
==============================================================================
--- head/net/py-eventlet/Makefile	Sun Dec 13 14:43:23 2020	(r557932)
+++ head/net/py-eventlet/Makefile	Sun Dec 13 14:43:27 2020	(r557933)
@@ -2,29 +2,34 @@
 # $FreeBSD$
 
 PORTNAME=	eventlet
-PORTVERSION=	0.28.0
+PORTVERSION=	0.29.1
 CATEGORIES=	net python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
 MAINTAINER=	sunpoet@FreeBSD.org
-COMMENT=	Concurrent networking library for Python
+COMMENT=	Highly concurrent networking library
 
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}dnspython>=1.15.0<2.0.0:dns/py-dnspython@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}greenlet>=0.3:devel/py-greenlet@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}monotonic>=1.4:devel/py-monotonic@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR}
-TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR}
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR}
 
 USES=		python
-USE_PYTHON=	distutils autoplist
+USE_PYTHON=	autoplist concurrent distutils
 
 NO_ARCH=	yes
 
+.include <bsd.port.pre.mk>
+
+.if ${PYTHON_REL} < 3500
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}monotonic>=1.4:devel/py-monotonic@${PY_FLAVOR}
+.endif
+
 do-test:
-	@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
+	cd ${WRKSRC} && ${PYTHON_CMD} -m nose -v
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>

Modified: head/net/py-eventlet/distinfo
==============================================================================
--- head/net/py-eventlet/distinfo	Sun Dec 13 14:43:23 2020	(r557932)
+++ head/net/py-eventlet/distinfo	Sun Dec 13 14:43:27 2020	(r557933)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1601764290
-SHA256 (eventlet-0.28.0.tar.gz) = 9c7c63e8a80c7d02d692b2cf308312402fa4777335fd3de5da45097383301ff3
-SIZE (eventlet-0.28.0.tar.gz) = 399360
+TIMESTAMP = 1607685393
+SHA256 (eventlet-0.29.1.tar.gz) = 9faff63631b01277c463ae91cd4ab3f25a2f0f5abe3219d43a386ef1daa6159a
+SIZE (eventlet-0.29.1.tar.gz) = 400673

Modified: head/net/py-eventlet/pkg-descr
==============================================================================
--- head/net/py-eventlet/pkg-descr	Sun Dec 13 14:43:23 2020	(r557932)
+++ head/net/py-eventlet/pkg-descr	Sun Dec 13 14:43:27 2020	(r557933)
@@ -1,6 +1,11 @@
-Eventlet is a networking library written in Python. It achieves high scalability
-by using non-blocking IO while at the same time retaining high programmer
-usability by using coroutines to make the non-blocking IO operations appear
-blocking at the source code level.
+Eventlet is a concurrent networking library for Python that allows you to change
+how you run your code, not how you write it.
 
-WWW: http://eventlet.net/
+It uses epoll or libevent for highly scalable non-blocking I/O. Coroutines
+ensure that the developer uses a blocking style of programming that is similar
+to threading, but provide the benefits of non-blocking I/O. The event dispatch
+is implicit, which means you can easily use Eventlet from the Python
+interpreter, or as a small part of a larger application.
+
+WWW: https://eventlet.net/
+WWW: https://github.com/eventlet/eventlet



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012131443.0BDEhRL8037971>