From owner-svn-ports-all@FreeBSD.ORG Tue Jan 27 06:13:32 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28A77163; Tue, 27 Jan 2015 06:13:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F037C321; Tue, 27 Jan 2015 06:13:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0R6DVmX038314; Tue, 27 Jan 2015 06:13:31 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0R6DUqo038304; Tue, 27 Jan 2015 06:13:30 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201501270613.t0R6DUqo038304@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Tue, 27 Jan 2015 06:13:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377984 - in head/devel: . py-sh X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jan 2015 06:13:32 -0000 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 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 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