From owner-svn-ports-all@FreeBSD.ORG Sun Jan 25 11:27:08 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B831C829; Sun, 25 Jan 2015 11:27:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8ADEC992; Sun, 25 Jan 2015 11:27:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0PBR8K6011030; Sun, 25 Jan 2015 11:27:08 GMT (envelope-from xmj@FreeBSD.org) Received: (from xmj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0PBR78E011026; Sun, 25 Jan 2015 11:27:07 GMT (envelope-from xmj@FreeBSD.org) Message-Id: <201501251127.t0PBR78E011026@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: xmj set sender to xmj@FreeBSD.org using -f From: Johannes Jost Meixner Date: Sun, 25 Jan 2015 11:27:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377881 - in head/lang: . lci X-SVN-Group: ports-head 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.18-1 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: Sun, 25 Jan 2015 11:27:08 -0000 Author: xmj Date: Sun Jan 25 11:27:06 2015 New Revision: 377881 URL: https://svnweb.freebsd.org/changeset/ports/377881 QAT: https://qat.redports.org/buildarchive/r377881/ Log: lang/lci: Add port. This is the original LOLCODE interpreter. WWW: http://lolcode.org PR: 196785 Differential Revision: https://reviews.freebsd.org/D1632 Submitted by: Maxim Filimonov Approved by: koobs (mentor) Added: head/lang/lci/ head/lang/lci/Makefile (contents, props changed) head/lang/lci/distinfo (contents, props changed) head/lang/lci/pkg-descr (contents, props changed) Modified: head/lang/Makefile Modified: head/lang/Makefile ============================================================================== --- head/lang/Makefile Sun Jan 25 11:15:40 2015 (r377880) +++ head/lang/Makefile Sun Jan 25 11:27:06 2015 (r377881) @@ -126,6 +126,7 @@ SUBDIR += kawa SUBDIR += kturtle SUBDIR += lafontaine + SUBDIR += lci SUBDIR += libhx SUBDIR += libjit SUBDIR += libobjc2 Added: head/lang/lci/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/lci/Makefile Sun Jan 25 11:27:06 2015 (r377881) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= lci +PORTVERSION= 0.11.2 +CATEGORIES= lang + +MAINTAINER= che@bein.link +COMMENT= Original LOLCODE interpreter + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +USE_GITHUB= yes +GH_ACCOUNT= justinmeza +GH_COMMIT= 2464d0c +GH_TAGNAME= v0.11.2 + +USES= cmake +PLIST_FILES= bin/lci + +.include Added: head/lang/lci/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/lci/distinfo Sun Jan 25 11:27:06 2015 (r377881) @@ -0,0 +1,2 @@ +SHA256 (lci-0.11.2.tar.gz) = 92a97b9dd35a68e29f256cf359026076daf6dcb381391808ad1b4f94a772c8be +SIZE (lci-0.11.2.tar.gz) = 312142 Added: head/lang/lci/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/lci/pkg-descr Sun Jan 25 11:27:06 2015 (r377881) @@ -0,0 +1,3 @@ +This is the original LOLCODE interpreter. + +WWW: http://lolcode.org