View | Details | Raw Unified | Return to bug 222628
Collapse All | Expand All

(-)devel/Makefile (+1 lines)
Lines 4855-4860 Link Here
4855
    SUBDIR += py-streamparse
4855
    SUBDIR += py-streamparse
4856
    SUBDIR += py-structlog
4856
    SUBDIR += py-structlog
4857
    SUBDIR += py-stsci.distutils
4857
    SUBDIR += py-stsci.distutils
4858
    SUBDIR += py-subprocess32
4858
    SUBDIR += py-subversion
4859
    SUBDIR += py-subversion
4859
    SUBDIR += py-subvertpy
4860
    SUBDIR += py-subvertpy
4860
    SUBDIR += py-sure
4861
    SUBDIR += py-sure
(-)devel/py-subprocess32/Makefile (+21 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	subprocess32
4
DISTVERSION=	3.2.7
5
CATEGORIES=	devel python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	python@FreeBSD.org
10
COMMENT=	Backport of the subprocess module from Python 3.2 to 2.x
11
12
LICENSE=	PSFL
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
15
USES=		python:-2.7
16
USE_PYTHON=	autoplist distutils
17
18
post-install:
19
	${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_posixsubprocess.so
20
21
.include <bsd.port.mk>
(-)devel/py-subprocess32/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1505062811
2
SHA256 (subprocess32-3.2.7.tar.gz) = 1e450a4a4c53bf197ad6402c564b9f7a53539385918ef8f12bdf430a61036590
3
SIZE (subprocess32-3.2.7.tar.gz) = 54240
(-)devel/py-subprocess32/pkg-descr (+8 lines)
Line 0 Link Here
1
This is a backport of the subprocess standard library module
2
from Python 3.2 & 3.3 for use on Python 2.  It includes bugfixes
3
and some new features.  On POSIX systems it is guaranteed to
4
be reliable when used in threaded applications.  It includes
5
timeout support from Python 3.3 but otherwise matches 3.2's API.
6
It has not been tested on Windows.
7
8
WWW: https://github.com/google/python-subprocess32

Return to bug 222628