From 85a54714ab3a3332be4738ad9e053d50fc274f3d Mon Sep 17 00:00:00 2001 From: Mick Jordan <mick.jordan@oracle.com> Date: Wed, 24 Aug 2016 06:02:04 -0700 Subject: [PATCH] add description attributes to suite distributions --- mx.fastr/suite.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mx.fastr/suite.py b/mx.fastr/suite.py index af57c3b1ca..352608b61c 100644 --- a/mx.fastr/suite.py +++ b/mx.fastr/suite.py @@ -383,6 +383,7 @@ suite = { "distributions" : { "TRUFFLE_R_PARSER_PROCESSOR" : { + "description" : "internal support for generating the R parser", "subDir" : "truffle", "dependencies" : ["com.oracle.truffle.r.parser.processor"], "exclude" : [ @@ -394,6 +395,7 @@ suite = { }, "FASTR_NATIVE_DEV": { + "description" : "support for overriding the native project implementation in a separate suite", "native" : "true", "relpath" : "true", "dependencies" : ["com.oracle.truffle.r.native"], @@ -404,6 +406,7 @@ suite = { }, "FASTR_RELEASE": { + "description" : "a binary release of FastR", "native" : "true", "dependencies" : ["com.oracle.truffle.r.release"], "relpath" : "true", -- GitLab