forked from jruby/jruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
521 lines (455 loc) · 21.3 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="jar" name="JRuby">
<description>JRuby is a Java implementation of a Ruby runtime.</description>
<!-- First try to load machine-specific properties. -->
<property file="build.properties"/>
<!-- Then set defaults for any values not set by build.properties -->
<property file="default.build.properties"/>
<patternset id="java.src.pattern">
<include name="**/*.java"/>
<exclude unless="sun-misc-signal" name="**/SunSignalFacade.java"/>
</patternset>
<import file="netbeans-ant.xml" optional="true"/>
<import file="ivy/build.xml"/>
<import file="antlib/test.xml"/>
<import file="antlib/spec.xml"/>
<import file="antlib/util.xml"/>
<import file="antlib/dist.xml"/>
<condition property="dev.null" value="/dev/null">
<os family="unix"/>
</condition>
<condition property="dev.null" value="NUL">
<os family="windows"/>
</condition>
<condition property="dev.null" value="dev_null">
<not>
<or>
<os family="unix"/>
<os family="windows"/>
</or>
</not>
</condition>
<!-- test launching: force encoding to UTF-8 because of stupid Macroman on OS X -->
<condition property="test.sysprops.set" value="test.sysprops.mac">
<equals arg1="${java.vendor}" arg2="Apple Inc."/>
</condition>
<condition property="test.sysprops.set" value="test.sysprops.other">
<not>
<equals arg1="${java.vendor}" arg2="Apple Inc."/>
</not>
</condition>
<property name="mac.file.encoding" value="UTF-8"/>
<propertyset id="test.sysprops.mac">
<propertyref name="mac.file.encoding"/>
</propertyset>
<propertyset id="test.sysprops.other">
</propertyset>
<propertyset id="test.sysproperties">
<propertyset refid="${test.sysprops.set}"/>
<mapper type="glob" from="mac.*" to="*"/>
</propertyset>
<!-- if ruby.home is not set, use env var -->
<condition property="ruby.home" value="${env.RUBY_HOME}">
<not>
<isset property="ruby.home"/>
</not>
</condition>
<condition property="is.windows" value="true">
<os family="windows"/>
</condition>
<tstamp>
<format property="build.date" pattern="yyyy-MM-dd"/>
</tstamp>
<property environment="env"/>
<!-- Use JAVA_OPTS env var if set, -ea (supported by all JVMs) otherwise -->
<condition property="java.opts" value="${env.JAVA_OPTS}">
<isset property="env.JAVA_OPTS"/>
</condition>
<condition property="java.opts" value="-ea">
<not>
<isset property="java.opts"/>
</not>
</condition>
<!-- sets up a "make" command from ENV, if available -->
<condition property="make.cmd" value="${env.MAKE}">
<isset property="env.MAKE"/>
</condition>
<condition property="make.cmd" value="make">
<not>
<isset property="make.cmd"/>
</not>
</condition>
<property name="version.ruby" value="${version.ruby.major}.${version.ruby.minor}"/>
<!-- Initializes the build -->
<target name="init" unless="init.hasrun">
<!-- set appropriate spec tag filter if on windows -->
<condition property="spec.windows.flag" value="-g windows">
<os family="windows"/>
</condition>
<!-- if bin/jruby does not exist, copy from bin/jruby.bash -->
<condition property="prepare-bin-jruby.hasrun" value="true">
<available file="bin/jruby"/>
</condition>
<antcall target="prepare-bin-jruby"/>
<!-- Checks if specific libs and versions are avaiable -->
<available property="sun-misc-signal"
classname="sun.misc.Signal"/>
<property name="init.hasrun" value="true"/>
</target>
<!-- Prepares a bin/jruby executable from bin/jruby.bash -->
<target name="prepare-bin-jruby" unless="prepare-bin-jruby.hasrun">
<exec executable="/bin/sh" osfamily="unix">
<arg line="-c 'test -f "${basedir}/bin/jruby" || cp "${basedir}/bin/jruby.bash" "${basedir}/bin/jruby"'"/>
</exec>
<chmod perm="755" file="bin/jruby"/>
</target>
<!-- Creates the directories needed for building -->
<target name="prepare" depends="init, create-dirs, copy-resources">
</target>
<target name="create-dirs" unless="create-dirs.hasrun">
<mkdir dir="${build.dir}"/>
<mkdir dir="${classes.dir}"/>
<mkdir dir="${jruby.classes.dir}"/>
<mkdir dir="${test.classes.dir}"/>
<mkdir dir="${test.results.dir}"/>
<mkdir dir="${html.test.results.dir}"/>
<mkdir dir="${docs.dir}"/>
<mkdir dir="${api.docs.dir}"/>
<property name="create-dirs.hasrun" value="true"/>
</target>
<target name="copy-resources" unless="copy-resources.hasrun">
<copy todir="${jruby.classes.dir}" preservelastmodified="true">
<fileset dir="${src.dir}">
<include name="**/*.rb"/>
</fileset>
</copy>
<property name="copy-resources.hasrun" value="true"/>
</target>
<target name="jar-jruby-dist" depends="jar-jruby">
<antcall target="_osgify-jar_">
<param name="bndfile" value="jruby.bnd"/>
<param name="jar.wrap" value="${lib.dir}/jruby.jar"/>
<param name="bar.wrap" value="${lib.dir}/jruby.bar"/>
</antcall>
</target>
<!-- Use Bnd to wrap the JAR generated by in above task -->
<target name="_osgify-jar_">
<filter token="JRUBY_VERSION" value="${version.jruby}"/>
<copy file="jruby.bnd.template" tofile="${build.dir}/${bndfile}" filtering="true"/>
<taskdef resource="aQute/bnd/ant/taskdef.properties"
classpath="target/bnd.jar"/>
<bndwrap definitions="${build.dir}" output="${dest.lib.dir}">
<fileset file="${jar.wrap}"/>
</bndwrap>
<move file="${bar.wrap}" tofile="${jar.wrap}"
overwrite="true"/>
</target>
<target name="jar-jruby-stdlib" depends="copy-resources, compile" unless="jar-jruby-stdlib.hasrun"
description="Create the 'sdtlib' JRuby jar. Pass 'filename' to adjust.">
<property name="mainclass" value="org.jruby.Main"/>
<property name="filename" value="jruby-stdlib.jar"/>
<property name="bilename" value="jruby-stdlib.bar"/>
<property name="jar-stdlib-home" value="${build.dir}/jar-stdlib/META-INF/jruby.home"/>
<mkdir dir="${jar-stdlib-home}"/>
<copy todir="${jar-stdlib-home}">
<fileset dir="${basedir}">
<patternset refid="dist.bindir.files"/>
<patternset refid="dist.lib.files"/>
</fileset>
</copy>
<java classname="${mainclass}" fork="true" maxmemory="${jruby.launch.memory}" failonerror="true">
<classpath>
<pathelement location="lib/jruby.jar"/>
<pathelement location="${build.dir}/jar-stdlib"/>
</classpath>
<sysproperty key="jruby.home" value="${jar-stdlib-home}"/>
<env key="RUBYOPT" value=""/>
<env key="GEM_HOME" value="${basedir}${jar-stdlib-home}/lib/ruby/gems/shared"/>
<jvmarg line="${java.opts}"/>
<arg line="-S gem install --no-ri --no-rdoc --ignore-dependencies --env-shebang --local ${complete.jar.gems}"/>
</java>
<delete dir="${jar-stdlib-home}/lib/ruby/gems/shared/cache"/>
<jar destfile="${dest.lib.dir}/${filename}">
<fileset dir="${build.dir}/jar-stdlib"/>
<manifest>
<attribute name="Built-By" value="${user.name}"/>
</manifest>
</jar>
<antcall target="_osgify-jar_">
<param name="bndfile" value="jruby-stdlib.bnd"/>
<param name="jar.wrap" value="${dest.lib.dir}/${filename}"/>
<param name="bar.wrap" value="${dest.lib.dir}/${bilename}"/>
</antcall>
<property name="jar-jruby-stdlib.hasrun" value="true"/>
</target>
<target name="jar-jruby-complete" depends="jar-jruby" unless="jar-jruby-complete.hasrun"
description="Create the 'complete' JRuby jar. Pass 'mainclass' and 'filename' to adjust.">
<property name="mainclass" value="org.jruby.Main"/>
<property name="filename" value="jruby-complete.jar"/>
<property name="bilename" value="jruby-complete.bar"/>
<property name="jar-complete-home" value="${build.dir}/jar-complete/META-INF/jruby.home"/>
<mkdir dir="${jar-complete-home}"/>
<copy todir="${jar-complete-home}">
<fileset dir="${basedir}">
<patternset refid="dist.bindir.files"/>
<patternset refid="dist.lib.files"/>
</fileset>
</copy>
<copy todir="${build.dir}/jar-complete/cext">
<fileset dir="${lib.dir}">
<patternset refid="dist.jruby-cext-native.files"/>
</fileset>
</copy>
<java classname="${mainclass}" fork="true" maxmemory="${jruby.launch.memory}" failonerror="true">
<classpath>
<pathelement location="lib/jruby.jar"/>
<pathelement location="${build.dir}/jar-complete"/>
</classpath>
<sysproperty key="jruby.home" value="${jar-complete-home}"/>
<env key="RUBYOPT" value=""/>
<env key="GEM_HOME" value="${basedir}/${jar-complete-home}/lib/ruby/gems/shared"/>
<jvmarg line="${java.opts}"/>
<arg line="-S gem install --no-ri --no-rdoc --ignore-dependencies --env-shebang ${complete.jar.gems}"/>
</java>
<delete dir="${jar-complete-home}/lib/ruby/gems/shared/cache"/>
<jar destfile="${dest.lib.dir}/${filename}">
<zipfileset src="lib/jruby.jar"/>
<fileset dir="${build.dir}/jar-complete"/>
<manifest>
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Main-Class" value="${mainclass}"/>
</manifest>
</jar>
<antcall target="_osgify-jar_">
<param name="bndfile" value="jruby-complete.bnd"/>
<param name="jar.wrap" value="${dest.lib.dir}/${filename}"/>
<param name="bar.wrap" value="${dest.lib.dir}/${bilename}"/>
</antcall>
<property name="jar-jruby-complete.hasrun" value="true"/>
</target>
<target name="jar-console" depends="jar-jruby-complete" description="Create the jruby graphical console jar">
<!-- roll the readline and jline jars into jruby-console.jar -->
<jar destfile="lib/jruby-console.jar" update="true" compress="true">
<manifest>
<attribute name="Main-Class" value="org.jruby.demo.readline.IRBConsole"/>
</manifest>
<zipfileset src="${lib.dir}/jruby-complete.jar"/>
<zipfileset src="${lib.dir}/ruby/shared/readline/readline.jar"/>
<zipfileset src="${build.lib.dir}/jline-${jline.version}.jar"/>
</jar>
</target>
<target name="jar" depends="init" description="Create the jruby.jar file. Used during dev.">
<antcall target="jar-jruby" inheritall="true"/>
</target>
<target name="jar-dist" depends="init"
description="Create the jruby.jar file for distribution.">
<antcall target="jar-jruby-dist" inheritall="true"/>
</target>
<target name="jar-stdlib" depends="init" description="Create the jruby-stdlib.jar file.">
<antcall target="jar-jruby-stdlib" inheritall="true"/>
</target>
<target name="jar-complete" depends="init"
description="Create the jruby-complete.jar file.">
<antcall target="jar-jruby-complete" inheritall="true"/>
</target>
<target name="jar-no-encryption-complete" depends="init"
description="Create the jruby-complete.jar file just like jar-complete, but refrains from including anything with encryption algorithms">
<property name="exclude_openssl" value="true"/>
<antcall target="jar-jruby-complete" inheritall="true"/>
</target>
<target name="compile-stdlib" unless="test">
<mkdir dir="${build.dir}/stdlib"/>
<echo message="Compiling 1.8 stdlib..."/>
<java classname="org.jruby.Main" fork="true" maxmemory="${jruby.launch.memory}" failonerror="true">
<classpath path="lib/jruby.jar"/>
<sysproperty key="jruby.home" value="${basedir}"/>
<jvmarg line="-ea ${java.opts}"/>
<arg line="--1.8 -I bin/ -S jrubyc --target ${build.dir}/stdlib lib/ruby/1.8"/>
</java>
<echo message="Compiling 1.9 stdlib..."/>
<java classname="org.jruby.Main" fork="true" maxmemory="${jruby.launch.memory}" failonerror="true">
<classpath path="lib/jruby.jar"/>
<sysproperty key="jruby.home" value="${basedir}"/>
<jvmarg line="-ea ${java.opts}"/>
<arg line="--1.9 -I bin/ -S jrubyc --target ${build.dir}/stdlib lib/ruby/1.9"/>
</java>
</target>
<target name="install-gems" depends="install-dev-gems,install-jruby-launcher-gem"/>
<condition property="dev.gems.installed">
<uptodate>
<srcfiles dir="${basedir}" includes="${dev.gems}"/>
<chainedmapper>
<flattenmapper/>
<globmapper from="*.gem" to="${jruby.gem.home}/specifications/*.gemspec"/>
</chainedmapper>
</uptodate>
</condition>
<target name="install-dev-gems" depends="jar" unless="dev.gems.installed">
<java classname="org.jruby.Main" fork="true" maxmemory="${jruby.launch.memory}" failonerror="false">
<classpath path="lib/jruby.jar"/>
<sysproperty key="jruby.home" value="${basedir}"/>
<arg line="-S gem uninstall --all --force ${dev.gem.names}"/>
</java>
<java classname="org.jruby.Main" fork="true" maxmemory="${jruby.launch.memory}" failonerror="true">
<classpath path="lib/jruby.jar"/>
<sysproperty key="jruby.home" value="${basedir}"/>
<arg line="-S gem install --local --ignore-dependencies ${dev.gems}"/>
</java>
</target>
<condition property="jruby-launcher.gem.installed">
<or>
<os family="windows"/>
<!-- windows doesn't need the launcher -->
<uptodate>
<srcfiles dir="${basedir}" includes="${jruby.launcher.gem}"/>
<chainedmapper>
<flattenmapper/>
<globmapper from="*.gem" to="${jruby.gem.home}/specifications/*.gemspec"/>
</chainedmapper>
</uptodate>
</or>
</condition>
<target name="install-jruby-launcher-gem" depends="install-dev-gems" unless="jruby-launcher.gem.installed">
<java classname="org.jruby.Main" fork="true" maxmemory="${jruby.launch.memory}" failonerror="false">
<classpath path="lib/jruby.jar"/>
<sysproperty key="jruby.home" value="${basedir}"/>
<arg line="-S gem uninstall --all --force jruby-launcher"/>
</java>
<java classname="org.jruby.Main" fork="true" maxmemory="${jruby.launch.memory}" failonerror="true">
<classpath path="lib/jruby.jar"/>
<sysproperty key="jruby.home" value="${basedir}"/>
<env key="PATH" value="${basedir}/lib/ruby/gems/shared/bin:${env.PATH}"/>
<arg line="-S gem install --local --ignore-dependencies ${jruby.launcher.gem}"/>
</java>
</target>
<target name="apidocs" depends="prepare"
description="Creates the Java API docs">
<!-- Run the package_docs.rb script to generate package.html files -->
<java classname="org.jruby.Main" fork="true" maxmemory="${jruby.launch.memory}" failonerror="true"
dir="${basedir}">
<classpath path="lib/jruby.jar"/>
<sysproperty key="jruby.home" value="${basedir}"/>
<arg line="tool/package_docs.rb"/>
</java>
<javadoc destdir="${api.docs.dir}" author="true" version="true" use="true"
windowtitle="JRuby API" source="${javac.version}" useexternalfile="true"
encoding="UTF-8" maxmemory="256m">
<fileset dir="${src.dir}">
<include name="**/*.java"/>
</fileset>
<arg value="-J-Dfile.encoding=UTF-8"/>
<classpath path="lib/jruby.jar"/>
<doctitle><![CDATA[<h1>JRuby</h1>]]></doctitle>
<bottom><![CDATA[<i>Copyright © 2002-2009 JRuby Team. All Rights Reserved.</i>]]></bottom>
</javadoc>
</target>
<target name="gem" depends="dist-jar-complete">
<rake task="gem"/>
</target>
<target name="installer">
<rake task="installer"/>
</target>
<target name="clean" depends="init" description="Cleans almost everything, leaves downloaded specs">
<delete dir="${build.dir}"/>
<delete dir="${dist.dir}"/>
<delete quiet="false">
<fileset dir="${lib.dir}" includes="jruby*.jar"/>
</delete>
<delete dir="${api.docs.dir}"/>
<delete dir="build/src_gen"/>
<antcall target="clean-ng"/>
<exec executable="mvn">
<arg line="-q"/>
<arg line="clean"/>
</exec>
</target>
<target name="clean-all" depends="clean, dist-clean, clear-specs"
description="Cleans everything, including dist files and specs">
<delete dir="build.eclipse"/>
<delete dir="lib/native"/>
</target>
<property name="nailgun.home" value="tool/nailgun"/>
<target name="need-ng">
<condition property="should.build.ng">
<and>
<os family="unix"/>
<not>
<available file="${nailgun.home}/ng"/>
</not>
</and>
</condition>
</target>
<target name="build-ng" depends="need-ng" if="should.build.ng">
<echo message="Configuring ng client in ${nailgun.home}"/>
<exec executable="./configure" osfamily="unix" dir="${nailgun.home}" failonerror="true" output="${dev.null}"/>
<echo message="Building ng client in ${nailgun.home}"/>
<exec executable="${make.cmd}" osfamily="unix" dir="${nailgun.home}" output="${dev.null}"/>
</target>
<target name="need-clean-ng">
<condition property="should-clean-ng">
<and>
<os family="unix"/>
<available file="${nailgun.home}/Makefile"/>
<available file="${nailgun.home}/ng"/>
</and>
</condition>
</target>
<target name="clean-ng" depends="need-clean-ng" if="should-clean-ng">
<exec executable="${make.cmd}" dir="${nailgun.home}" osfamily="unix" failifexecutionfails="false"
output="${dev.null}">
<arg value="clean"/>
</exec>
</target>
<target name="jruby-nailgun" depends="compile, build-ng"
description="Set up JRuby to be run with Nailgun (jruby-ng, jruby-ng-server)">
<mkdir dir="${build.dir}/nailmain"/>
</target>
<property name="jruby-cext-native.home" value="cext/src/"/>
<target name="build-jruby-cext-native" depends="jar"
description="Build JRuby cext support">
<exec osfamily="unix" executable="${make.cmd}" dir="${jruby-cext-native.home}" failonerror="true">
<arg value="JAVA_HOME="${java.home}""/>
</exec>
<exec osfamily="windows" executable="cmd" dir="${jruby-cext-native.home}" failonerror="true">
<arg line='/c sh -c "${make.cmd} CC=gcc JAVA_HOME=${java.home}"'/>
</exec>
</target>
<target name="clean-jruby-cext-native" depends="compile"
description="Build JRuby cext support">
<exec osfamily="unix" executable="${make.cmd}" dir="${jruby-cext-native.home}" failonerror="true">
<arg value="dist-clean"/>
</exec>
<exec osfamily="windows" executable="cmd" dir="${jruby-cext-native.home}" failonerror="true">
<arg line='/c sh -c "${make.cmd} dist-clean"'/>
</exec>
</target>
<target name="cext" depends="build-jruby-cext-native"/>
<target name="bench-language" depends="jar">
<rake task="bench:language"/>
</target>
<target name="ci-matrix" depends="clean,jar" description="Run a matrix configuration job from Hudson.">
<property name="testtype" value="test"/>
<echo>Running ${testtype} build with JDK ${jdk}</echo>
<antcall target="${testtype}"/>
</target>
<!--
***************************************************************************
Targets below this line are now handled by maven, and should not be edited.
***************************************************************************
-->
<target name="jar-jruby" depends="init" unless="jar-up-to-date, jar-jruby.hasrun">
<exec executable="mvn" failonerror="true">
<arg line="-q"/>
<arg line="-Pdefault"/>
<arg line="-DskipTests"/>
<arg line="package"/>
</exec>
<property name="jar-jruby.hasrun" value="true"/>
</target>
<target name="compile" description="Compile the source files for the project.">
<exec executable="mvn" failonerror="true">
<arg line="-q"/>
<arg line="compile"/>
</exec>
</target>
</project>