From owner-svn-ports-head@FreeBSD.ORG Wed Nov 26 14:14:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59A284A1; Wed, 26 Nov 2014 14:14:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 2CA63E67; Wed, 26 Nov 2014 14:14:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAQEEMlb075173; Wed, 26 Nov 2014 14:14:22 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAQEEL1P075168; Wed, 26 Nov 2014 14:14:21 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201411261414.sAQEEL1P075168@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Wed, 26 Nov 2014 14:14:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373451 - in head/textproc: . py-tinycss 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.18-1 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: Wed, 26 Nov 2014 14:14:22 -0000 Author: demon Date: Wed Nov 26 14:14:20 2014 New Revision: 373451 URL: https://svnweb.freebsd.org/changeset/ports/373451 QAT: https://qat.redports.org/buildarchive/r373451/ Log: New port: tinycss is a complete yet simple CSS parser for Python. Added: head/textproc/py-tinycss/ head/textproc/py-tinycss/Makefile (contents, props changed) head/textproc/py-tinycss/distinfo (contents, props changed) head/textproc/py-tinycss/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Nov 26 13:30:30 2014 (r373450) +++ head/textproc/Makefile Wed Nov 26 14:14:20 2014 (r373451) @@ -1218,6 +1218,7 @@ SUBDIR += py-stripogram SUBDIR += py-syck SUBDIR += py-texttable + SUBDIR += py-tinycss SUBDIR += py-trans SUBDIR += py-transifex-client SUBDIR += py-translationstring Added: head/textproc/py-tinycss/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-tinycss/Makefile Wed Nov 26 14:14:20 2014 (r373451) @@ -0,0 +1,17 @@ +# Created by: Dmitry Sivachenko +# $FreeBSD$ + +PORTNAME= tinycss +PORTVERSION= 0.3 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +MASTER_SITE_SUBDIR=source/t/${PORTNAME} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= demon@FreeBSD.org +COMMENT= A complete yet simple CSS parser for Python + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/textproc/py-tinycss/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-tinycss/distinfo Wed Nov 26 14:14:20 2014 (r373451) @@ -0,0 +1,2 @@ +SHA256 (tinycss-0.3.tar.gz) = a4adabd1c417080372c789220f7f9985995e74f2fb612848306872a232862cde +SIZE (tinycss-0.3.tar.gz) = 72860 Added: head/textproc/py-tinycss/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-tinycss/pkg-descr Wed Nov 26 14:14:20 2014 (r373451) @@ -0,0 +1,10 @@ +tinycss is a complete yet simple CSS parser for Python. It supports the +full syntax and error handling for CSS 2.1 as well as some CSS 3 modules: + +-- CSS Color 3 +-- CSS Paged Media 3 + +It is designed to be easy to extend for new CSS modules and syntax, and +integrates well with cssselect for Selectors 3 support. + +WWW: https://pypi.python.org/pypi/tinycss