From owner-svn-ports-all@freebsd.org Fri Sep 6 07:39:47 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4EBBEEB4A6; Fri, 6 Sep 2019 07:39:47 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46PqFv13X5z40Vm; Fri, 6 Sep 2019 07:39:47 +0000 (UTC) (envelope-from koobs@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 0789E196ED; Fri, 6 Sep 2019 07:39:47 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x867dkuk033093; Fri, 6 Sep 2019 07:39:46 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x867dkgl033087; Fri, 6 Sep 2019 07:39:46 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201909060739.x867dkgl033087@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 6 Sep 2019 07:39:46 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: in head/www: . py-django-staticinline X-SVN-Commit-Revision: 511283 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Sep 2019 07:39:47 -0000 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 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