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
This commit is contained in:
Jason E. Hale 2018-08-01 00:30:55 +00:00
parent 97d51632f1
commit fc1f1c15a2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=476143
4 changed files with 32 additions and 0 deletions

View file

@ -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

View file

@ -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>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1525012350
SHA256 (path-and-address-2.0.1.zip) = e96363d982b3a2de8531f4cd5f086b51d0248b58527227d43cf5014d045371b7
SIZE (path-and-address-2.0.1.zip) = 6503

View file

@ -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