From owner-svn-ports-head@freebsd.org Fri Apr 13 14:41:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7986FF8DFC7; Fri, 13 Apr 2018 14:41:22 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2B0E070461; Fri, 13 Apr 2018 14:41:22 +0000 (UTC) (envelope-from garga@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 2610C1B18D; Fri, 13 Apr 2018 14:41:22 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3DEfM6H078127; Fri, 13 Apr 2018 14:41:22 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3DEfLYN078121; Fri, 13 Apr 2018 14:41:21 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201804131441.w3DEfLYN078121@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Fri, 13 Apr 2018 14:41:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467243 - in head/lang: . coffeescript X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: in head/lang: . coffeescript X-SVN-Commit-Revision: 467243 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Apr 2018 14:41:22 -0000 Author: garga Date: Fri Apr 13 14:41:21 2018 New Revision: 467243 URL: https://svnweb.freebsd.org/changeset/ports/467243 Log: CoffeeScript is a little language that compiles into JavaScript. Underneath that awkward Java-esque patina, JavaScript has always had a gorgeous heart. It's an attempt to expose the good parts of JavaScript in a simple way. WWW: http://coffeescript.org/ PR: 227412 Submitted by: egypcio@googlemail.com Differential Revision: https://reviews.freebsd.org/D15025 Added: head/lang/coffeescript/ head/lang/coffeescript/Makefile (contents, props changed) head/lang/coffeescript/distinfo (contents, props changed) head/lang/coffeescript/pkg-descr (contents, props changed) head/lang/coffeescript/pkg-plist (contents, props changed) Modified: head/lang/Makefile Modified: head/lang/Makefile ============================================================================== --- head/lang/Makefile Fri Apr 13 14:26:37 2018 (r467242) +++ head/lang/Makefile Fri Apr 13 14:41:21 2018 (r467243) @@ -46,6 +46,7 @@ SUBDIR += cmucl SUBDIR += cmucl-extra SUBDIR += cocor + SUBDIR += coffeescript SUBDIR += cparser SUBDIR += crystal SUBDIR += csharp-mode.el Added: head/lang/coffeescript/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/coffeescript/Makefile Fri Apr 13 14:41:21 2018 (r467243) @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= coffeescript +DISTVERSION= 2.2.4 +CATEGORIES= lang + +MAINTAINER= egypcio@googlemail.com +COMMENT= Unfancy JavaScript + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= node:www/node + +USE_GITHUB= yes +GH_ACCOUNT= jashkenas + +PORTEXAMPLES= *.coffee + +CONFLICTS_INSTALL= cake + +OPTIONS_DEFINE= EXAMPLES + +NO_BUILD= yes + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/lib/node_modules/${PORTNAME} + ${INSTALL_SCRIPT} ${WRKSRC}/bin/cake ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/bin/coffee ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}/*.js \ + ${STAGEDIR}${PREFIX}/lib/node_modules/${PORTNAME} + +do-install-EXAMPLES-on: + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/documentation/examples/${PORTEXAMPLES} \ + ${STAGEDIR}${EXAMPLESDIR} + +.include Added: head/lang/coffeescript/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/coffeescript/distinfo Fri Apr 13 14:41:21 2018 (r467243) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523012723 +SHA256 (jashkenas-coffeescript-2.2.4_GH0.tar.gz) = 933b6d761807fab47f72305b232fd38e50cb21b7268372b846c7c645abf4a3b4 +SIZE (jashkenas-coffeescript-2.2.4_GH0.tar.gz) = 1727657 Added: head/lang/coffeescript/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/coffeescript/pkg-descr Fri Apr 13 14:41:21 2018 (r467243) @@ -0,0 +1,5 @@ +CoffeeScript is a little language that compiles into JavaScript. Underneath that +awkward Java-esque patina, JavaScript has always had a gorgeous heart. It's an +attempt to expose the good parts of JavaScript in a simple way. + +WWW: http://coffeescript.org/ Added: head/lang/coffeescript/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/coffeescript/pkg-plist Fri Apr 13 14:41:21 2018 (r467243) @@ -0,0 +1,18 @@ +bin/cake +bin/coffee +lib/node_modules/coffeescript/browser.js +lib/node_modules/coffeescript/cake.js +lib/node_modules/coffeescript/coffeescript.js +lib/node_modules/coffeescript/command.js +lib/node_modules/coffeescript/grammar.js +lib/node_modules/coffeescript/helpers.js +lib/node_modules/coffeescript/index.js +lib/node_modules/coffeescript/lexer.js +lib/node_modules/coffeescript/nodes.js +lib/node_modules/coffeescript/optparse.js +lib/node_modules/coffeescript/parser.js +lib/node_modules/coffeescript/register.js +lib/node_modules/coffeescript/repl.js +lib/node_modules/coffeescript/rewriter.js +lib/node_modules/coffeescript/scope.js +lib/node_modules/coffeescript/sourcemap.js