pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/py-subprocess32 py-subprocess32: update to 3.5.1.
details: https://anonhg.NetBSD.org/pkgsrc/rev/c3805b479de8
branches: trunk
changeset: 381027:c3805b479de8
user: wiz <wiz%pkgsrc.org@localhost>
date: Sun May 27 12:40:40 2018 +0000
description:
py-subprocess32: update to 3.5.1.
-----------------
2018-05-21 3.5.1
-----------------
* Fix AttributeError: 'module' object has no attribute 'Signals' when
constructing a CalledProcessError exception. [#49]
-----------------
2018-05-13 3.5.0 (3.5.0rc3)
-----------------
* Fixed the packaging problem where the stdlib python3_redirect shim is
supposed to be installed on Python 3.
* Renamed _posixsubprocess to _posixsubprocess32 for consistency.
* Unset CLOEXEC on file descriptors given to Popen pass_fds. (GH #4)
* Drop support for Python 2.4 and 2.5.
* Adds a configure script - run by setup.py - to supply the missing feature
#define's for the _posixsubprocess32 extension module for the things that
Python 2's own configure generated pyconfig.h does not already provide.
-----------------
2017-10-18 3.5.0rc1
-----------------
* Backport the new subprocess.run() API from Python 3.5.
* Backport subprocess.DEVNULL support from 3.3.
* Allow stderr to be redirected to stdout even when stdout is not redirected.
https://bugs.python.org/issue22274
* Fix subprocess.Popen.wait() when the child process has exited to a
a stopped instead of terminated state (ex: when under ptrace).
https://bugs.python.org/issue29335
* Include the private API needed by the multiprocessing module for people who
want to drop subprocess32 in as a replacement for their standard library
subprocess module.
* Fix a compilation issue regarding O_CLOEXEC not being defined on ancient
Linux distros such as RHEL 5.
diffstat:
devel/py-subprocess32/Makefile | 4 ++--
devel/py-subprocess32/PLIST | 4 ++--
devel/py-subprocess32/distinfo | 11 +++++------
devel/py-subprocess32/patches/patch-setup.py | 12 ------------
4 files changed, 9 insertions(+), 22 deletions(-)
diffs (59 lines):
diff -r 38659af58c81 -r c3805b479de8 devel/py-subprocess32/Makefile
--- a/devel/py-subprocess32/Makefile Sun May 27 12:38:28 2018 +0000
+++ b/devel/py-subprocess32/Makefile Sun May 27 12:40:40 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2017/09/04 18:08:21 wiz Exp $
+# $NetBSD: Makefile,v 1.8 2018/05/27 12:40:40 wiz Exp $
-DISTNAME= subprocess32-3.2.7
+DISTNAME= subprocess32-3.5.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=s/subprocess32/}
diff -r 38659af58c81 -r c3805b479de8 devel/py-subprocess32/PLIST
--- a/devel/py-subprocess32/PLIST Sun May 27 12:38:28 2018 +0000
+++ b/devel/py-subprocess32/PLIST Sun May 27 12:40:40 2018 +0000
@@ -1,9 +1,9 @@
-@comment $NetBSD: PLIST,v 1.1 2015/08/01 15:29:43 bsiegert Exp $
+@comment $NetBSD: PLIST,v 1.2 2018/05/27 12:40:40 wiz Exp $
+${PYSITELIB}/_posixsubprocess32.so
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
-${PYSITELIB}/_posixsubprocess.so
${PYSITELIB}/subprocess32.py
${PYSITELIB}/subprocess32.pyc
${PYSITELIB}/subprocess32.pyo
diff -r 38659af58c81 -r c3805b479de8 devel/py-subprocess32/distinfo
--- a/devel/py-subprocess32/distinfo Sun May 27 12:38:28 2018 +0000
+++ b/devel/py-subprocess32/distinfo Sun May 27 12:40:40 2018 +0000
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.3 2015/12/08 14:12:02 nonaka Exp $
+$NetBSD: distinfo,v 1.4 2018/05/27 12:40:40 wiz Exp $
-SHA1 (subprocess32-3.2.7.tar.gz) = 75a8664ba54663016315dae17510af97c5a96953
-RMD160 (subprocess32-3.2.7.tar.gz) = d6bc7e5d6d34f535d4c186858c7ac7028f15149e
-SHA512 (subprocess32-3.2.7.tar.gz) = d897d6a48824991e2a63ea417ca15222f28c3a4117c9bba8cbb4eceabfba9769acce1166aafa7aee8a025d6ebe7e133ce0dd617f90cb07e11bdb73dc1e21dec6
-Size (subprocess32-3.2.7.tar.gz) = 54240 bytes
-SHA1 (patch-setup.py) = 47b4e2a1637eedecad59627c369fe9e35c7cf335
+SHA1 (subprocess32-3.5.1.tar.gz) = d7c167071543b6092e7f3b46c07cc9548ff60e10
+RMD160 (subprocess32-3.5.1.tar.gz) = c1e60140fe810008150af3302c06192ccf045585
+SHA512 (subprocess32-3.5.1.tar.gz) = e6343ca63bd5cdb8a925fa9bc4023ab767db224c781264f0a91031cb977b5fab87a3f643d30a7df8c00b809d97b1b677d327f54f1f8eadc0a01a9d9ebc7b1a6c
+Size (subprocess32-3.5.1.tar.gz) = 95996 bytes
diff -r 38659af58c81 -r c3805b479de8 devel/py-subprocess32/patches/patch-setup.py
--- a/devel/py-subprocess32/patches/patch-setup.py Sun May 27 12:38:28 2018 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-$NetBSD: patch-setup.py,v 1.2 2015/12/08 14:12:03 nonaka Exp $
-
---- setup.py.orig 2015-11-16 13:32:05.000000000 +0900
-+++ setup.py 2015-12-08 22:57:38.000000000 +0900
-@@ -2,6 +2,7 @@
-
- import os
- import sys
-+import setuptools
- from distutils.core import setup, Extension
-
-
Home |
Main Index |
Thread Index |
Old Index