diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2017-02-09 18:22:28 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2017-02-09 18:22:28 +0000 |
commit | acda83b5c7796d233675aa3a33d20018c594a05d (patch) | |
tree | 42e5177bb5560c7c68ac1ed0b6971f8ed2fc71f7 /lang/py-hy | |
parent | 96a93ecb7c1d1e28dd77f19cd54e38d399b72130 (diff) |
- Add lang/py-hy
Hy is a wonderful dialect of Lisp that's embedded in Python.
Since Hy transforms its Lisp code into the Python Abstract Syntax Tree, you
have the whole beautiful world of Python at your fingertips, in Lisp form!
WWW: http://hylang.org/
PR: 216784
Submitted by: dave@dal.ca
Notes
Notes:
svn path=/head/; revision=433765
Diffstat (limited to 'lang/py-hy')
-rw-r--r-- | lang/py-hy/Makefile | 30 | ||||
-rw-r--r-- | lang/py-hy/distinfo | 3 | ||||
-rw-r--r-- | lang/py-hy/pkg-descr | 6 |
3 files changed, 39 insertions, 0 deletions
diff --git a/lang/py-hy/Makefile b/lang/py-hy/Makefile new file mode 100644 index 000000000000..73c8ee215e3d --- /dev/null +++ b/lang/py-hy/Makefile @@ -0,0 +1,30 @@ +# Created by: David Kalliecharan <dave@dal.ca> +# $FreeBSD$ + +PORTNAME= hy +PORTVERSION= 0.12.1 +CATEGORIES= lang python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dave@dal.ca +COMMENT= Hy is a dialect of lisp that's is embedded in Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}args>0:devel/py-args \ + ${PYTHON_PKGNAMEPREFIX}astor>0:devel/py-astor \ + ${PYTHON_PKGNAMEPREFIX}clint>0:devel/py-clint \ + ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose \ + ${PYTHON_PKGNAMEPREFIX}rply>0:devel/py-rply \ + ${PYTHON_PKGNAMEPREFIX}tox>0:devel/py-tox \ + ${PYTHON_PKGNAMEPREFIX}pygments>0:textproc/py-pygments \ + ${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx \ + ${PYTHON_PKGNAMEPREFIX}sphinx_rtd_theme>0:textproc/py-sphinx_rtd_theme + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/lang/py-hy/distinfo b/lang/py-hy/distinfo new file mode 100644 index 000000000000..c54eea93335f --- /dev/null +++ b/lang/py-hy/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1486664414 +SHA256 (hy-0.12.1.tar.gz) = 5d8f52391a82d5868a0dcf7243fe79d26daf5188f9be108dc8668c8952ba51ba +SIZE (hy-0.12.1.tar.gz) = 63404 diff --git a/lang/py-hy/pkg-descr b/lang/py-hy/pkg-descr new file mode 100644 index 000000000000..0987471c3c1f --- /dev/null +++ b/lang/py-hy/pkg-descr @@ -0,0 +1,6 @@ +Hy is a wonderful dialect of Lisp that's embedded in Python. + +Since Hy transforms its Lisp code into the Python Abstract Syntax Tree, you +have the whole beautiful world of Python at your fingertips, in Lisp form! + +WWW: http://hylang.org/ |