pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/py-execnet
Module Name: pkgsrc
Committed By: adam
Date: Sun Oct 22 20:36:31 UTC 2017
Modified Files:
pkgsrc/devel/py-execnet: Makefile distinfo
Log Message:
py-execnet: update to 1.5.0
1.5.0
-----
- support shell escaping in python pathnames of popen.
Eugene Ciurana discovered that execnet breaks if you use
pathnames with spaces in a "python=" part of a spec.
We now use shlex.split to split the string. There is a
potential for regressions if you used quote or escape
sequences as part of your python command.
- Only insert importdir into sys.path if it is not already in the path.
This prevents a bug when using enum34 with python 3.6 and
pytest-xdist.
The issue is that enum34 installs an 'enum' module in site-packages
which is normally shadowed by the stdlib version of enum, however in
gateway_bootstrap.py site-packages is added at the front the the
search path. This means on the workers enum34 is hit for import enum
which in turn causes import re to fail (as it makes use of the new
enum features in 3.6).
- fix 49 - use inspect.getfullargspec if possible to avoid deprecationwarnings
- fix 56 - use partials in safe_terminate to avoid a bad carried binding
- fix spec parsing on Windows due to path containing '\' characters.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-execnet/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-execnet/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/py-execnet/Makefile
diff -u pkgsrc/devel/py-execnet/Makefile:1.2 pkgsrc/devel/py-execnet/Makefile:1.3
--- pkgsrc/devel/py-execnet/Makefile:1.2 Tue May 30 20:31:11 2017
+++ pkgsrc/devel/py-execnet/Makefile Sun Oct 22 20:36:31 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2017/05/30 20:31:11 joerg Exp $
+# $NetBSD: Makefile,v 1.3 2017/10/22 20:36:31 adam Exp $
-DISTNAME= execnet-1.4.1
+DISTNAME= execnet-1.5.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=e/execnet/}
Index: pkgsrc/devel/py-execnet/distinfo
diff -u pkgsrc/devel/py-execnet/distinfo:1.1 pkgsrc/devel/py-execnet/distinfo:1.2
--- pkgsrc/devel/py-execnet/distinfo:1.1 Mon May 29 10:38:28 2017
+++ pkgsrc/devel/py-execnet/distinfo Sun Oct 22 20:36:31 2017
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2017/05/29 10:38:28 adam Exp $
+$NetBSD: distinfo,v 1.2 2017/10/22 20:36:31 adam Exp $
-SHA1 (execnet-1.4.1.tar.gz) = 0f13f78a7cc21e08d9e7d1205f66e3eb557b53b4
-RMD160 (execnet-1.4.1.tar.gz) = 7caded55c5decfa619e1e276021a22117ed8dd88
-SHA512 (execnet-1.4.1.tar.gz) = e8c0c32e873f8585ff4d4da3b9cbd40046479370f5653f67a98c9029d4535a619731d1b825332fe4af4dc5ebc9ab11ee879ef45df07f08943b1e1685f2255790
-Size (execnet-1.4.1.tar.gz) = 171041 bytes
+SHA1 (execnet-1.5.0.tar.gz) = ef78acca6c6775625319790c6f948b2b45d8f2b8
+RMD160 (execnet-1.5.0.tar.gz) = 7eb5a884de11a73c4258c0427f51ddadf10145ff
+SHA512 (execnet-1.5.0.tar.gz) = ca2b571fafdf8f68b3cc7a04ee326e3255828d4cde28ead65d0cef325569c3a6dee09359e525152248038de65326ffc6b75c8362f53aa5c0b3f736eb596cb2d9
+Size (execnet-1.5.0.tar.gz) = 168497 bytes
Home |
Main Index |
Thread Index |
Old Index