From owner-svn-ports-all@freebsd.org Sat Dec 30 08:12:03 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4175DEB0A95; Sat, 30 Dec 2017 08:12:03 +0000 (UTC) (envelope-from yuri@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 mx1.freebsd.org (Postfix) with ESMTPS id 0BA8473DE3; Sat, 30 Dec 2017 08:12:02 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBU8C2nA007170; Sat, 30 Dec 2017 08:12:02 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBU8C12n007166; Sat, 30 Dec 2017 08:12:01 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201712300812.vBU8C12n007166@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 30 Dec 2017 08:12:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457589 - in head/www: . py-lesscpy X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/www: . py-lesscpy X-SVN-Commit-Revision: 457589 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.25 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: Sat, 30 Dec 2017 08:12:03 -0000 Author: yuri Date: Sat Dec 30 08:12:01 2017 New Revision: 457589 URL: https://svnweb.freebsd.org/changeset/ports/457589 Log: New port: www/py-lesscpy: Python LESS compiler PR: 224460 Submitted by: Shane Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13655 Added: head/www/py-lesscpy/ head/www/py-lesscpy/Makefile (contents, props changed) head/www/py-lesscpy/distinfo (contents, props changed) head/www/py-lesscpy/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Dec 30 06:58:29 2017 (r457588) +++ head/www/Makefile Sat Dec 30 08:12:01 2017 (r457589) @@ -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 Added: head/www/py-lesscpy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-lesscpy/Makefile Sat Dec 30 08:12:01 2017 (r457589) @@ -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 Added: head/www/py-lesscpy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-lesscpy/distinfo Sat Dec 30 08:12:01 2017 (r457589) @@ -0,0 +1,3 @@ +TIMESTAMP = 1513674249 +SHA256 (lesscpy-0.12.0.tar.gz) = 5c552757efc6e5d14d9a917ebdd036e7b6ff12ae68a5beb64a0a1cf856a098b5 +SIZE (lesscpy-0.12.0.tar.gz) = 168823 Added: head/www/py-lesscpy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-lesscpy/pkg-descr Sat Dec 30 08:12:01 2017 (r457589) @@ -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