Bug 186162 - [NEW PORT] www/py-django-ldapdb: Support for django models over LDAP
Summary: [NEW PORT] www/py-django-ldapdb: Support for django models over LDAP
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-python (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-01-27 08:20 UTC by Alexander Kriventsov
Modified: 2014-05-22 07:40 UTC (History)
0 users

See Also:


Attachments
file.shar (1.95 KB, text/plain)
2014-01-27 08:20 UTC, Alexander Kriventsov
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Alexander Kriventsov 2014-01-27 08:20:00 UTC
Support for django models over LDAP

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-01-27 08:20:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->freebsd-python

freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 Martin Wilke freebsd_committer freebsd_triage 2014-05-22 07:32:03 UTC
State Changed
From-To: open->closed

New port added. Thanks!
Comment 3 dfilter service freebsd_committer freebsd_triage 2014-05-22 07:32:31 UTC
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@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@vl.ru>
+# $FreeBSD$
+
+PORTNAME=	django-ldapdb
+PORTVERSION=	0.1.0
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	avk@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/
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"