Date: Fri, 13 Apr 2018 14:41:21 +0000 (UTC) From: Renato Botelho <garga@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467243 - in head/lang: . coffeescript Message-ID: <201804131441.w3DEfLYN078121@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804131441.w3DEfLYN078121>