Date: Wed, 7 Mar 2018 16:48:53 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463815 - head/www/py-selector Message-ID: <201803071648.w27GmrAq015544@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803071648.w27GmrAq015544>