From owner-svn-ports-head@freebsd.org Thu Feb 9 18:22:30 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71F2ACD411A; Thu, 9 Feb 2017 18:22:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 348D71EF1; Thu, 9 Feb 2017 18:22:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v19IMThJ097451; Thu, 9 Feb 2017 18:22:29 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v19IMSeq097448; Thu, 9 Feb 2017 18:22:28 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201702091822.v19IMSeq097448@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 9 Feb 2017 18:22:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433765 - in head/lang: . py-hy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Feb 2017 18:22:30 -0000 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@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 +# $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 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/