diff --git a/www/Makefile b/www/Makefile index 71c53041a5c4..83f68ed95f5a 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1489,6 +1489,7 @@ SUBDIR += py-django-app-plugins SUBDIR += py-django-appconf SUBDIR += py-django-appmedia + SUBDIR += py-django-assets SUBDIR += py-django-auth-ldap SUBDIR += py-django-caching-app-plugins SUBDIR += py-django-classy-tags diff --git a/www/py-django-assets/Makefile b/www/py-django-assets/Makefile new file mode 100644 index 000000000000..c643c0d934af --- /dev/null +++ b/www/py-django-assets/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= django-assets +PORTVERSION= 0.10 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Compress and merge CSS and Javascript files + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>0:${PORTSDIR}/www/py-django \ + ${PYTHON_PKGNAMEPREFIX}webassets>0:${PORTSDIR}/www/py-webassets + +USES= python +USE_PYTHON= autoplist distutils + +.include diff --git a/www/py-django-assets/distinfo b/www/py-django-assets/distinfo new file mode 100644 index 000000000000..c9fafc9e9d47 --- /dev/null +++ b/www/py-django-assets/distinfo @@ -0,0 +1,2 @@ +SHA256 (django-assets-0.10.tar.gz) = 74ae30bb268335eca9229e173ce9074ea9332da769740f6df2cbe50ef858b2c8 +SIZE (django-assets-0.10.tar.gz) = 29563 diff --git a/www/py-django-assets/pkg-descr b/www/py-django-assets/pkg-descr new file mode 100644 index 000000000000..6daaf60f798a --- /dev/null +++ b/www/py-django-assets/pkg-descr @@ -0,0 +1,4 @@ +Integrates the webassets library with Django, adding support for merging, +minifying and compiling CSS and Javascript files. + +WWW: https://github.com/miracle2k/django-assets