diff options
author | miwi <miwi@FreeBSD.org> | 2010-06-03 00:27:50 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2010-06-03 00:27:50 +0800 |
commit | 8d7678382f6319fc8c5f3ff7398b44617647b4bb (patch) | |
tree | bbfb727b31d72afdf8cfab2978f9390d2ba4a19a /www/uwsgi | |
parent | a108569b74d4423e39148b87b6a3597477d80495 (diff) | |
download | freebsd-ports-gnome-8d7678382f6319fc8c5f3ff7398b44617647b4bb.tar.gz freebsd-ports-gnome-8d7678382f6319fc8c5f3ff7398b44617647b4bb.tar.zst freebsd-ports-gnome-8d7678382f6319fc8c5f3ff7398b44617647b4bb.zip |
uWSGI is a fast (pure C), self-healing, developer-friendly WSGI server,
aimed for professional python webapps deployment and development. Over
time it has evolved in a complete stack for networked/clustered python
applications, implementing message/object passing, RPC and process
management.
WWW: http://projects.unbit.it/uwsgi/
PR: ports/146865
Submitted by: Daniel Gerzo <danger at FreeBSD.org>
Diffstat (limited to 'www/uwsgi')
-rw-r--r-- | www/uwsgi/Makefile | 32 | ||||
-rw-r--r-- | www/uwsgi/distinfo | 3 | ||||
-rw-r--r-- | www/uwsgi/pkg-descr | 7 |
3 files changed, 42 insertions, 0 deletions
diff --git a/www/uwsgi/Makefile b/www/uwsgi/Makefile new file mode 100644 index 000000000000..59fef9bb4e42 --- /dev/null +++ b/www/uwsgi/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: uwsgi +# Date created: 23 May 2010 +# Whom: Daniel Gerzo <danger@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= uwsgi +PORTVERSION= 0.9.5.1 +CATEGORIES= www python +MASTER_SITES= http://projects.unbit.it/downloads/ + +MAINTAINER= danger@FreeBSD.org +COMMENT= Developer-friendly WSGI server which uses uwsgi protocol + +MAKE_JOBS_SAFE= yes + +USE_GNOME= libxml2 +USE_PYTHON= 2.4+ + +PLIST_FILES= bin/${PORTNAME} + +.include <bsd.port.pre.mk> + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/ + +.if ${OSVERSION} < 700000 +USE_GCC= 4.2+ +.endif + +.include <bsd.port.post.mk> diff --git a/www/uwsgi/distinfo b/www/uwsgi/distinfo new file mode 100644 index 000000000000..a9afa1a53ec5 --- /dev/null +++ b/www/uwsgi/distinfo @@ -0,0 +1,3 @@ +MD5 (uwsgi-0.9.5.1.tar.gz) = cc032e0f0e987a848606d3bc90241756 +SHA256 (uwsgi-0.9.5.1.tar.gz) = 2efab0f2cea90261c3ee56026618955c15ac7467ba6f0dbfe9e685da28204bc1 +SIZE (uwsgi-0.9.5.1.tar.gz) = 120134 diff --git a/www/uwsgi/pkg-descr b/www/uwsgi/pkg-descr new file mode 100644 index 000000000000..68c4f95632d6 --- /dev/null +++ b/www/uwsgi/pkg-descr @@ -0,0 +1,7 @@ +uWSGI is a fast (pure C), self-healing, developer-friendly WSGI server, +aimed for professional python webapps deployment and development. Over +time it has evolved in a complete stack for networked/clustered python +applications, implementing message/object passing, RPC and process +management. + +WWW: http://projects.unbit.it/uwsgi/ |