svn commit: r511303 - in head/www: . py-django-bakery
Kai Knoblich
kai at FreeBSD.org
Fri Sep 6 11:15:05 UTC 2019
Author: kai
Date: Fri Sep 6 11:15:04 2019
New Revision: 511303
URL: https://svnweb.freebsd.org/changeset/ports/511303
Log:
[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 at xanderio.de>
Added:
head/www/py-django-bakery/
head/www/py-django-bakery/Makefile (contents, props changed)
head/www/py-django-bakery/distinfo (contents, props changed)
head/www/py-django-bakery/pkg-descr (contents, props changed)
Modified:
head/www/Makefile
Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile Fri Sep 6 11:13:30 2019 (r511302)
+++ head/www/Makefile Fri Sep 6 11:15:04 2019 (r511303)
@@ -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
Added: head/www/py-django-bakery/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/py-django-bakery/Makefile Fri Sep 6 11:15:04 2019 (r511303)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME= django-bakery
+PORTVERSION= 0.12.7
+CATEGORIES= www python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= alex at 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>
Added: head/www/py-django-bakery/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/py-django-bakery/distinfo Fri Sep 6 11:15:04 2019 (r511303)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1562663577
+SHA256 (django-bakery-0.12.7.tar.gz) = 48156dbd9ddb762bef4352350a5f43744740529148fd70598120d8d2ae5e273c
+SIZE (django-bakery-0.12.7.tar.gz) = 28374
Added: head/www/py-django-bakery/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/py-django-bakery/pkg-descr Fri Sep 6 11:15:04 2019 (r511303)
@@ -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/
More information about the svn-ports-all
mailing list