From owner-cvs-all@FreeBSD.ORG Thu Jun 15 14:54:58 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23BEC16A47A; Thu, 15 Jun 2006 14:54:58 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E371843D45; Thu, 15 Jun 2006 14:54:57 +0000 (GMT) (envelope-from novel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k5FEsvvN053909; Thu, 15 Jun 2006 14:54:57 GMT (envelope-from novel@repoman.freebsd.org) Received: (from novel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k5FEsvgE053908; Thu, 15 Jun 2006 14:54:57 GMT (envelope-from novel) Message-Id: <200606151454.k5FEsvgE053908@repoman.freebsd.org> From: Roman Bogorodskiy Date: Thu, 15 Jun 2006 14:54:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang Makefile ports/lang/arena Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 14:54:58 -0000 novel 2006-06-15 14:54:57 UTC FreeBSD ports repository Modified files: lang Makefile Added files: lang/arena Makefile distinfo pkg-descr pkg-plist Log: The Arena language was designed with the following main features in mind, most of which were added on top of a very C-like core to support better ad-hoc scripting: * syntax similar to ANSI C * standard library similar to ANSI C * automatic memory management * runtime polymorphism * support for exceptions * support for anonymous functions Additionally, an interpreter for the Arena language can be implemented to be very compact in terms of both source code size and memory consumption. WWW: http://www.minimalinux.org/arena/ Revision Changes Path 1.489 +1 -0 ports/lang/Makefile 1.1 +19 -0 ports/lang/arena/Makefile (new) 1.1 +3 -0 ports/lang/arena/distinfo (new) 1.1 +15 -0 ports/lang/arena/pkg-descr (new) 1.1 +5 -0 ports/lang/arena/pkg-plist (new)