Date: Sat, 16 Apr 2016 17:31:35 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413467 - in head/archivers: . py-rjsmin Message-ID: <201604161731.u3GHVZj0061798@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Sat Apr 16 17:31:35 2016 New Revision: 413467 URL: https://svnweb.freebsd.org/changeset/ports/413467 Log: New port: archivers/py-rjsmin rJSmin is a javascript minifier written in python. The minifier is based on the semantics of jsmin.c by Douglas Crockford. The module is a re-implementation aiming for speed, so it can be used at runtime (rather than during a preprocessing step). Usually it produces the same results as the original jsmin.c. WWW: https://github.com/ndparker/rjsmin PR: 208834 Submitted by: Ultima1252@gmail.com Added: head/archivers/py-rjsmin/ head/archivers/py-rjsmin/Makefile (contents, props changed) head/archivers/py-rjsmin/distinfo (contents, props changed) head/archivers/py-rjsmin/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Sat Apr 16 17:29:59 2016 (r413466) +++ head/archivers/Makefile Sat Apr 16 17:31:35 2016 (r413467) @@ -171,6 +171,7 @@ SUBDIR += py-python-snappy SUBDIR += py-rarfile SUBDIR += py-rcssmin + SUBDIR += py-rjsmin SUBDIR += py-warctools SUBDIR += py3-libarchive-c SUBDIR += qpress Added: head/archivers/py-rjsmin/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-rjsmin/Makefile Sat Apr 16 17:31:35 2016 (r413467) @@ -0,0 +1,19 @@ +# Created by: Ultima <ultima1252@gmail.com> +# $FreeBSD$ + +PORTNAME= rjsmin +PORTVERSION= 1.0.12 +CATEGORIES= archivers python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ultima1252@gmail.com +COMMENT= Fast javascript minifier for Python + +LICENSE= APACHE20 + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/archivers/py-rjsmin/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-rjsmin/distinfo Sat Apr 16 17:31:35 2016 (r413467) @@ -0,0 +1,2 @@ +SHA256 (rjsmin-1.0.12.tar.gz) = dd9591aa73500b08b7db24367f8d32c6470021f39d5ab4e50c7c02e4401386f1 +SIZE (rjsmin-1.0.12.tar.gz) = 446822 Added: head/archivers/py-rjsmin/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-rjsmin/pkg-descr Sat Apr 16 17:31:35 2016 (r413467) @@ -0,0 +1,7 @@ +rJSmin is a javascript minifier written in python. The minifier is based +on the semantics of jsmin.c by Douglas Crockford. The module is a +re-implementation aiming for speed, so it can be used at runtime +(rather than during a preprocessing step). Usually it produces the same +results as the original jsmin.c. + +WWW: https://github.com/ndparker/rjsmin
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604161731.u3GHVZj0061798>