Date: Tue, 15 Sep 2020 19:58:54 +0000 (UTC) From: Li-Wen Hsu <lwhsu@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548745 - in head/misc: . tlci Message-ID: <202009151958.08FJwsRu078157@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lwhsu Date: Tue Sep 15 19:58:54 2020 New Revision: 548745 URL: https://svnweb.freebsd.org/changeset/ports/548745 Log: Add misc/tlci: Tiny lambda calculus interpreter in C99 PR: 249344 Submitted by: Nico Sonack <nsonack@outlook.com> Added: head/misc/tlci/ head/misc/tlci/Makefile (contents, props changed) head/misc/tlci/distinfo (contents, props changed) head/misc/tlci/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Tue Sep 15 19:23:49 2020 (r548744) +++ head/misc/Makefile Tue Sep 15 19:58:54 2020 (r548745) @@ -480,6 +480,7 @@ SUBDIR += tkinfo SUBDIR += tkregexp SUBDIR += tkrunit + SUBDIR += tlci SUBDIR += toilet SUBDIR += translate SUBDIR += ttyrec Added: head/misc/tlci/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/tlci/Makefile Tue Sep 15 19:58:54 2020 (r548745) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= tlci +DISTVERSION= 0.1.0.2 +CATEGORIES= misc +MASTER_SITES= https://gitlab.com/herrhotzenplotz/tlci/ + +MAINTAINER= nsonack@outlook.com +COMMENT= Tiny Lambda Calculus interpreter + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITLAB= yes +GL_ACCOUNT= herrhotzenplotz +GL_COMMIT= 4a3dd51a872f36a513f06efa475922259dee91f1 + +PLIST_FILES= ${PREFIX}/bin/tlci \ + ${PREFIX}/man/man8/tlci.8.gz + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/tlci + +.include <bsd.port.mk> Added: head/misc/tlci/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/tlci/distinfo Tue Sep 15 19:58:54 2020 (r548745) @@ -0,0 +1,3 @@ +TIMESTAMP = 1600187213 +SHA256 (herrhotzenplotz-tlci-4a3dd51a872f36a513f06efa475922259dee91f1_GL0.tar.gz) = f4cd58bd4c2e5f6a8af61ec6a1a87180ac3486738d5c8d4df5736541bfaa94dc +SIZE (herrhotzenplotz-tlci-4a3dd51a872f36a513f06efa475922259dee91f1_GL0.tar.gz) = 18410 Added: head/misc/tlci/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/tlci/pkg-descr Tue Sep 15 19:58:54 2020 (r548745) @@ -0,0 +1,4 @@ +The tiny lambda calculus interpreter is a portable interpreter +for an untyped lambda calculus in C99. + +WWW: https://gitlab.com/herrhotzenplotz/tlci
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009151958.08FJwsRu078157>