Index: head/www/py-pastedeploy/Makefile =================================================================== --- head/www/py-pastedeploy/Makefile (revision 486536) +++ head/www/py-pastedeploy/Makefile (revision 486537) @@ -1,21 +1,24 @@ # Created by: Dryice Liu # $FreeBSD$ PORTNAME= PasteDeploy -PORTVERSION= 1.5.2 +PORTVERSION= 2.0.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Load, configure, and compose WSGI applications and servers LICENSE= MIT -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Paste>=1.6:www/py-paste@${PY_FLAVOR} -RUN_DEPENDS:= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Paste>=1.6:www/py-paste@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes .include Index: head/www/py-pastedeploy/distinfo =================================================================== --- head/www/py-pastedeploy/distinfo (revision 486536) +++ head/www/py-pastedeploy/distinfo (revision 486537) @@ -1,2 +1,3 @@ -SHA256 (PasteDeploy-1.5.2.tar.gz) = d5858f89a255e6294e63ed46b73613c56e3b9a2d82a42f1df4d06c8421a9e3cb -SIZE (PasteDeploy-1.5.2.tar.gz) = 24006 +TIMESTAMP = 1543763152 +SHA256 (PasteDeploy-2.0.0.tar.gz) = 8ac7aed091a46eee34bcbb687bfdce73327be1897f558534e6f49d2d4faf020e +SIZE (PasteDeploy-2.0.0.tar.gz) = 13757 Index: head/www/py-pastedeploy/pkg-descr =================================================================== --- head/www/py-pastedeploy/pkg-descr (revision 486536) +++ head/www/py-pastedeploy/pkg-descr (revision 486537) @@ -1,20 +1,17 @@ Load, configure, and compose WSGI applications and servers -Paste Deployment is a system for finding and configuring WSGI -applications and servers. For WSGI application consumers it provides a -single, simple function (loadapp) for loading a WSGI application from -a configuration file or a Python Egg. For WSGI application providers -it only asks for a single, simple entry point to your application, so -that application users don't need to be exposed to the implementation -details of your application. +Paste Deployment is a system for finding and configuring WSGI applications and +servers. For WSGI application consumers it provides a single, simple function +(loadapp) for loading a WSGI application from a configuration file or a Python +Egg. For WSGI application providers it only asks for a single, simple entry +point to your application, so that application users don't need to be exposed to +the implementation details of your application. -The result is something a system administrator can install and manage -without knowing any Python, or the details of the WSGI application or -its container. +The result is something a system administrator can install and manage without +knowing any Python, or the details of the WSGI application or its container. -This tool provides code to load WSGI applications and servers from -URIs; these URIs can refer to Python Eggs for INI-style configuration -files. Paste Script provides commands to serve applications based on -this configuration file. +This tool provides code to load WSGI applications and servers from URIs; these +URIs can refer to Python Eggs for INI-style configuration files. Paste Script +provides commands to serve applications based on this configuration file. -WWW: http://pythonpaste.org/deploy/ +WWW: https://pylonsproject.org/