This is a backport of the subprocess standard library module from Python 3.2 & 3.3 for use on Python 2. It includes bugfixes and some new features. On POSIX systems it is guaranteed to be reliable when used in threaded applications. It includes timeout support from Python 3.3 but otherwise matches 3.2's API. It has not been tested on Windows. WWW: https://github.com/google/python-subprocess32 PR: 222628 Submitted by: Sebastian Schwarz <seschwar@gmail.com> Reviewed by: koobs, sunpoet Differential Revision: D12519
21 lines
443 B
Makefile
21 lines
443 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= subprocess32
|
|
DISTVERSION= 3.2.7
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= dbaio@FreeBSD.org
|
|
COMMENT= Backport of the subprocess module from Python 3.2 & 3.3
|
|
|
|
LICENSE= PSFL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= python:2.7
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_posixsubprocess.so
|
|
|
|
.include <bsd.port.mk>
|