From owner-svn-ports-all@freebsd.org Wed Aug 1 00:30:57 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 22B09106AACF; Wed, 1 Aug 2018 00:30:57 +0000 (UTC) (envelope-from jhale@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 CC2508B82D; Wed, 1 Aug 2018 00:30:56 +0000 (UTC) (envelope-from jhale@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 94FE21B19C; Wed, 1 Aug 2018 00:30:56 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w710Uuq1056845; Wed, 1 Aug 2018 00:30:56 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w710Utkh056841; Wed, 1 Aug 2018 00:30:55 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201808010030.w710Utkh056841@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Wed, 1 Aug 2018 00:30:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476143 - in head/www: . py-path-and-address X-SVN-Group: ports-head X-SVN-Commit-Author: jhale X-SVN-Commit-Paths: in head/www: . py-path-and-address X-SVN-Commit-Revision: 476143 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.27 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: Wed, 01 Aug 2018 00:30:57 -0000 Author: jhale Date: Wed Aug 1 00:30:55 2018 New Revision: 476143 URL: https://svnweb.freebsd.org/changeset/ports/476143 Log: New port: www/py-path-and-address Path-and-address resolves ambiguities for command-line interface applications with the following pattern: $ your_app [] [
] The library applies the principal of least surprise to command-line interfaces. WWW: https://github.com/joeyespo/path-and-address Added: head/www/py-path-and-address/ head/www/py-path-and-address/Makefile (contents, props changed) head/www/py-path-and-address/distinfo (contents, props changed) head/www/py-path-and-address/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Jul 31 23:56:36 2018 (r476142) +++ head/www/Makefile Wed Aug 1 00:30:55 2018 (r476143) @@ -1729,6 +1729,7 @@ SUBDIR += py-paste SUBDIR += py-pastedeploy SUBDIR += py-pastescript + SUBDIR += py-path-and-address SUBDIR += py-pelican SUBDIR += py-planet SUBDIR += py-plone.alterego Added: head/www/py-path-and-address/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-path-and-address/Makefile Wed Aug 1 00:30:55 2018 (r476143) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= path-and-address +PORTVERSION= 2.0.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jhale@FreeBSD.org +COMMENT= Functions for command-line server tools + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USES= python zip +USE_PYTHON= autoplist distutils + +.include Added: head/www/py-path-and-address/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-path-and-address/distinfo Wed Aug 1 00:30:55 2018 (r476143) @@ -0,0 +1,3 @@ +TIMESTAMP = 1525012350 +SHA256 (path-and-address-2.0.1.zip) = e96363d982b3a2de8531f4cd5f086b51d0248b58527227d43cf5014d045371b7 +SIZE (path-and-address-2.0.1.zip) = 6503 Added: head/www/py-path-and-address/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-path-and-address/pkg-descr Wed Aug 1 00:30:55 2018 (r476143) @@ -0,0 +1,9 @@ +Path-and-address resolves ambiguities for command-line interface +applications with the following pattern: + +$ your_app [] [
] + +The library applies the principal of least surprise to command-line +interfaces. + +WWW: https://github.com/joeyespo/path-and-address