svn commit: r448313 - in head/www: . py-django-bulk-update
Rene Ladan
rene at FreeBSD.org
Sat Aug 19 14:22:30 UTC 2017
Author: rene
Date: Sat Aug 19 14:22:28 2017
New Revision: 448313
URL: https://svnweb.freebsd.org/changeset/ports/448313
Log:
Simple bulk update over Django ORM or with helper function.
This project aims to bulk update the given objects using a single query
over Django ORM.
WWW: https://github.com/aykut/django-bulk-update
Added:
head/www/py-django-bulk-update/
head/www/py-django-bulk-update/Makefile (contents, props changed)
head/www/py-django-bulk-update/distinfo (contents, props changed)
head/www/py-django-bulk-update/pkg-descr (contents, props changed)
Modified:
head/www/Makefile
Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile Sat Aug 19 14:19:49 2017 (r448312)
+++ head/www/Makefile Sat Aug 19 14:22:28 2017 (r448313)
@@ -1543,6 +1543,7 @@
SUBDIR += py-django-babel
SUBDIR += py-django-bitfield
SUBDIR += py-django-bootstrap-form
+ SUBDIR += py-django-bulk-update
SUBDIR += py-django-caching-app-plugins
SUBDIR += py-django-classy-tags
SUBDIR += py-django-cms
Added: head/www/py-django-bulk-update/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/py-django-bulk-update/Makefile Sat Aug 19 14:22:28 2017 (r448313)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME= django-bulk-update
+PORTVERSION= 2.2.0
+CATEGORIES= www python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= rene at FreeBSD.org
+COMMENT= Bulk update using a single query over Django ORM
+
+LICENSE= MIT
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django18>0:www/py-django18
+
+NO_ARCH= yes
+USES= python:2.7-3.4
+USE_PYTHON= autoplist distutils
+
+.include <bsd.port.mk>
Added: head/www/py-django-bulk-update/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/py-django-bulk-update/distinfo Sat Aug 19 14:22:28 2017 (r448313)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1503148483
+SHA256 (django-bulk-update-2.2.0.tar.gz) = 5ab7ce8a65eac26d19143cc189c0f041d5c03b9d1b290ca240dc4f3d6aaeb337
+SIZE (django-bulk-update-2.2.0.tar.gz) = 12699
Added: head/www/py-django-bulk-update/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/py-django-bulk-update/pkg-descr Sat Aug 19 14:22:28 2017 (r448313)
@@ -0,0 +1,6 @@
+Simple bulk update over Django ORM or with helper function.
+
+This project aims to bulk update the given objects using a single query
+over Django ORM.
+
+WWW: https://github.com/aykut/django-bulk-update
More information about the svn-ports-head
mailing list