Date: Sun, 25 Aug 2019 18:47:30 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509837 - in head/www: . py-django-context-decorator Message-ID: <201908251847.x7PIlUjB002708@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Aug 25 18:47:30 2019 New Revision: 509837 URL: https://svnweb.freebsd.org/changeset/ports/509837 Log: Add py-django-context-decorator 1.5.0 Python package for Django removing the need to call super().get_context_data(**kwargs) in nearly every Django view. WWW: https://github.com/rixx/django-context-decorator - While I'm here: - Fix USES=python - Update WWW PR: 239048 Submitted by: Alexander Sieg <alex@xanderio.de> Added: head/www/py-django-context-decorator/ head/www/py-django-context-decorator/Makefile (contents, props changed) head/www/py-django-context-decorator/distinfo (contents, props changed) head/www/py-django-context-decorator/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Aug 25 18:47:01 2019 (r509836) +++ head/www/Makefile Sun Aug 25 18:47:30 2019 (r509837) @@ -1532,6 +1532,7 @@ SUBDIR += py-django-configurations SUBDIR += py-django-constance SUBDIR += py-django-contact-form + SUBDIR += py-django-context-decorator SUBDIR += py-django-contrib-comments SUBDIR += py-django-cors-headers SUBDIR += py-django-countries Added: head/www/py-django-context-decorator/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-context-decorator/Makefile Sun Aug 25 18:47:30 2019 (r509837) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= django-context-decorator +PORTVERSION= 1.5.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +DISTNAME= django_context_decorator-${PORTVERSION} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= alex@axanderio.de +COMMENT= Remove the need to call super().get_context_data(**kwargs) in nearly every view + +LICENSE= BSD3CLAUSE + +USES= python:3.6+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/www/py-django-context-decorator/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-context-decorator/distinfo Sun Aug 25 18:47:30 2019 (r509837) @@ -0,0 +1,3 @@ +TIMESTAMP = 1563114827 +SHA256 (django_context_decorator-1.5.0.tar.gz) = 389f67e54079c3b1dd130ced31ade9bf79045f456d39b050c940d61135dccb9a +SIZE (django_context_decorator-1.5.0.tar.gz) = 2818 Added: head/www/py-django-context-decorator/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-context-decorator/pkg-descr Sun Aug 25 18:47:30 2019 (r509837) @@ -0,0 +1,4 @@ +Python package for Django removing the need to call +super().get_context_data(**kwargs) in nearly every Django view. + +WWW: https://github.com/rixx/django-context-decorator
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908251847.x7PIlUjB002708>