svn commit: r463815 - head/www/py-selector

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Wed Mar 7 16:48:55 UTC 2018


Author: sunpoet
Date: Wed Mar  7 16:48:52 2018
New Revision: 463815
URL: https://svnweb.freebsd.org/changeset/ports/463815

Log:
  Fix LICENSE
  
  - Fix version requirement of RUN_DEPENDS
  - Update pkg-descr
  - Add PyPI as primary WWW

Modified:
  head/www/py-selector/Makefile
  head/www/py-selector/pkg-descr

Modified: head/www/py-selector/Makefile
==============================================================================
--- head/www/py-selector/Makefile	Wed Mar  7 16:48:47 2018	(r463814)
+++ head/www/py-selector/Makefile	Wed Mar  7 16:48:52 2018	(r463815)
@@ -10,9 +10,10 @@ PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	WSGI request delegation (a.k.a. routing)
 
-LICENSE=	MIT
+LICENSE=	GPLv2 MIT
+LICENSE_COMB=	dual
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}resolver>=0.2.1:devel/py-resolver@${FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}resolver>=0:devel/py-resolver@${FLAVOR}
 
 USES=		python
 USE_PYTHON=	autoplist distutils

Modified: head/www/py-selector/pkg-descr
==============================================================================
--- head/www/py-selector/pkg-descr	Wed Mar  7 16:48:47 2018	(r463814)
+++ head/www/py-selector/pkg-descr	Wed Mar  7 16:48:52 2018	(r463815)
@@ -1,13 +1,13 @@
 WSGI request delegation. (AKA routing.)
 
-This distribution provides WSGI middleware for "RESTful" dispatch of
-requests to WSGI applications by URL path and HTTP request
-method. Selector now also comes with components for environ-based
-dispatch and on-the-fly middleware composition. There is a very simple
-optional mini-language for path matching expressions. Alternately we
-can easily use regular expressions directly or even create our own
-mini-language. There is a simple "mapping file" format that can be
-used. There are no architecture specific features (to MVC or
-whatever). Neither are there any framework specific features.
+This distribution provides WSGI middleware for “RESTful” mapping of URL paths to
+WSGI applications. Selector now also comes with components for environ based
+dispatch and on-the-fly middleware composition. There is a very simple optional
+mini-language for path expressions. Alternately we can easily use regular
+expressions directly or even create our own mini-language. There is a simple
+“mapping file” format that can be used. There are no architecture specific
+features (to MVC or whatever). Neither are there any framework specific
+features.
 
+WWW: https://pypi.python.org/pypi/selector
 WWW: https://github.com/lukearno/selector


More information about the svn-ports-head mailing list