From owner-svn-ports-head@FreeBSD.ORG Sun Feb 2 08:34:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D41BE6B; Sun, 2 Feb 2014 08:34:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E327A1859; Sun, 2 Feb 2014 08:34:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s128Y9Fv036874; Sun, 2 Feb 2014 08:34:09 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s128Y9lw036870; Sun, 2 Feb 2014 08:34:09 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201402020834.s128Y9lw036870@svn.freebsd.org> From: Kubilay Kocak Date: Sun, 2 Feb 2014 08:34:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r342251 - in head/www: . py-django-debug-toolbar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Feb 2014 08:34:10 -0000 Author: koobs Date: Sun Feb 2 08:34:08 2014 New Revision: 342251 URL: http://svnweb.freebsd.org/changeset/ports/342251 QAT: https://qat.redports.org/buildarchive/r342251/ Log: www/py-django-debug-toolbar: Configurable panels to display debug information [NEW PORT] The Django Debug Toolbar is a configurable set of panels that display various debug information about the current request/response and when clicked, display more details about the panel's content. WWW: https://pypi.python.org/pypi/django-debug-toolbar PR: ports/186159 Submitted by: Johannes Jost Meixner Added: head/www/py-django-debug-toolbar/ head/www/py-django-debug-toolbar/Makefile (contents, props changed) head/www/py-django-debug-toolbar/distinfo (contents, props changed) head/www/py-django-debug-toolbar/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Feb 2 08:22:22 2014 (r342250) +++ head/www/Makefile Sun Feb 2 08:34:08 2014 (r342251) @@ -1501,6 +1501,7 @@ SUBDIR += py-django-classy-tags SUBDIR += py-django-cms SUBDIR += py-django-crispy-forms + SUBDIR += py-django-debug-toolbar SUBDIR += py-django-devel SUBDIR += py-django-dpaste SUBDIR += py-django-evolution Added: head/www/py-django-debug-toolbar/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-debug-toolbar/Makefile Sun Feb 2 08:34:08 2014 (r342251) @@ -0,0 +1,22 @@ +# Created by: Johannes Meixner +# $FreeBSD$ + +PORTNAME= django-debug-toolbar +PORTVERSION= 1.0.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= xmj@chaot.net +COMMENT= Configurable set of panels to display debug information + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>0:${PORTSDIR}/www/py-django \ + ${PYTHON_PKGNAMEPREFIX}sqlparse>0:${PORTSDIR}/databases/py-sqlparse + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/www/py-django-debug-toolbar/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-debug-toolbar/distinfo Sun Feb 2 08:34:08 2014 (r342251) @@ -0,0 +1,2 @@ +SHA256 (django-debug-toolbar-1.0.1.tar.gz) = 535b1e0176a9d955601aaba3271a148368d7710569403fbc77e5299cf097c18a +SIZE (django-debug-toolbar-1.0.1.tar.gz) = 113031 Added: head/www/py-django-debug-toolbar/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-debug-toolbar/pkg-descr Sun Feb 2 08:34:08 2014 (r342251) @@ -0,0 +1,5 @@ +The Django Debug Toolbar is a configurable set of panels that display various +debug information about the current request/response and when clicked, display +more details about the panel's content. + +WWW: https://pypi.python.org/pypi/django-debug-toolbar