From owner-svn-ports-all@freebsd.org Sat Jun 2 16:32:39 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CC63F7F9CA; Sat, 2 Jun 2018 16:32:39 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BEF486B25D; Sat, 2 Jun 2018 16:32:38 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 85E3412478; Sat, 2 Jun 2018 16:32:38 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w52GWcqu051558; Sat, 2 Jun 2018 16:32:38 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w52GWcQv051557; Sat, 2 Jun 2018 16:32:38 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201806021632.w52GWcQv051557@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Sat, 2 Jun 2018 16:32:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471377 - head/sysutils/py-plumbum X-SVN-Group: ports-head X-SVN-Commit-Author: dbn X-SVN-Commit-Paths: head/sysutils/py-plumbum X-SVN-Commit-Revision: 471377 X-SVN-Commit-Repository: ports 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.26 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: Sat, 02 Jun 2018 16:32:39 -0000 Author: dbn Date: Sat Jun 2 16:32:37 2018 New Revision: 471377 URL: https://svnweb.freebsd.org/changeset/ports/471377 Log: sysutils/py-plumbum: fix comment and pkg-descr PR: 226697 Submitted by: 0mp Modified: head/sysutils/py-plumbum/Makefile head/sysutils/py-plumbum/pkg-descr Modified: head/sysutils/py-plumbum/Makefile ============================================================================== --- head/sysutils/py-plumbum/Makefile Sat Jun 2 16:21:06 2018 (r471376) +++ head/sysutils/py-plumbum/Makefile Sat Jun 2 16:32:37 2018 (r471377) @@ -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 Modified: head/sysutils/py-plumbum/pkg-descr ============================================================================== --- head/sysutils/py-plumbum/pkg-descr Sat Jun 2 16:21:06 2018 (r471376) +++ head/sysutils/py-plumbum/pkg-descr Sat Jun 2 16:32:37 2018 (r471377) @@ -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/