aboutsummaryrefslogtreecommitdiff
path: root/archivers/py-rjsmin
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2016-04-16 17:31:35 +0000
committerKurt Jaeger <pi@FreeBSD.org>2016-04-16 17:31:35 +0000
commit3bc720dfd2503b5266ec1a1283bcadfa9d21928e (patch)
tree29cbf21f414d84f9511799ad46aba9161dfd10a6 /archivers/py-rjsmin
parentd828cd4d4f79340f362b6a52532581f860ba2c6d (diff)
downloadports-3bc720dfd2503b5266ec1a1283bcadfa9d21928e.tar.gz
ports-3bc720dfd2503b5266ec1a1283bcadfa9d21928e.zip
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
Notes
Notes: svn path=/head/; revision=413467
Diffstat (limited to 'archivers/py-rjsmin')
-rw-r--r--archivers/py-rjsmin/Makefile19
-rw-r--r--archivers/py-rjsmin/distinfo2
-rw-r--r--archivers/py-rjsmin/pkg-descr7
3 files changed, 28 insertions, 0 deletions
diff --git a/archivers/py-rjsmin/Makefile b/archivers/py-rjsmin/Makefile
new file mode 100644
index 000000000000..c657a8e08b6c
--- /dev/null
+++ b/archivers/py-rjsmin/Makefile
@@ -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>
diff --git a/archivers/py-rjsmin/distinfo b/archivers/py-rjsmin/distinfo
new file mode 100644
index 000000000000..a04a2195e664
--- /dev/null
+++ b/archivers/py-rjsmin/distinfo
@@ -0,0 +1,2 @@
+SHA256 (rjsmin-1.0.12.tar.gz) = dd9591aa73500b08b7db24367f8d32c6470021f39d5ab4e50c7c02e4401386f1
+SIZE (rjsmin-1.0.12.tar.gz) = 446822
diff --git a/archivers/py-rjsmin/pkg-descr b/archivers/py-rjsmin/pkg-descr
new file mode 100644
index 000000000000..751a826d4cfb
--- /dev/null
+++ b/archivers/py-rjsmin/pkg-descr
@@ -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