freebsd-ports/www/py-whitenoise/Makefile
Sunpoet Po-Chuan Hsieh bf73757b42 Add py-whitenoise 4.1.2
Radically simplified static file serving for Python web apps

With a couple of lines of config WhiteNoise allows your web app to serve its own
static files, making it a self-contained unit that can be deployed anywhere
without relying on nginx, Amazon S3 or any other external service. (Especially
useful on Heroku, OpenShift and other PaaS providers.)

It's designed to work nicely with a CDN for high-traffic sites so you don't have
to sacrifice performance to benefit from simplicity.

WhiteNoise works with any WSGI-compatible app but has some special auto-
configuration features for Django.

- While I'm here, add NO_ARCH

WWW: http://whitenoise.evans.io/

PR:		239107
Submitted by:	Alexander Sieg <alex@xanderio.de>
2019-08-25 18:51:58 +00:00

21 lines
373 B
Makefile

# $FreeBSD$
PORTNAME= whitenoise
PORTVERSION= 4.1.2
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= alex@xanderio.de
COMMENT= Radically simplified static file serving for wsgi applications
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= python
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>