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
This commit is contained in:
Kurt Jaeger
2016-04-16 17:31:35 +00:00
parent d828cd4d4f
commit 3bc720dfd2
4 changed files with 29 additions and 0 deletions
+1
View File
@@ -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
+19
View File
@@ -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>
+2
View File
@@ -0,0 +1,2 @@
SHA256 (rjsmin-1.0.12.tar.gz) = dd9591aa73500b08b7db24367f8d32c6470021f39d5ab4e50c7c02e4401386f1
SIZE (rjsmin-1.0.12.tar.gz) = 446822
+7
View File
@@ -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