diff options
author | yuri <yuri@FreeBSD.org> | 2017-12-30 16:12:01 +0800 |
---|---|---|
committer | yuri <yuri@FreeBSD.org> | 2017-12-30 16:12:01 +0800 |
commit | 2a5a746a50119479c7d724ef870f75482479e74e (patch) | |
tree | a10399f803cebc5944cddfc2b7d75b8f83f916e8 /www | |
parent | 609b2487d7b99d1cb1228bce4552894c1275bdef (diff) | |
download | freebsd-ports-gnome-2a5a746a50119479c7d724ef870f75482479e74e.tar.gz freebsd-ports-gnome-2a5a746a50119479c7d724ef870f75482479e74e.tar.zst freebsd-ports-gnome-2a5a746a50119479c7d724ef870f75482479e74e.zip |
New port: www/py-lesscpy: Python LESS compiler
PR: 224460
Submitted by: Shane <FreeBSD@ShaneWare.Biz>
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D13655
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/py-lesscpy/Makefile | 22 | ||||
-rw-r--r-- | www/py-lesscpy/distinfo | 3 | ||||
-rw-r--r-- | www/py-lesscpy/pkg-descr | 5 |
4 files changed, 31 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index dfcf4eb70615..b751d413d344 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1718,6 +1718,7 @@ SUBDIR += py-jsonfield SUBDIR += py-jswebkit SUBDIR += py-kallithea + SUBDIR += py-lesscpy SUBDIR += py-libsass SUBDIR += py-mechanize SUBDIR += py-meld diff --git a/www/py-lesscpy/Makefile b/www/py-lesscpy/Makefile new file mode 100644 index 000000000000..c3bcfe7e4f89 --- /dev/null +++ b/www/py-lesscpy/Makefile @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= lesscpy +DISTVERSION= 0.12.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= FreeBSD@Shaneware.biz +COMMENT= Python LESS compiler + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ply>0:devel/py-ply@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist concurrent +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/www/py-lesscpy/distinfo b/www/py-lesscpy/distinfo new file mode 100644 index 000000000000..fa3182842774 --- /dev/null +++ b/www/py-lesscpy/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1513674249 +SHA256 (lesscpy-0.12.0.tar.gz) = 5c552757efc6e5d14d9a917ebdd036e7b6ff12ae68a5beb64a0a1cf856a098b5 +SIZE (lesscpy-0.12.0.tar.gz) = 168823 diff --git a/www/py-lesscpy/pkg-descr b/www/py-lesscpy/pkg-descr new file mode 100644 index 000000000000..aa738ab73e43 --- /dev/null +++ b/www/py-lesscpy/pkg-descr @@ -0,0 +1,5 @@ +A compiler written in Python for the LESS language. For those of us +not willing or able to have node.js installed in our environment. +Not all features of LESS are supported (yet). + +WWW: https://github.com/lesscpy/lesscpy |