From owner-svn-ports-all@freebsd.org Sun Nov 12 19:27:54 2017 Return-Path: Delivered-To: svn-ports-all@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 B183AC7B2B2; Sun, 12 Nov 2017 19:27:54 +0000 (UTC) (envelope-from rene@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 7E71D727F0; Sun, 12 Nov 2017 19:27:54 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vACJRrAg085860; Sun, 12 Nov 2017 19:27:53 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vACJRrY9085856; Sun, 12 Nov 2017 19:27:53 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201711121927.vACJRrY9085856@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 12 Nov 2017 19:27:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454076 - in head/lang: . owl-lisp X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head/lang: . owl-lisp X-SVN-Commit-Revision: 454076 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Nov 2017 19:27:54 -0000 Author: rene Date: Sun Nov 12 19:27:53 2017 New Revision: 454076 URL: https://svnweb.freebsd.org/changeset/ports/454076 Log: Owl Lisp is a functional dialect of the Scheme programming language. It is mainly based on the applicative subset of the R7RS standard. WWW: https://github.com/aoh/owl-lisp/ Added: head/lang/owl-lisp/ head/lang/owl-lisp/Makefile (contents, props changed) head/lang/owl-lisp/distinfo (contents, props changed) head/lang/owl-lisp/pkg-descr (contents, props changed) Modified: head/lang/Makefile Modified: head/lang/Makefile ============================================================================== --- head/lang/Makefile Sun Nov 12 19:19:37 2017 (r454075) +++ head/lang/Makefile Sun Nov 12 19:27:53 2017 (r454076) @@ -205,6 +205,7 @@ SUBDIR += oo2c SUBDIR += opencoarrays SUBDIR += opendylan + SUBDIR += owl-lisp SUBDIR += p2c SUBDIR += p5-Data-JavaScript SUBDIR += p5-Error Added: head/lang/owl-lisp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/owl-lisp/Makefile Sun Nov 12 19:27:53 2017 (r454076) @@ -0,0 +1,27 @@ +# Created by: rene@FreeBSD.org +# $FreeBSD$ + +PORTNAME= owl-lisp +PORTVERSION= 0.1.12 +DISTVERSIONPREFIX= v +CATEGORIES= lang + +MAINTAINER= rene@FreeBSD.org +COMMENT= Functional dialect of Scheme + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENCE + +USE_GITHUB= yes +GH_ACCOUNT= aoh + +PLIST_FILES= bin/ol \ + bin/ovm \ + man/man1/ol.1.gz \ + man/man1/ovm.1.gz + +MAKE_ENV+= MANDIR=/man + +# Do not strip the binaries because that will rebuild them during stage. + +.include Added: head/lang/owl-lisp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/owl-lisp/distinfo Sun Nov 12 19:27:53 2017 (r454076) @@ -0,0 +1,3 @@ +TIMESTAMP = 1510511134 +SHA256 (aoh-owl-lisp-v0.1.12_GH0.tar.gz) = c6ce27ee0e9185c7f8714e6afd2db43cbb8961a5c25e5d049ae31d213499bfd9 +SIZE (aoh-owl-lisp-v0.1.12_GH0.tar.gz) = 570306 Added: head/lang/owl-lisp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/owl-lisp/pkg-descr Sun Nov 12 19:27:53 2017 (r454076) @@ -0,0 +1,4 @@ +Owl Lisp is a functional dialect of the Scheme programming language. +It is mainly based on the applicative subset of the R7RS standard. + +WWW: https://github.com/aoh/owl-lisp/