From owner-freebsd-python@FreeBSD.ORG Thu May 22 06:40:02 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 56BE2461 for ; Thu, 22 May 2014 06:40:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 451512DE7 for ; Thu, 22 May 2014 06:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4M6e2OD022080 for ; Thu, 22 May 2014 06:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4M6e1QX022079; Thu, 22 May 2014 06:40:01 GMT (envelope-from gnats) Date: Thu, 22 May 2014 06:40:01 GMT Message-Id: <201405220640.s4M6e1QX022079@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/186162: commit references a PR Reply-To: dfilter@FreeBSD.ORG (dfilter service) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 06:40:02 -0000 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 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 +# $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 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"