svn commit: r354789 - in head/www: . py-django-ldapdb

Martin Wilke miwi at FreeBSD.org
Thu May 22 06:32:27 UTC 2014


Author: miwi
Date: Thu May 22 06:32:25 2014
New Revision: 354789
URL: http://svnweb.freebsd.org/changeset/ports/354789
QAT: https://qat.redports.org/buildarchive/r354789/

Log:
  django-ldapdb is an LDAP database backend for Django.
  It allows you to manipulate LDAP entries using Django's models.
  Declaring models using the LDAP backend is very staightforward,
   you simply inherit from ldapdb.models.Model and declare the fields
   in the same way as for regular models.
  You can even edit the LDAP entries using Django's admin interface.
  
  WWW: http://opensource.bolloretelecom.eu/projects/django-ldapdb/
  
  PR:		ports/186162
  Submitted by:	Alexander Kriventsov <avk at vl.ru>

Added:
  head/www/py-django-ldapdb/
  head/www/py-django-ldapdb/Makefile   (contents, props changed)
  head/www/py-django-ldapdb/distinfo   (contents, props changed)
  head/www/py-django-ldapdb/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Thu May 22 06:31:06 2014	(r354788)
+++ head/www/Makefile	Thu May 22 06:32:25 2014	(r354789)
@@ -1507,6 +1507,7 @@
     SUBDIR += py-django-haystack
     SUBDIR += py-django-json-rpc
     SUBDIR += py-django-keyedcache
+    SUBDIR += py-django-ldapdb
     SUBDIR += py-django-livesettings
     SUBDIR += py-django-mezzanine
     SUBDIR += py-django-mezzanine-filebrowser

Added: head/www/py-django-ldapdb/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-ldapdb/Makefile	Thu May 22 06:32:25 2014	(r354789)
@@ -0,0 +1,22 @@
+# Created by: Alexander Kriventsov <avk at vl.ru>
+# $FreeBSD$
+
+PORTNAME=	django-ldapdb
+PORTVERSION=	0.1.0
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	avk at vl.ru
+COMMENT=	Support for django models over LDAP
+
+LICENSE=	BSD2CLAUSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django15>=1.5.0:${PORTSDIR}/www/py-django15 \
+		${PYTHON_PKGNAMEPREFIX}ldap2>=2.0:${PORTSDIR}/net/py-ldap2
+
+USE_PYTHON=	yes
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/www/py-django-ldapdb/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-ldapdb/distinfo	Thu May 22 06:32:25 2014	(r354789)
@@ -0,0 +1,2 @@
+SHA256 (django-ldapdb-0.1.0.tar.gz) = fa6a008a004ccfa9b00306f7ddc14b9e370a55b34711287470c8985617a207e0
+SIZE (django-ldapdb-0.1.0.tar.gz) = 7282

Added: head/www/py-django-ldapdb/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-ldapdb/pkg-descr	Thu May 22 06:32:25 2014	(r354789)
@@ -0,0 +1,8 @@
+django-ldapdb is an LDAP database backend for Django.
+It allows you to manipulate LDAP entries using Django's models.
+Declaring models using the LDAP backend is very staightforward,
+ you simply inherit from ldapdb.models.Model and declare the fields
+ in the same way as for regular models.
+You can even edit the LDAP entries using Django's admin interface.
+
+WWW: http://opensource.bolloretelecom.eu/projects/django-ldapdb/


More information about the svn-ports-head mailing list