From owner-svn-ports-head@freebsd.org Sun Feb 25 05:34:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AF2E8F076B2; Sun, 25 Feb 2018 05:34:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CB286C5CF; Sun, 25 Feb 2018 05:34:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2ADCC7A8; Sun, 25 Feb 2018 05:34:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1P5YYgw067246; Sun, 25 Feb 2018 05:34:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1P5YX6N067243; Sun, 25 Feb 2018 05:34:33 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802250534.w1P5YX6N067243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 25 Feb 2018 05:34:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462934 - head/www/py-django-debug-toolbar X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/py-django-debug-toolbar X-SVN-Commit-Revision: 462934 X-SVN-Commit-Repository: ports 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.25 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, 25 Feb 2018 05:34:34 -0000 Author: sunpoet Date: Sun Feb 25 05:34:33 2018 New Revision: 462934 URL: https://svnweb.freebsd.org/changeset/ports/462934 Log: Update to 1.9.1 - Add LICENSE_FILE - Update RUN_DEPENDS: use newer django - Fix version requirement of RUN_DEPENDS - Allow concurrent installation (USE_PYTHON=concurrent) - Add PyPI as primary WWW - Update WWW - Take maintainership Changes: https://github.com/jazzband/django-debug-toolbar/blob/master/docs/changes.rst Modified: head/www/py-django-debug-toolbar/Makefile head/www/py-django-debug-toolbar/distinfo head/www/py-django-debug-toolbar/pkg-descr Modified: head/www/py-django-debug-toolbar/Makefile ============================================================================== --- head/www/py-django-debug-toolbar/Makefile Sun Feb 25 05:34:28 2018 (r462933) +++ head/www/py-django-debug-toolbar/Makefile Sun Feb 25 05:34:33 2018 (r462934) @@ -2,21 +2,22 @@ # $FreeBSD$ PORTNAME= django-debug-toolbar -PORTVERSION= 1.8 +PORTVERSION= 1.9.1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Configurable set of panels to display debug information LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django18>=1.4.2:www/py-django18@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}sqlparse>0:databases/py-sqlparse@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=1.8:www/py-django111@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sqlparse>=0.2.0:databases/py-sqlparse@${FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes .include Modified: head/www/py-django-debug-toolbar/distinfo ============================================================================== --- head/www/py-django-debug-toolbar/distinfo Sun Feb 25 05:34:28 2018 (r462933) +++ head/www/py-django-debug-toolbar/distinfo Sun Feb 25 05:34:33 2018 (r462934) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494949198 -SHA256 (django-debug-toolbar-1.8.tar.gz) = e9f08b94f9423ac76cfc287151182bbaddbe7521ae32bef9f9863e2ac58018d3 -SIZE (django-debug-toolbar-1.8.tar.gz) = 111730 +TIMESTAMP = 1519504341 +SHA256 (django-debug-toolbar-1.9.1.tar.gz) = d9ea75659f76d8f1e3eb8f390b47fc5bad0908d949c34a8a3c4c87978eb40a0f +SIZE (django-debug-toolbar-1.9.1.tar.gz) = 112019 Modified: head/www/py-django-debug-toolbar/pkg-descr ============================================================================== --- head/www/py-django-debug-toolbar/pkg-descr Sun Feb 25 05:34:28 2018 (r462933) +++ head/www/py-django-debug-toolbar/pkg-descr Sun Feb 25 05:34:33 2018 (r462934) @@ -2,4 +2,5 @@ The Django Debug Toolbar is a configurable set of pane debug information about the current request/response and when clicked, display more details about the panel's content. -WWW: https://github.com/django-debug-toolbar/django-debug-toolbar/ +WWW: https://pypi.python.org/pypi/django-debug-toolbar +WWW: https://github.com/jazzband/django-debug-toolbar