diff options
author | kai <kai@FreeBSD.org> | 2019-09-06 19:15:04 +0800 |
---|---|---|
committer | kai <kai@FreeBSD.org> | 2019-09-06 19:15:04 +0800 |
commit | 10705e07fee49345014cbca29a41b6eba623082d (patch) | |
tree | 6c3463ffbdf2f5dcd6af12e5427e318ce3944f82 /www | |
parent | d11a5b61571d9e2bf90e19106d7219f8d43dd9e7 (diff) | |
download | freebsd-ports-gnome-10705e07fee49345014cbca29a41b6eba623082d.tar.gz freebsd-ports-gnome-10705e07fee49345014cbca29a41b6eba623082d.tar.zst freebsd-ports-gnome-10705e07fee49345014cbca29a41b6eba623082d.zip |
[NEW PORT]: www/py-django-bakery
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>
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/py-django-bakery/Makefile | 24 | ||||
-rw-r--r-- | www/py-django-bakery/distinfo | 3 | ||||
-rw-r--r-- | www/py-django-bakery/pkg-descr | 11 |
4 files changed, 39 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 720b4e389f89..539f056d0cf7 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1518,6 +1518,7 @@ SUBDIR += py-django-assets SUBDIR += py-django-auth-ldap SUBDIR += py-django-babel + SUBDIR += py-django-bakery SUBDIR += py-django-bitfield SUBDIR += py-django-bootstrap-form SUBDIR += py-django-bootstrap3 diff --git a/www/py-django-bakery/Makefile b/www/py-django-bakery/Makefile new file mode 100644 index 000000000000..cb48ac81bdab --- /dev/null +++ b/www/py-django-bakery/Makefile @@ -0,0 +1,24 @@ +# $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> diff --git a/www/py-django-bakery/distinfo b/www/py-django-bakery/distinfo new file mode 100644 index 000000000000..3b1da1dc107e --- /dev/null +++ b/www/py-django-bakery/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1562663577 +SHA256 (django-bakery-0.12.7.tar.gz) = 48156dbd9ddb762bef4352350a5f43744740529148fd70598120d8d2ae5e273c +SIZE (django-bakery-0.12.7.tar.gz) = 28374 diff --git a/www/py-django-bakery/pkg-descr b/www/py-django-bakery/pkg-descr new file mode 100644 index 000000000000..c73ffc804143 --- /dev/null +++ b/www/py-django-bakery/pkg-descr @@ -0,0 +1,11 @@ +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/ |