From owner-svn-ports-head@freebsd.org Fri Feb 10 19:44:50 2017 Return-Path: Delivered-To: svn-ports-head@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 E9AC3CD9E77; Fri, 10 Feb 2017 19:44:50 +0000 (UTC) (envelope-from krion@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 9DA691E86; Fri, 10 Feb 2017 19:44:50 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1AJinPU031345; Fri, 10 Feb 2017 19:44:49 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1AJin0v031341; Fri, 10 Feb 2017 19:44:49 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201702101944.v1AJin0v031341@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarew Date: Fri, 10 Feb 2017 19:44:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433823 - in head/www: . py-libsass X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Feb 2017 19:44:51 -0000 Author: krion Date: Fri Feb 10 19:44:49 2017 New Revision: 433823 URL: https://svnweb.freebsd.org/changeset/ports/433823 Log: Add new port www/py-libsass A simple Python extension module sass which is binding Libsass (written in C/C++ by Hampton Catlin and Aaron Leung). WWW: https://pypi.python.org/pypi/libsass PR: 216961 Submitted by: yuri@rawbw.com Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9531 Added: head/www/py-libsass/ head/www/py-libsass/Makefile (contents, props changed) head/www/py-libsass/distinfo (contents, props changed) head/www/py-libsass/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Feb 10 19:42:20 2017 (r433822) +++ head/www/Makefile Fri Feb 10 19:44:49 2017 (r433823) @@ -1685,6 +1685,7 @@ SUBDIR += py-jonpy SUBDIR += py-jswebkit SUBDIR += py-kallithea + SUBDIR += py-libsass SUBDIR += py-mechanize SUBDIR += py-meld SUBDIR += py-meld3 Added: head/www/py-libsass/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-libsass/Makefile Fri Feb 10 19:44:49 2017 (r433823) @@ -0,0 +1,20 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= libsass +PORTVERSION= 0.12.3 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Straightforward binding of libsass for Python + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/www/py-libsass/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-libsass/distinfo Fri Feb 10 19:44:49 2017 (r433823) @@ -0,0 +1,3 @@ +TIMESTAMP = 1486716801 +SHA256 (libsass-0.12.3.tar.gz) = 236762af9c693bb72ed92d65ff4a5a77d27af9494b6174fbec7e6308416673b0 +SIZE (libsass-0.12.3.tar.gz) = 295246 Added: head/www/py-libsass/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-libsass/pkg-descr Fri Feb 10 19:44:49 2017 (r433823) @@ -0,0 +1,4 @@ +A simple Python extension module sass which is binding Libsass +(written in C/C++ by Hampton Catlin and Aaron Leung). + +WWW: https://pypi.python.org/pypi/libsass