1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

[NEW] devel/py-sh: Python subprocess interface

sh (previously pbs) is a full-fledged subprocess replacement for Python
2.6 - 3.4 that allows you to call any program as if it were a function.

WWW: https://github.com/amoffat/sh

PR:		197086
Submitted by:	Maxim Filimonov <che bein.link>
This commit is contained in:
Kubilay Kocak 2015-01-27 06:13:30 +00:00
parent 236341a8b4
commit 560cf19e75
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=377984
4 changed files with 25 additions and 0 deletions

View File

@ -3996,6 +3996,7 @@
SUBDIR += py-setuptools34
SUBDIR += py-setuptools_darcs
SUBDIR += py-setuptools_hg
SUBDIR += py-sh
SUBDIR += py-shapely
SUBDIR += py-simplegeneric
SUBDIR += py-simplejson

18
devel/py-sh/Makefile Normal file
View File

@ -0,0 +1,18 @@
# $FreeBSD$
PORTNAME= sh
PORTVERSION= 1.11
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= che@bein.link
COMMENT= Python subprocess interface
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= python
USE_PYTHON= autoplist distutils
.include <bsd.port.mk>

2
devel/py-sh/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (sh-1.11.tar.gz) = 590fb9b84abf8b1f560df92d73d87965f1e85c6b8330f8a5f6b336b36f0559a4
SIZE (sh-1.11.tar.gz) = 36821

4
devel/py-sh/pkg-descr Normal file
View File

@ -0,0 +1,4 @@
sh (previously pbs) is a full-fledged subprocess replacement for Python
2.6 - 3.4 that allows you to call any program as if it were a function.
WWW: https://github.com/amoffat/sh