Skip to content

Commit

Permalink
py-subprocess32: update to 3.5.1.
Browse files Browse the repository at this point in the history
-----------------
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.
  • Loading branch information
0-wiz-0 committed May 27, 2018
1 parent d5b5d47 commit a1e696a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 22 deletions.
4 changes: 2 additions & 2 deletions devel/py-subprocess32/Makefile
Original file line number Diff line number Diff line change
@@ -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/}
Expand Down
4 changes: 2 additions & 2 deletions devel/py-subprocess32/PLIST
Original file line number Diff line number Diff line change
@@ -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
11 changes: 5 additions & 6 deletions devel/py-subprocess32/distinfo
Original file line number Diff line number Diff line change
@@ -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
12 changes: 0 additions & 12 deletions devel/py-subprocess32/patches/patch-setup.py

This file was deleted.

0 comments on commit a1e696a

Please sign in to comment.