1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00

sysutils/py-plumbum: fix comment and pkg-descr

PR:		226697
Submitted by:	0mp
This commit is contained in:
David Naylor 2018-06-02 16:32:37 +00:00
parent f3a024906a
commit 01a0f33002
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=471377
2 changed files with 12 additions and 11 deletions

View File

@ -3,12 +3,13 @@
PORTNAME= plumbum
PORTVERSION= 1.6.6
PORTREVISION= 1
DISTVERSIONPREFIX= v
CATEGORIES= sysutils python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= dbn@FreeBSD.org
COMMENT= Shell combinators and more for python
COMMENT= Shell combinators and more for Python
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE

View File

@ -1,14 +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.
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!
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/