From owner-svn-ports-all@FreeBSD.ORG Thu Dec 19 15:21:51 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0575FC8D; Thu, 19 Dec 2013 15:21:51 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D9A761A20; Thu, 19 Dec 2013 15:21:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBJFLoq7079424; Thu, 19 Dec 2013 15:21:50 GMT (envelope-from dbn@svn.freebsd.org) Received: (from dbn@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBJFLoec079420; Thu, 19 Dec 2013 15:21:50 GMT (envelope-from dbn@svn.freebsd.org) Message-Id: <201312191521.rBJFLoec079420@svn.freebsd.org> From: David Naylor Date: Thu, 19 Dec 2013 15:21:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336924 - in head/sysutils: . py-plumbum 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.17 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: Thu, 19 Dec 2013 15:21:51 -0000 Author: dbn Date: Thu Dec 19 15:21:49 2013 New Revision: 336924 URL: http://svnweb.freebsd.org/changeset/ports/336924 Log: Introduce sysutils/py-plumbum 1.4.0. Added: head/sysutils/py-plumbum/ head/sysutils/py-plumbum/Makefile (contents, props changed) head/sysutils/py-plumbum/distinfo (contents, props changed) head/sysutils/py-plumbum/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Dec 19 15:16:59 2013 (r336923) +++ head/sysutils/Makefile Thu Dec 19 15:21:49 2013 (r336924) @@ -743,6 +743,7 @@ SUBDIR += py-halite SUBDIR += py-iowait SUBDIR += py-nagiosplugin + SUBDIR += py-plumbum SUBDIR += py-psutil SUBDIR += py-pytsk SUBDIR += py-ranger Added: head/sysutils/py-plumbum/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-plumbum/Makefile Thu Dec 19 15:21:49 2013 (r336924) @@ -0,0 +1,19 @@ +# Created by: David Naylor +# $FreeBSD$ + +PORTNAME= plumbum +PORTVERSION= 1.4.0 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbn@FreeBSD.org +COMMENT= Shell combinators and more for python + +LICENSE= MIT + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/sysutils/py-plumbum/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-plumbum/distinfo Thu Dec 19 15:21:49 2013 (r336924) @@ -0,0 +1,2 @@ +SHA256 (plumbum-1.4.0.tar.gz) = d3f71815e37099b23306bc5c5008ea2800cdec5b0495dc4336c60cbdcf9b22ee +SIZE (plumbum-1.4.0.tar.gz) = 50779 Added: head/sysutils/py-plumbum/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-plumbum/pkg-descr Thu Dec 19 15:21:49 2013 (r336924) @@ -0,0 +1,14 @@ +Ever wished the compactness of shell scripts be put into a real programming +language? Say hello to Plumbum Shell Combinators. Plumbum (Latin for lead, which +was used to create pipes back in the day) is a small yet feature-rich library +for shell script-like programs in Python. The motto of the library is ?Never +write shell scripts again?, and thus it attempts to mimic the shell syntax +(shell combinators) where it makes sense, while keeping it all Pythonic and +cross-platform. + +Apart from shell-like syntax and handy shortcuts, the library provides local and + remote command execution (over SSH), local and remote file-system paths, easy +working-directory and environment manipulation, and a programmatic Command-Line +Interface (CLI) application toolkit. Now let?s see some code! + +WWW: http://plumbum.readthedocs.org/en/latest/