diff options
| author | David Naylor <dbn@FreeBSD.org> | 2013-12-19 15:21:49 +0000 |
|---|---|---|
| committer | David Naylor <dbn@FreeBSD.org> | 2013-12-19 15:21:49 +0000 |
| commit | 0fd77b0d745442e3121e397b5a2f49f86e8cf81a (patch) | |
| tree | 9a2006f3040e3d180064414fc54ad977aa6571a5 /sysutils | |
| parent | 2f70b7502340c7aa5d3a259f10edb97f2d362d5d (diff) | |
Notes
Diffstat (limited to 'sysutils')
| -rw-r--r-- | sysutils/Makefile | 1 | ||||
| -rw-r--r-- | sysutils/py-plumbum/Makefile | 19 | ||||
| -rw-r--r-- | sysutils/py-plumbum/distinfo | 2 | ||||
| -rw-r--r-- | sysutils/py-plumbum/pkg-descr | 14 |
4 files changed, 36 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 157f841dc8a0..aba96b952129 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -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 diff --git a/sysutils/py-plumbum/Makefile b/sysutils/py-plumbum/Makefile new file mode 100644 index 000000000000..44ee1ff4655b --- /dev/null +++ b/sysutils/py-plumbum/Makefile @@ -0,0 +1,19 @@ +# Created by: David Naylor <dbn@FreeBSD.org> +# $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 <bsd.port.mk> diff --git a/sysutils/py-plumbum/distinfo b/sysutils/py-plumbum/distinfo new file mode 100644 index 000000000000..c34ef1fd3b3e --- /dev/null +++ b/sysutils/py-plumbum/distinfo @@ -0,0 +1,2 @@ +SHA256 (plumbum-1.4.0.tar.gz) = d3f71815e37099b23306bc5c5008ea2800cdec5b0495dc4336c60cbdcf9b22ee +SIZE (plumbum-1.4.0.tar.gz) = 50779 diff --git a/sysutils/py-plumbum/pkg-descr b/sysutils/py-plumbum/pkg-descr new file mode 100644 index 000000000000..7148aac6e183 --- /dev/null +++ b/sysutils/py-plumbum/pkg-descr @@ -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/ |
