Added mod_wsgi-3.2 build template.
--HG-- extra : convert_revision : 8db9e8f5e94e5082d16b92214f875882c18d3791
This commit is contained in:
parent
d715ce3575
commit
4fa129a201
2 changed files with 37 additions and 0 deletions
20
srcpkgs/mod_wsgi/INSTALL
Normal file
20
srcpkgs/mod_wsgi/INSTALL
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Instructions for loading mod_wsgi.
|
||||
#
|
||||
case "${ACTION}" in
|
||||
post)
|
||||
cat << _EOF
|
||||
==========================================================================
|
||||
|
||||
To enable ${PKGNAME} in the Apache HTTP server, add the following line
|
||||
into /etc/httpd/httpd.conf:
|
||||
|
||||
LoadModule wsgi_module modules/mod_wsgi.so
|
||||
|
||||
and reload the Apache daemon with:
|
||||
|
||||
$ /etc/init.d/apache reload
|
||||
|
||||
==========================================================================
|
||||
_EOF
|
||||
;;
|
||||
esac
|
17
srcpkgs/mod_wsgi/template
Normal file
17
srcpkgs/mod_wsgi/template
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Template file for 'mod_wsgi'
|
||||
pkgname=mod_wsgi
|
||||
version=3.2
|
||||
distfiles="http://modwsgi.googlecode.com/files/$pkgname-$version.tar.gz"
|
||||
build_style=gnu_configure
|
||||
short_desc="Python WSGI adapter module for Apache"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
checksum=0f7394bee6894587df023a382fc35b23913cb4a4faca18394380fe8f921e030a
|
||||
long_desc="
|
||||
The aim of mod_wsgi is to implement a simple to use Apache module which can
|
||||
host any Python application which supports the Python WSGI interface. The
|
||||
module would be suitable for use in hosting high performance production web
|
||||
sites, as well as your average self managed personal sites running on web
|
||||
hosting services."
|
||||
|
||||
Add_dependency run glibc
|
||||
Add_dependency full python
|
Loading…
Reference in a new issue