From e4690afbfa78449a0669db2cb9348ac8f4f30157 Mon Sep 17 00:00:00 2001 From: itetcu Date: Sat, 15 Jul 2006 08:35:58 +0000 Subject: WSGIUtils is a package of standalone utility libraries that ease the development of simple WSGI programs. The package is divided into two main components which can be used individualy or in combination. wsgiServer is a multi-threaded WSGI web server based on SimpleHTTPServer. wsgiAdaptor is a simple WSGI application that provides basic authentication, signed cookies and persistent sessions. WWW: http://www.owlfish.com/software/wsgiutils/ PR: ports/99488 Submitted by: Jordi Haarman --- devel/py-wsgiutils/Makefile | 24 ++++++++++++++++++++++++ devel/py-wsgiutils/distinfo | 3 +++ devel/py-wsgiutils/pkg-descr | 13 +++++++++++++ devel/py-wsgiutils/pkg-plist | 16 ++++++++++++++++ 4 files changed, 56 insertions(+) create mode 100644 devel/py-wsgiutils/Makefile create mode 100644 devel/py-wsgiutils/distinfo create mode 100644 devel/py-wsgiutils/pkg-descr create mode 100644 devel/py-wsgiutils/pkg-plist (limited to 'devel/py-wsgiutils') diff --git a/devel/py-wsgiutils/Makefile b/devel/py-wsgiutils/Makefile new file mode 100644 index 000000000000..435f0198eee9 --- /dev/null +++ b/devel/py-wsgiutils/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: py-wsgiutils +# Date created: 25 June 2006 +# Whom: Jordi Haarman +# +# $FreeBSD$ +# + +PORTNAME= wsgiutils +PORTVERSION= 0.7 +CATEGORIES= devel textproc www python +MASTER_SITES= http://www.owlfish.com/software/wsgiutils/downloads/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= WSGIUtils-${PORTVERSION} + +MAINTAINER= j.haarman@synantics.com +COMMENT= Utility libraries for development of simple WSGI programs + +USE_PYTHON= yes +USE_PYDISTUTILS=yes + +PLIST_SUB= PORTVERSION=${PORTVERSION} \ + PYTHON_VERSION_NR=${_PYTHON_PORTBRANCH} + +.include diff --git a/devel/py-wsgiutils/distinfo b/devel/py-wsgiutils/distinfo new file mode 100644 index 000000000000..5f1abd856b9c --- /dev/null +++ b/devel/py-wsgiutils/distinfo @@ -0,0 +1,3 @@ +MD5 (WSGIUtils-0.7.tar.gz) = bcb0bc3cc3a4d2be2d237ab532b1d5b8 +SHA256 (WSGIUtils-0.7.tar.gz) = 5f0fb822e8c100416edc1f75f2fd4a28dcfd2b3a046aeb39ac1c761101f0a9d1 +SIZE (WSGIUtils-0.7.tar.gz) = 17996 diff --git a/devel/py-wsgiutils/pkg-descr b/devel/py-wsgiutils/pkg-descr new file mode 100644 index 000000000000..7dbb408c397f --- /dev/null +++ b/devel/py-wsgiutils/pkg-descr @@ -0,0 +1,13 @@ +WSGIUtils is a package of standalone utility libraries that ease the development +of simple WSGI programs. + +The package is divided into two main components which can be used individualy or +in combination. + +wsgiServer is a multi-threaded WSGI web server based on SimpleHTTPServer. + +wsgiAdaptor is a simple WSGI application that provides basic authentication, +signed cookies and persistent sessions. + + +WWW: http://www.owlfish.com/software/wsgiutils/ diff --git a/devel/py-wsgiutils/pkg-plist b/devel/py-wsgiutils/pkg-plist new file mode 100644 index 000000000000..f71c7da80d8e --- /dev/null +++ b/devel/py-wsgiutils/pkg-plist @@ -0,0 +1,16 @@ +%%PYTHON_SITELIBDIR%%/wsgiutils/SessionClient.py +%%PYTHON_SITELIBDIR%%/wsgiutils/SessionClient.pyc +%%PYTHON_SITELIBDIR%%/wsgiutils/SessionClient.pyo +%%PYTHON_SITELIBDIR%%/wsgiutils/SessionServer.py +%%PYTHON_SITELIBDIR%%/wsgiutils/SessionServer.pyc +%%PYTHON_SITELIBDIR%%/wsgiutils/SessionServer.pyo +%%PYTHON_SITELIBDIR%%/wsgiutils/__init__.py +%%PYTHON_SITELIBDIR%%/wsgiutils/__init__.pyc +%%PYTHON_SITELIBDIR%%/wsgiutils/__init__.pyo +%%PYTHON_SITELIBDIR%%/wsgiutils/wsgiAdaptor.py +%%PYTHON_SITELIBDIR%%/wsgiutils/wsgiAdaptor.pyc +%%PYTHON_SITELIBDIR%%/wsgiutils/wsgiAdaptor.pyo +%%PYTHON_SITELIBDIR%%/wsgiutils/wsgiServer.py +%%PYTHON_SITELIBDIR%%/wsgiutils/wsgiServer.pyc +%%PYTHON_SITELIBDIR%%/wsgiutils/wsgiServer.pyo +@dirrm %%PYTHON_SITELIBDIR%%/wsgiutils/ -- cgit