Date: Thu, 22 May 2014 06:40:01 GMT From: dfilter@FreeBSD.ORG (dfilter service) To: freebsd-python@FreeBSD.org Subject: Re: ports/186162: commit references a PR Message-ID: <201405220640.s4M6e1QX022079@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/186162; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/186162: commit references a PR Date: Thu, 22 May 2014 06:32:31 +0000 (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"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405220640.s4M6e1QX022079>