Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 May 2019 19:19:46 +0000 (UTC)
From:      Dave Cottlehuber <dch@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r502352 - in head/lang: . janet
Message-ID:  <201905231919.x4NJJkx8090928@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dch
Date: Thu May 23 19:19:46 2019
New Revision: 502352
URL: https://svnweb.freebsd.org/changeset/ports/502352

Log:
  lang/janet: new port - functional embeddable lisp with performant data types
  
  Approved by:	jrm (mentor)
  Differential Revision:	https://reviews.freebsd.org/D20379

Added:
  head/lang/janet/
  head/lang/janet/Makefile   (contents, props changed)
  head/lang/janet/distinfo   (contents, props changed)
  head/lang/janet/pkg-descr   (contents, props changed)
  head/lang/janet/pkg-plist   (contents, props changed)
Modified:
  head/lang/Makefile

Modified: head/lang/Makefile
==============================================================================
--- head/lang/Makefile	Thu May 23 19:00:35 2019	(r502351)
+++ head/lang/Makefile	Thu May 23 19:19:46 2019	(r502352)
@@ -155,6 +155,7 @@
     SUBDIR += itcl
     SUBDIR += itcl4
     SUBDIR += jakarta-commons-jelly
+    SUBDIR += janet
     SUBDIR += jimtcl
     SUBDIR += jruby
     SUBDIR += js_of_ocaml

Added: head/lang/janet/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/janet/Makefile	Thu May 23 19:19:46 2019	(r502352)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=		janet
+DISTVERSIONPREFIX=	v
+DISTVERSION=		0.5.0
+CATEGORIES=		lang
+
+MAINTAINER=		dch@FreeBSD.org
+COMMENT=		Functional embeddable lisp with C interop, & performant data types
+
+LICENSE=		MIT
+LICENSE_FILE=		${WRKSRC}/LICENSE
+
+USES=			meson
+USE_LDCONFIG=		yes
+USE_GITHUB=		yes
+GH_ACCOUNT=		janet-lang
+
+MESON_ARGS=		-DJANET_BUILD='\"release\"'
+
+.include <bsd.port.mk>

Added: head/lang/janet/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/janet/distinfo	Thu May 23 19:19:46 2019	(r502352)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1558612570
+SHA256 (janet-lang-janet-v0.5.0_GH0.tar.gz) = f5c90122715869657427cbba62809a1d53eaaced2268e7d55202301d65a75076
+SIZE (janet-lang-janet-v0.5.0_GH0.tar.gz) = 409322

Added: head/lang/janet/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/janet/pkg-descr	Thu May 23 19:19:46 2019	(r502352)
@@ -0,0 +1,7 @@
+Janet is a functional and imperative programming language and bytecode
+interpreter. It is a modern lisp, but lists are replaced by other data
+structures with better utility and performance (arrays, tables, structs,
+tuples). The language also supports bridging to native code written in
+C, meta-programming with macros, and bytecode assembly.
+
+WWW: https://janet-lang.org/

Added: head/lang/janet/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/janet/pkg-plist	Thu May 23 19:19:46 2019	(r502352)
@@ -0,0 +1,10 @@
+bin/janet
+include/janet.h
+include/janetconf.h
+lib/janet/bars.janet
+lib/janet/cook.janet
+lib/janet/highlight.janet
+lib/janet/janet.h
+lib/janet/janetconf.h
+lib/libjanet.so
+man/man1/janet.1.gz



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905231919.x4NJJkx8090928>