Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Aug 2018 00:30:55 +0000 (UTC)
From:      "Jason E. Hale" <jhale@FreeBSD.org>
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
Message-ID:  <201808010030.w710Utkh056841@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 [<path>] [<address>]
  
  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 <bsd.port.mk>

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 [<path>] [<address>]
+
+The library applies the principal of least surprise to command-line
+interfaces.
+
+WWW: https://github.com/joeyespo/path-and-address



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808010030.w710Utkh056841>