Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Jan 2015 06:13:30 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r377984 - in head/devel: . py-sh
Message-ID:  <201501270613.t0R6DUqo038304@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Tue Jan 27 06:13:30 2015
New Revision: 377984
URL: https://svnweb.freebsd.org/changeset/ports/377984
QAT: https://qat.redports.org/buildarchive/r377984/

Log:
  [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>

Added:
  head/devel/py-sh/
  head/devel/py-sh/Makefile   (contents, props changed)
  head/devel/py-sh/distinfo   (contents, props changed)
  head/devel/py-sh/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Jan 27 05:58:02 2015	(r377983)
+++ head/devel/Makefile	Tue Jan 27 06:13:30 2015	(r377984)
@@ -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

Added: head/devel/py-sh/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-sh/Makefile	Tue Jan 27 06:13:30 2015	(r377984)
@@ -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>

Added: head/devel/py-sh/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-sh/distinfo	Tue Jan 27 06:13:30 2015	(r377984)
@@ -0,0 +1,2 @@
+SHA256 (sh-1.11.tar.gz) = 590fb9b84abf8b1f560df92d73d87965f1e85c6b8330f8a5f6b336b36f0559a4
+SIZE (sh-1.11.tar.gz) = 36821

Added: head/devel/py-sh/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-sh/pkg-descr	Tue Jan 27 06:13:30 2015	(r377984)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501270613.t0R6DUqo038304>