pkgsrc/www/py-mod_wsgi/Makefile
adam d0a6f7730a Changes 4.4.8:
Bugs Fixed

1. The eviction timeout was not being correctly applied when request timeout wasn’t being applied at the same time. It may have partly worked if any of inactivity or graceful timeout were also specified, but the application of the timeout may still have been delayed.

New Features

1. Added the --error-log-name option to mod_wsgi-express to allow the name of the file used for the error log, when being written to the log directory, to be overridden.

2. Added the --access-log-name option to mod_wsgi-express to allow the name of the file used for the access log, when being written to the log directory, to be overridden.

3. Added the --startup-log-name option to mod_wsgi-express to allow the name of the file used for the startup log, when being written to the log directory, to be overridden.
2015-02-13 15:56:25 +00:00

34 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.2 2015/02/13 15:56:25 adam Exp $
DISTNAME= mod_wsgi-4.4.8
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= www python
MASTER_SITES= http://pypi.python.org/packages/source/m/mod_wsgi/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://code.google.com/p/modwsgi/
COMMENT= WSGI module for apache
LICENSE= apache-2.0
PKG_APACHE_ACCEPTED= apache22 apache24
DEPENDS+= ${PYPKGPREFIX}-mod_wsgi-metrics>=1.0.0:../../www/py-mod_wsgi-metrics
APACHE_MODULE= yes
MESSAGE_SUBST+= PYSITELIB=${PYSITELIB}
MESSAGE_SUBST+= PYPKGPREFIX=${PYPKGPREFIX}
PLIST_SUBST+= PYPKGPREFIX=${PYPKGPREFIX}
PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX}
# __init__.py is the same as in mod_wsgi-metrics; remove it to avoid conflict
post-extract:
${RM} -f ${WRKSRC}/src/__init__.py
post-install:
${MV} ${DESTDIR}${PREFIX}/bin/mod_wsgi-express \
${DESTDIR}${PREFIX}/bin/mod_wsgi-express${PYVERSSUFFIX}
.include "../../lang/python/application.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/apache.mk"
.include "../../mk/bsd.pkg.mk"