From owner-svn-ports-all@freebsd.org Tue Sep 15 19:58:55 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A556F3DE898; Tue, 15 Sep 2020 19:58:55 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BrYvg3xhBz4YkN; Tue, 15 Sep 2020 19:58:55 +0000 (UTC) (envelope-from lwhsu@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 66B42D4E1; Tue, 15 Sep 2020 19:58:55 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08FJwtJl078161; Tue, 15 Sep 2020 19:58:55 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08FJwsRu078157; Tue, 15 Sep 2020 19:58:54 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202009151958.08FJwsRu078157@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Tue, 15 Sep 2020 19:58:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548745 - in head/misc: . tlci X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: in head/misc: . tlci X-SVN-Commit-Revision: 548745 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.33 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: Tue, 15 Sep 2020 19:58:55 -0000 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 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 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