diff options
author | Olivier Duchateau <olivierd@FreeBSD.org> | 2012-07-19 01:18:25 +0800 |
---|---|---|
committer | Olivier Duchateau <olivierd@FreeBSD.org> | 2012-07-19 01:18:25 +0800 |
commit | 24dad241a60f6effdcb87b5f8d9aec3f5e2b84ec (patch) | |
tree | 5f87a02c802f9cc09f6da8c41c019235187ff8a6 /www | |
parent | cf27911206fa29ce8a7254bf122288e71575feef (diff) | |
download | freebsd-ports-gnome-24dad241a60f6effdcb87b5f8d9aec3f5e2b84ec.tar.gz freebsd-ports-gnome-24dad241a60f6effdcb87b5f8d9aec3f5e2b84ec.tar.zst freebsd-ports-gnome-24dad241a60f6effdcb87b5f8d9aec3f5e2b84ec.zip |
- Update to 0.14.5
- Change maintainer address
- Convert to new options framework
PR: 169375 (update to 0.14.4)
Submitted by: koobs <koobs.freebsd@gmail.com>
Approved by: miwi, rene (mentors)
Diffstat (limited to 'www')
-rw-r--r-- | www/py-gunicorn/Makefile | 19 | ||||
-rw-r--r-- | www/py-gunicorn/distinfo | 4 |
2 files changed, 13 insertions, 10 deletions
diff --git a/www/py-gunicorn/Makefile b/www/py-gunicorn/Makefile index 7847705d3f75..c6d9af116ae7 100644 --- a/www/py-gunicorn/Makefile +++ b/www/py-gunicorn/Makefile @@ -6,32 +6,35 @@ # PORTNAME= gunicorn -PORTVERSION= 0.14.2 +PORTVERSION= 0.14.5 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= kristaps.kulis@gmail.com +MAINTAINER= koobs.freebsd@gmail.com COMMENT= Python WSGI server for unix USE_PYTHON= 2.5-2.7 USE_PYDISTUTILS= easy_install -OPTIONS= EVENTLET "Add asynchronous worker Eventlet" off \ - GEVENT "Add asynchronous worker Gevent" off \ - SETPROC "Add support to change process name" off +OPTIONS_DEFINE= EVENTLET GEVENT SETPROC +EVENTLET_DESC= Add Eventlet asynchronous worker +GEVENT_DESC= Add Gevent asynchronous worker +SETPROC_DESC= Change process name support + +OPTIONSFILE?= ${PORT_DBDIR}/py-${PORTNAME}/options .include <bsd.port.options.mk> -.if defined(WITH_EVENTLET) +.if ${PORT_OPTIONS:MEVENTLET} RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}eventlet>=0.9:${PORTSDIR}/net/py-eventlet .endif -.if defined(WITH_GEVENT) +.if ${PORT_OPTIONS:MGEVENT} RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gevent/__init__.py:${PORTSDIR}/devel/py-gevent .endif -.if defined(WITH_SETPROC) +.if ${PORT_OPTIONS:MSETPROC} RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/setproctitle.so:${PORTSDIR}/devel/py-setproctitle .endif diff --git a/www/py-gunicorn/distinfo b/www/py-gunicorn/distinfo index b7de2393e180..011ba2d76643 100644 --- a/www/py-gunicorn/distinfo +++ b/www/py-gunicorn/distinfo @@ -1,2 +1,2 @@ -SHA256 (gunicorn-0.14.2.tar.gz) = d99eb8c8074763877db28e1996ba70ac4df18ec497f2f27ece276cf54419ee65 -SIZE (gunicorn-0.14.2.tar.gz) = 203588 +SHA256 (gunicorn-0.14.5.tar.gz) = cef7820010cc5d1bf134e25b0ab22097b67886ae72c42a774d555be605a9b422 +SIZE (gunicorn-0.14.5.tar.gz) = 228742 |