Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Mar 2016 20:12:37 +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: r410552 - in head/devel/py-gevent: . files
Message-ID:  <201603072012.u27KCb5m055987@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Mon Mar  7 20:12:37 2016
New Revision: 410552
URL: https://svnweb.freebsd.org/changeset/ports/410552

Log:
  - Update to 1.1.0
  - Relax USES=python
  - Allow concurrent installation (USE_PYTHON=concurrent)
  
  Changes:	https://github.com/gevent/gevent/releases

Added:
  head/devel/py-gevent/files/
  head/devel/py-gevent/files/patch-gevent-_util_py2.py   (contents, props changed)
Modified:
  head/devel/py-gevent/Makefile
  head/devel/py-gevent/distinfo

Modified: head/devel/py-gevent/Makefile
==============================================================================
--- head/devel/py-gevent/Makefile	Mon Mar  7 20:12:32 2016	(r410551)
+++ head/devel/py-gevent/Makefile	Mon Mar  7 20:12:37 2016	(r410552)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	gevent
-PORTVERSION=	1.0.2
-PORTREVISION=	1
+PORTVERSION=	1.1.0
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -24,8 +23,8 @@ DO_MAKE_TEST=	${SETENV} PYTHONPATH=../ $
 MAKE_ENV=	CARES_EMBED=0 LIBEV_EMBED=0
 TEST_TARGET=	testrunner.py
 TEST_WRKSRC=	${WRKSRC}/greentest
-USE_PYTHON=	autoplist distutils
-USES=		localbase python:2
+USE_PYTHON=	autoplist concurrent distutils
+USES=		localbase python
 
 post-install:
 	${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/gevent/*.so

Modified: head/devel/py-gevent/distinfo
==============================================================================
--- head/devel/py-gevent/distinfo	Mon Mar  7 20:12:32 2016	(r410551)
+++ head/devel/py-gevent/distinfo	Mon Mar  7 20:12:37 2016	(r410552)
@@ -1,2 +1,2 @@
-SHA256 (gevent-1.0.2.tar.gz) = 3ae1ca0f533ddcb17aab16ce66b424b3f3b855ff3b9508526915d3c6b73fba31
-SIZE (gevent-1.0.2.tar.gz) = 1735721
+SHA256 (gevent-1.1.0.tar.gz) = 34f7a5eca1326affe149eaa5467220d89002facd338028d2340868015407ae75
+SIZE (gevent-1.1.0.tar.gz) = 1968902

Added: head/devel/py-gevent/files/patch-gevent-_util_py2.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-gevent/files/patch-gevent-_util_py2.py	Mon Mar  7 20:12:37 2016	(r410552)
@@ -0,0 +1,8 @@
+--- gevent/_util_py2.py.orig	2015-12-11 14:42:42 UTC
++++ gevent/_util_py2.py
+@@ -5,4 +5,4 @@ __all__ = ['reraise']
+ 
+ 
+ def reraise(type, value, tb):
+-    raise type, value, tb
++    raise type(value).with_traceback(tb)



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