Date: Fri, 6 Sep 2019 07:39:46 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r511283 - in head/www: . py-django-staticinline Message-ID: <201909060739.x867dkgl033087@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Fri Sep 6 07:39:45 2019 New Revision: 511283 URL: https://svnweb.freebsd.org/changeset/ports/511283 Log: [NEW] www/py-django-staticinline: Django template tag to load static files inline with your template Similiar to Django's native static templatetag, but this includes the file directly in the template, rather than a link to it. WWW: https://github.com/bartTC/django-staticinline Added: head/www/py-django-staticinline/ head/www/py-django-staticinline/Makefile (contents, props changed) head/www/py-django-staticinline/distinfo (contents, props changed) head/www/py-django-staticinline/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Sep 6 07:20:35 2019 (r511282) +++ head/www/Makefile Fri Sep 6 07:39:45 2019 (r511283) @@ -1597,6 +1597,7 @@ SUBDIR += py-django-sortedm2m SUBDIR += py-django-star-ratings SUBDIR += py-django-statici18n + SUBDIR += py-django-staticinline SUBDIR += py-django-storages SUBDIR += py-django-subdomains SUBDIR += py-django-sudo Added: head/www/py-django-staticinline/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-staticinline/Makefile Fri Sep 6 07:39:45 2019 (r511283) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= django-staticinline +PORTVERSION= 1.3.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Django template tag to load static files inline with your template + +LICENSE= MIT +#LICENSE_FILE= Not yet packaged in sdist + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/www/py-django-staticinline/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-staticinline/distinfo Fri Sep 6 07:39:45 2019 (r511283) @@ -0,0 +1,3 @@ +TIMESTAMP = 1567752527 +SHA256 (django-staticinline-1.3.1.tar.gz) = 4d936460e8173d3b131379e3af419c42eb3f956efba34ec00eb7972e904d45ce +SIZE (django-staticinline-1.3.1.tar.gz) = 20843 Added: head/www/py-django-staticinline/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-staticinline/pkg-descr Fri Sep 6 07:39:45 2019 (r511283) @@ -0,0 +1,4 @@ +Similiar to Django's native static templatetag, but this includes the file +directly in the template, rather than a link to it. + +WWW: https://github.com/bartTC/django-staticinline
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909060739.x867dkgl033087>