mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
7d43fc4202
Provides a set of helper for baking your Django site out as flat files. Features: - Models, views and management commands that will build your site as flat files. - Management commands to sync your flat files with a bucket on Amazon S3. - Optional integration of a Celery job queue to automatically build and publish model objects when they are saved WWW: https://github.com/datadesk/django-bakery/ PR: 239034 Submitted by: Alexander Sieg <alex@xanderio.de>
25 lines
588 B
Makefile
25 lines
588 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= django-bakery
|
|
PORTVERSION= 0.12.7
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= alex@xanderio.de
|
|
COMMENT= Set of helpers for baking your Django site out as flat files
|
|
|
|
LICENSE= MIT
|
|
#LICENSE_FILE= Not yet packaged in sdist
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>1.5.2:devel/py-six@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}boto3>=1.4.4:www/py-boto3@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}fs2>=2.0.17:devel/py-fs2@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|