From owner-svn-ports-all@freebsd.org Sat Apr 16 17:27:07 2016 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 5FABAB10A01; Sat, 16 Apr 2016 17:27:07 +0000 (UTC) (envelope-from pi@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 1D9AC1827; Sat, 16 Apr 2016 17:27:07 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3GHR6Cw061109; Sat, 16 Apr 2016 17:27:06 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3GHR5hs061104; Sat, 16 Apr 2016 17:27:05 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201604161727.u3GHR5hs061104@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 16 Apr 2016 17:27:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413464 - in head/archivers: . py-rcssmin X-SVN-Group: ports-head 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.21 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, 16 Apr 2016 17:27:07 -0000 Author: pi Date: Sat Apr 16 17:27:05 2016 New Revision: 413464 URL: https://svnweb.freebsd.org/changeset/ports/413464 Log: New port: archivers/py-rcssmin This module is a re-implementation aiming for speed instead of maximum compression, so it can be used at runtime (rather than during a preprocessing step). RCSSmin does syntactical compression only (removing spaces, comments and possibly semicolons). It does not provide semantic compression (like removing empty blocks, collapsing redundant properties etc). It does, however, support various CSS hacks (by keeping them working as intended). WWW: https://github.com/ndparker/rcssmin PR: 208833 Submitted by: Ultima1252@gmail.com Added: head/archivers/py-rcssmin/ head/archivers/py-rcssmin/Makefile (contents, props changed) head/archivers/py-rcssmin/distinfo (contents, props changed) head/archivers/py-rcssmin/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Sat Apr 16 17:17:12 2016 (r413463) +++ head/archivers/Makefile Sat Apr 16 17:27:05 2016 (r413464) @@ -170,6 +170,7 @@ SUBDIR += py-pyliblzma SUBDIR += py-python-snappy SUBDIR += py-rarfile + SUBDIR += py-rcssmin SUBDIR += py-warctools SUBDIR += py3-libarchive-c SUBDIR += qpress Added: head/archivers/py-rcssmin/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-rcssmin/Makefile Sat Apr 16 17:27:05 2016 (r413464) @@ -0,0 +1,19 @@ +# Created by: Ultima +# $FreeBSD$ + +PORTNAME= rcssmin +PORTVERSION= 1.0.6 +CATEGORIES= archivers python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ultima1252@gmail.com +COMMENT= Fast CSS minifier for Python + +LICENSE= APACHE20 + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/archivers/py-rcssmin/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-rcssmin/distinfo Sat Apr 16 17:27:05 2016 (r413464) @@ -0,0 +1,2 @@ +SHA256 (rcssmin-1.0.6.tar.gz) = ca87b695d3d7864157773a61263e5abb96006e9ff0e021eff90cbe0e1ba18270 +SIZE (rcssmin-1.0.6.tar.gz) = 582894 Added: head/archivers/py-rcssmin/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-rcssmin/pkg-descr Sat Apr 16 17:27:05 2016 (r413464) @@ -0,0 +1,9 @@ +This module is a re-implementation aiming for speed instead of maximum +compression, so it can be used at runtime (rather than during a +preprocessing step). RCSSmin does syntactical compression only (removing +spaces, comments and possibly semicolons). It does not provide semantic +compression (like removing empty blocks, collapsing redundant properties +etc). It does, however, support various CSS hacks (by keeping them +working as intended). + +WWW: https://github.com/ndparker/rcssmin