2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595) |
Log message:
*: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
|
2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016) |
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Could not be committed due to merge conflict:
devel/py-traitlets/distinfo
The following distfiles were unfetchable (note: some may be only fetched
conditionally):
./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
|
2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2019-05-27 16:42:25 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
py-subprocess32: update to 3.5.4.
-----------------
2019-05-20 3.5.4
-----------------
* Promoted 3.5.4rc2 to become 3.5.4.
-----------------
2019-05-13 3.5.4rc2
-----------------
* GitHub [#57]: TimeoutExpired and CalledProcessError exceptions can now
be unpickled.
-----------------
2019-05-10 3.5.4rc1
-----------------
* GitHub [#61]: Backport the fixes for https://bugs.python.org/issue10963,
https://bugs.python.org/issue19612, and https://bugs.python.org/issue30418.
When a child process was so short lived it dies or closes its pipes before
you call communicate(). When supplying stdin or reading its output in
this scenario, do not raise an unexpected broken pipe or interrupted
system call exception.
|
2018-10-10 10:20:56 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-subprocess32: updated to 3.5.3
3.5.3:
* Disallow rediculiously large numbers (millions) of arguments.
|
2018-07-27 09:51:30 by Jonathan Perkin | Files touched by this commit (2) |
Log message:
py-subprocess32: Fix configure script variables.
|
2018-07-03 07:03:44 by Adam Ciarcinski | Files touched by this commit (495) |
Log message:
extend PYTHON_VERSIONS_ for Python 3.7
|
2018-06-17 11:08:48 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
py-subprocess32: update to 3.5.2.
-----------------
2018-06-07 3.5.2
-----------------
* Explicitly include <signal.h> in _posixsubprocess_helpers.c; it already
gets configure checked and pulled in via Python's own <Python.h> in many
circumstances but it is better to be explicit. #IWYU
If you were using subprocess32 on a Python interpreter built *without*
the --with-fpectl configure option enabled, restore_signals is now
useful rather than a no-op. I do not know if such builds were common.
* Adds a functional test for restore_signals=True behavior.
|
2018-06-14 16:53:38 by Jonathan Perkin | Files touched by this commit (2) |
Log message:
py-subprocess32: dirfd is a function not a declaration.
Fixes build on SunOS.
|
2018-05-27 14:40:41 by Thomas Klausner | Files touched by this commit (4) | |
Log message:
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.
|