svn commit: r433765 - in head/lang: . py-hy

Dmitry Marakasov amdmi3 at FreeBSD.org
Thu Feb 9 18:22:30 UTC 2017


Author: amdmi3
Date: Thu Feb  9 18:22:28 2017
New Revision: 433765
URL: https://svnweb.freebsd.org/changeset/ports/433765

Log:
  - 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 at dal.ca

Added:
  head/lang/py-hy/
  head/lang/py-hy/Makefile   (contents, props changed)
  head/lang/py-hy/distinfo   (contents, props changed)
  head/lang/py-hy/pkg-descr   (contents, props changed)
Modified:
  head/lang/Makefile

Modified: head/lang/Makefile
==============================================================================
--- head/lang/Makefile	Thu Feb  9 18:20:04 2017	(r433764)
+++ head/lang/Makefile	Thu Feb  9 18:22:28 2017	(r433765)
@@ -265,6 +265,7 @@
     SUBDIR += ptoc
     SUBDIR += pure
     SUBDIR += py-clojure
+    SUBDIR += py-hy
     SUBDIR += py-mx-base
     SUBDIR += py-prolog
     SUBDIR += py-qt5-qml

Added: head/lang/py-hy/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/py-hy/Makefile	Thu Feb  9 18:22:28 2017	(r433765)
@@ -0,0 +1,30 @@
+# Created by: David Kalliecharan <dave at dal.ca>
+# $FreeBSD$
+
+PORTNAME=	hy
+PORTVERSION=	0.12.1
+CATEGORIES=	lang python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dave at 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>

Added: head/lang/py-hy/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/py-hy/distinfo	Thu Feb  9 18:22:28 2017	(r433765)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1486664414
+SHA256 (hy-0.12.1.tar.gz) = 5d8f52391a82d5868a0dcf7243fe79d26daf5188f9be108dc8668c8952ba51ba
+SIZE (hy-0.12.1.tar.gz) = 63404

Added: head/lang/py-hy/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/py-hy/pkg-descr	Thu Feb  9 18:22:28 2017	(r433765)
@@ -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/


More information about the svn-ports-head mailing list