svn commit: r548745 - in head/misc: . tlci

Li-Wen Hsu lwhsu at FreeBSD.org
Tue Sep 15 19:58:55 UTC 2020


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 at 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 at 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


More information about the svn-ports-all mailing list