@@ -51,7 +51,7 @@ def _get_files(self, d, results, filterfun=None):
5151class FastRReleaseProject (FastRProjectAdapter ): # pylint: disable=too-many-ancestors
5252 '''
5353 Custom class for creating the FastR release project, which supports the
54- FASTR_RELEASE distribution.
54+ FASTR_GRAALVM_RELEASE distribution.
5555 '''
5656 def __init__ (self , suite , name , deps , workingSets , theLicense , ** args ):
5757 FastRProjectAdapter .__init__ (self , suite , name , deps , workingSets , theLicense )
@@ -145,22 +145,6 @@ def build(self):
145145 self ._template (rscript_launcher , join (bin_dir , 'Rscript' ), template_dict )
146146
147147def mx_register_dynamic_suite_constituents (register_project , register_distribution ):
148- fastr_release_distribution = mx .JARDistribution (
149- suite = _fastr_suite ,
150- name = "FASTR_RELEASE" ,
151- subDir = None ,
152- path = "mxbuild/dists/<os>/<arch>/fastr-release.jar" ,
153- sourcesPath = None ,
154- deps = ["com.oracle.truffle.r.release" ],
155- mainClass = None ,
156- excludedLibs = [],
157- distDependencies = [],
158- javaCompliance = None ,
159- platformDependent = True ,
160- theLicense = None
161- )
162- fastr_release_distribution .description = "a binary release of FastR"
163-
164148 fastr_graalvm_release = mx .NativeTARDistribution (
165149 suite = _fastr_suite ,
166150 name = "FASTR_GRAALVM_RELEASE" ,
@@ -170,11 +154,8 @@ def mx_register_dynamic_suite_constituents(register_project, register_distributi
170154 platformDependent = True ,
171155 theLicense = None ,
172156 relpath = True ,
173- output = None ,
174- overlaps = ["FASTR_RELEASE" ]
157+ output = None
175158 )
176-
177- register_distribution (fastr_release_distribution )
178159 register_distribution (fastr_graalvm_release )
179160
180161
0 commit comments