forked from jython/jython3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
1127 lines (1030 loc) · 51.5 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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- Copyright 2000 Dj Walker-Morgan -->
<project xmlns:ivy="antlib:org.apache.ivy.ant" name="jython" default="developer-build" basedir=".">
<target name="resolve">
<ivy:retrieve />
</target>
<target name="usage" description="print usage hints (-emacs removes [echo] prefix)">
<echo>
Use case 1: developer build (in your local Jython copy)
-------------------------------------------------------
- call target 'developer-build' (the default for this build.xml)
This build will create directories /build and /dist below basedir.
Use case 2: full build for a release (using hg checkout)
---------------------------------------------------------
- make sure you have access to the Jython mercurial repository
(http://hg.python.org/jython)
- override ant.properties (if necessary)
- call target 'full-build'
This build will create a working directory named
full_build at the same level as your local directories
jython and installer. It will contain a big
jython_installer-${jython.version}.jar file suitable for installation.
To build older releases, it may be necessary to use an older
build.xml, too (with the corresponding tag). For example it is not
possible to build Release_2_2alpha1 with this version of build.xml.
Note on targets
---------------
A subset of the available targets are designed for direct invocation.
Following an ant convention, the callable targets have a description
attribute. Use ant -p to display these targets. All other targets
may behave unpredictably if called directly.
Where ant looks for ant.properties
----------------------------------
1. in user.home
2. in the same directory as this build.xml file
The first setting of a property wins. Further settings are ignored.
Actions for a release
---------------------
See http://wiki.python.org/jython/JythonDeveloperGuide/HowToReleaseJython
An example ant.properties file:
-------------------------------
# - zxJDBC
oracle.jar=C:/workspace/HEAD/for_development/bisdevsrv28/jboss/server/infra/lib/ojdbc14.jar
#informix.jar=${basedir}/../externals/external-jars/ifxjdbc.jar
# - option for javac (build.compiler=modern is a global option to use standard jdk 1.7/1.8)
#build.compiler=modern
#jdk.target.version=1.8
#debug=false
#deprecation=off
</echo>
</target>
<target name="jarless" depends="compile, pycompile"/>
<target name="developer-build" depends="prepare-output, pycompile" description="a local build for developers" />
<target name="full-build" depends="full-check, installer" description="a full build with hg checkout" />
<target name="needed-check" unless="full-build">
<uptodate property="antlr.notneeded" targetfile="${gensrc.dir}/org/python/antlr/PythonParser.java">
<srcfiles dir="grammar" includes="*.g" />
<!--
<srcfiles dir="${basedir}/src/org/python/compiler" includes="CodeCompiler.java" />
-->
</uptodate>
</target>
<target name="init">
<property file="${user.home}/ant.properties" />
<property file="${basedir}/ant.properties" />
<property name="PY_RELEASE_LEVEL_ALPHA" value="10"/> <!-- 0xA -->
<property name="PY_RELEASE_LEVEL_BETA" value="11"/> <!-- 0xB -->
<property name="PY_RELEASE_LEVEL_GAMMA" value="12"/> <!-- 0xC -->
<property name="PY_RELEASE_LEVEL_FINAL" value="15"/> <!-- 0xF -->
<property name="PY_RELEASE_LEVEL_SNAPSHOT" value="170"/> <!-- 0xAA -->
<!-- The current version info -->
<property name="jython.version" value="3.5.1a1+"/>
<property name="jython.version.noplus" value="3.5.1a1"/>
<property name="jython.major_version" value="3"/>
<property name="jython.minor_version" value="5"/>
<property name="jython.micro_version" value="1"/>
<property name="jython.release_level" value="${PY_RELEASE_LEVEL_ALPHA}"/>
<!-- Usually zero, only used for alpha, beta and candidate versions
where it must be greater than zero. -->
<property name="jython.release_serial" value="1"/>
<property name="jython.java.version" value="1.8"/>
<condition property="do.snapshot.build">
<isset property="snapshot.revision" />
</condition>
<!-- Switch to a snapshot release_level when appropriate -->
<condition property="jython.real_release_level" value="${PY_RELEASE_LEVEL_SNAPSHOT}" else="${jython.release_level}">
<isset property="do.snapshot.build" />
</condition>
<condition property="os.family.unix">
<os family="unix"/>
</condition>
<condition property="os.family.windows">
<os family="windows"/>
</condition>
<property name="build.compiler" value="modern" />
<property name="jdk.target.version" value="${jython.java.version}" />
<property name="jdk.source.version" value="${jython.java.version}" />
<property name="deprecation" value="true" />
<property name="debug" value="true" />
<property name="nowarn" value="true" />
<property name="javac.Xlint" value="-Xlint -Xlint:-serial -Xlint:-unchecked -Xlint:-cast"/>
<!-- properties work.dir and jython.base.dir are also defined in full-preinit -->
<property name="work.dir" value="${basedir}" />
<property name="jython.base.dir" value="${work.dir}" />
<property name="source.dir" value="${jython.base.dir}/src" />
<property name="test.source.dir" value="${jython.base.dir}/tests/java" />
<property name="test.shell.dir" value="${jython.base.dir}/tests/shell" />
<property name="templates.dir" value="${source.dir}/templates" />
<property name="python.lib" value="${jython.base.dir}/lib-python/3.5.1" />
<property name="bugtests.dir" value="${jython.base.dir}/bugtests" />
<property name="templates.lazy" value="true" />
<property name="extlibs.dir" value="${jython.base.dir}/extlibs" />
<property name="output.dir" value="${work.dir}/build" />
<property name="compile.dir" value="${output.dir}/classes" />
<property name="exposed.dir" value="${output.dir}/exposed" />
<property name="gensrc.dir" value="${output.dir}/gensrc" />
<property name="dist.dir" value="${work.dir}/dist" />
<property name="apidoc.dir" value="${dist.dir}/Doc/javadoc" />
<property name="junit.reports" value="${dist.dir}/testreports" />
<property name="junit.htmlreports" value="${dist.dir}/test-html-reports" />
<!-- classpaths -->
<path id="main.classpath">
<pathelement path="${extlibs.dir}/servlet-api-2.5.jar" />
<pathelement path="${informix.jar}" />
<pathelement path="${oracle.jar}" />
<pathelement path="${extlibs.dir}/mysql-connector-java-5.1.6.jar" />
<pathelement path="${extlibs.dir}/postgresql-8.3-603.jdbc4.jar" />
<pathelement path="${extlibs.dir}/antlr-3.4-complete.jar" />
<pathelement path="${extlibs.dir}/commons-compress-1.9.jar"/>
<pathelement path="${extlibs.dir}/asm-5.1.jar" />
<pathelement path="${extlibs.dir}/asm-commons-5.1.jar" />
<pathelement path="${extlibs.dir}/asm-tree-5.1.jar" />
<pathelement path="${extlibs.dir}/asm-util-5.1.jar" />
<pathelement path="${extlibs.dir}/guava-18.0.jar" />
<pathelement path="${extlibs.dir}/icu4j-57.1.jar" />
<pathelement path="${extlibs.dir}/jffi-arm-Linux.jar"/>
<pathelement path="${extlibs.dir}/jffi-Darwin.jar"/>
<pathelement path="${extlibs.dir}/jffi-i386-FreeBSD.jar"/>
<pathelement path="${extlibs.dir}/jffi-i386-Linux.jar"/>
<pathelement path="${extlibs.dir}/jffi-i386-OpenBSD.jar"/>
<pathelement path="${extlibs.dir}/jffi-i386-SunOS.jar"/>
<pathelement path="${extlibs.dir}/jffi-i386-Windows.jar"/>
<pathelement path="${extlibs.dir}/jffi-ppc-AIX.jar"/>
<pathelement path="${extlibs.dir}/jffi-ppc-Linux.jar"/>
<pathelement path="${extlibs.dir}/jffi-ppc64-Linux.jar"/>
<pathelement path="${extlibs.dir}/jffi-s390x-Linux.jar"/>
<pathelement path="${extlibs.dir}/jffi-sparc-SunOS.jar"/>
<pathelement path="${extlibs.dir}/jffi-sparcv9-SunOS.jar"/>
<pathelement path="${extlibs.dir}/jffi-x86_64-FreeBSD.jar"/>
<pathelement path="${extlibs.dir}/jffi-x86_64-Linux.jar"/>
<pathelement path="${extlibs.dir}/jffi-x86_64-OpenBSD.jar"/>
<pathelement path="${extlibs.dir}/jffi-x86_64-SunOS.jar"/>
<pathelement path="${extlibs.dir}/jffi-x86_64-Windows.jar"/>
<pathelement path="${extlibs.dir}/jffi-1.2.12.jar"/>
<pathelement path="${extlibs.dir}/jnr-ffi-2.0.9.jar"/>
<pathelement path="${extlibs.dir}/jnr-enxio-0.12.jar"/>
<pathelement path="${extlibs.dir}/jnr-netdb-1.1.5.jar"/>
<pathelement path="${extlibs.dir}/jnr-posix-3.0.29.jar"/>
<pathelement path="${extlibs.dir}/jnr-process-0.2-SNAPSHOT.jar"/>
<pathelement path="${extlibs.dir}/jnr-constants-0.9.2.jar"/>
<pathelement path="${extlibs.dir}/jnr-unixsocket-0.12.jar"/>
<pathelement path="${extlibs.dir}/jline-2.12.1.jar"/>
<pathelement path="${extlibs.dir}/netty-buffer-4.0.25.Final.jar"/>
<pathelement path="${extlibs.dir}/netty-codec-4.0.25.Final.jar"/>
<pathelement path="${extlibs.dir}/netty-common-4.0.25.Final.jar"/>
<pathelement path="${extlibs.dir}/netty-handler--4.0.25.Final.jar"/>
<pathelement path="${extlibs.dir}/netty-transport-4.0.25.Final.jar"/>
<pathelement path="${extlibs.dir}/jzlib-1.1.3.jar"/>
</path>
<available property="informix.present" classname="com.informix.jdbc.IfxDriver" classpath="${informix.jar}" />
<available property="oracle.present" classname="oracle.jdbc.driver.OracleDriver" classpath="${oracle.jar}" />
<path id="test.classpath">
<path refid="main.classpath"/>
<pathelement path="${extlibs.dir}/asm-commons-5.1.jar" />
<pathelement path="${extlibs.dir}/asm-util-5.1.jar" />
<pathelement path="${extlibs.dir}/hamcrest-core-1.3.jar" />
<pathelement path="${extlibs.dir}/junit-4.12.jar" />
<!--
<pathelement path="${extlibs.dir}/hamcrest-core-1.3.jar" />
-->
<pathelement path="${exposed.dir}" />
<pathelement path="${compile.dir}" />
<pathelement path="${cpptasks.jar.dir}" />
</path>
<property name="jython.dev.jar" value="jython-dev.jar" />
<property name="jython.deploy.jar" value="jython.jar" />
<property name="jython.standalone.jar" value="jython-standalone.jar" />
<property name="jython.javadoc.jar" value="javadoc.jar" />
<property name="jython.sources.jar" value="sources.jar" />
</target>
<target name="full-preinit">
<property file="${user.home}/ant.properties" />
<property file="${basedir}/ant.properties" />
<property name="cpptasks.jar.dir" value="${basedir}/extlibs/cpptasks/cpptasks.jar" />
<!-- use this property to distinguish a full-build from a developer-build -->
<property name="full-build" value="true" />
<!-- predefined main directory for checkout -->
<property name="hg.code.dir" value="jython" />
<!-- predefined revision for checkout (this works for both trunk and release branches -->
<!-- properties work.dir and jython.base.dir are also definied in init,
so full-preinit must run first to work -->
<property name="work.dir" value="${basedir}/../full_build/work" />
<property name="checkout.dir" value="${work.dir}/checkout" />
<property name="jython.base.dir" value="${checkout.dir}/${hg.code.dir}" />
<!-- set has.repositories.connection to false in ant.properties if you want to skip checkout -->
<property name="has.repositories.connection" value="true" />
<condition property="do.checkout" value="true">
<istrue value="${has.repositories.connection}" />
</condition>
</target>
<target name="full-check" depends="full-preinit, init, dump-env">
<!-- Require all of the optional jars for a full build -->
<fail unless="informix.present" message="informix jar not present" />
<fail unless="oracle.present" message="oracle jar not present" />
</target>
<target name="dump-env" depends="init">
<echo>.</echo>
<echo>Build environment for ${ant.project.name}</echo>
<echo>(Note: if ${propertyname} is displayed, then the property is not set)</echo>
<echo>--- optional libraries ---</echo>
<echo>oracle location = '${oracle.jar}'</echo>
<echo>informix location = '${informix.jar}'</echo>
<echo>oracle = '${oracle.present}'</echo>
<echo>informix = '${informix.present}'</echo>
<echo>--- properties ---</echo>
<echo>work.dir = '${work.dir}'</echo>
<echo>jython.base.dir = '${jython.base.dir}'</echo>
<echo>source.dir = '${source.dir}'</echo>
<echo>output.dir = '${output.dir}'</echo>
<echo>compile.dir = '${compile.dir}'</echo>
<echo>exposed.dir = '${exposed.dir}'</echo>
<echo>dist.dir = '${dist.dir}'</echo>
<echo>apidoc.dir = '${apidoc.dir}'</echo>
<echo>templates.dir = '${templates.dir}'</echo>
<echo>templates.lazy = '${templates.lazy}'</echo>
<echo>python.lib = '${python.lib}'</echo>
<echo>build.compiler = '${build.compiler}'</echo>
<echo>jdk.target.version = '${jdk.target.version}'</echo>
<echo>jdk.source.version = '${jdk.source.version}'</echo>
<echo>deprecation = '${deprecation}'</echo>
<echo>debug = '${debug}'</echo>
<echo>nowarn = '${nowarn}'</echo>
<echo>test = '${test}'</echo>
<echo>test.source.dir = '${test.source.dir}'</echo>
<echo>--- properties (used for full-build only) ---</echo>
<echo>checkout.dir = '${checkout.dir}'</echo>
<echo>javahl.dir = '${javahl.dir}'</echo>
<echo>do.snapshot.build = '${do.snapshot.build}'</echo>
<echo>snapshot.revision = '${snapshot.revision}'</echo>
<echo>do.checkout = '${do.checkout}'</echo>
</target>
<!-- delete what's necessary. should correspond to the directories created in prepare -->
<!-- if called directly, we use settings as in developer-build -->
<!-- (at the moment all properties will already be set if we do a full build) -->
<target name="clean" depends="init, clean-checkout-dir" description="clean up build working directories">
<!-- do not hard delete ${work.dir}, since it could be ${basedir} -->
<!-- deletes all files and subdirectories of ${output.dir}, without ${output.dir} itself. -->
<delete includeemptydirs="true" failonerror="false">
<fileset dir="${output.dir}" includes="**/*" />
</delete>
<!-- deletes all files and subdirectories of ${dist.dir}, without ${dist.dir} itself. -->
<delete includeemptydirs="true" failonerror="false">
<fileset dir="${dist.dir}" includes="**/*" />
</delete>
<!-- delete the installation .jar file from ${work.dir}, but no other files -->
<delete failonerror="false">
<fileset dir="${work.dir}" includes="jython*.jar" />
</delete>
</target>
<target name="devclean" depends="init"
description="clean up build working directories without deleting antlr files, cachedir, or Lib">
<delete includeemptydirs="true" failonerror="false">
<fileset dir="${output.dir}" includes="**/*" excludes="gensrc/**"/>
</delete>
<!-- deletes all files and subdirectories of ${dist.dir}, without ${dist.dir} itself. -->
<delete includeemptydirs="true" failonerror="false">
<fileset dir="${dist.dir}" includes="**/*" excludes="cachedir/**,Lib/**"/>
</delete>
<!-- delete the installation .jar file from ${work.dir}, but no other files -->
<delete failonerror="false">
<fileset dir="${work.dir}" includes="jython*.jar" />
</delete>
</target>
<!-- clean checkout.dir if we really checkout -->
<target name="clean-checkout-dir" if="do.checkout">
<delete includeemptydirs="true" failonerror="false">
<fileset dir="${checkout.dir}" includes="**/*" defaultexcludes="no" />
</delete>
</target>
<target name="clean-if-antlr-needed" unless="antlr.notneeded">
<!-- this seems to be the only way I could get a clean when there has been a
change to grammar files. If you are working on the grammars you might
want to comment this out, as a clean is really only needed if you change
the tokens defined in Python.g (and cleans make the build slow) -->
<antcall target="clean"/>
</target>
<!-- create output directories -->
<target name ="prepare-output" depends="init,needed-check,clean-if-antlr-needed">
<mkdir dir="${compile.dir}" />
<mkdir dir="${gensrc.dir}/org/python/antlr" />
<mkdir dir="${exposed.dir}" />
<mkdir dir="${dist.dir}" />
</target>
<!-- create necessary directories -->
<target name="prepare" depends="prepare-full, prepare-checkout, prepare-output"/>
<!-- create directories needed only in full-build -->
<target name="prepare-full" depends="clean" if="full-build">
<mkdir dir="${work.dir}" />
<mkdir dir="${dist.dir}/Doc" />
<mkdir dir="${apidoc.dir}" />
</target>
<!-- create checkout directory if necessary -->
<target name="prepare-checkout" if="do.checkout">
<mkdir dir="${checkout.dir}" />
</target>
<target name="checkout" depends="prepare" if="do.checkout">
<exec executable="hg">
<!--
<arg line="clone http://hg.python.org/jython-releasing/2.5.3 -b 2.5 ${checkout.dir}/${hg.code.dir}"/>
-->
<arg line="clone http://hg.python.org/jython ${checkout.dir}/${hg.code.dir}"/>
</exec>
</target>
<target name="check-hg">
<available file=".hg" type="dir" property="hg.present"/>
<condition property="hg-run">
<and>
<isset property="hg.present"/>
<or>
<isset property="os.family.unix"/>
<isset property="os.family.windows"/>
</or>
</and>
</condition>
</target>
<target name="hg-id" depends="check-hg, hg-branch, hg-tag, hg-version"/>
<target name="hg-branch" if="hg-run">
<exec executable="hg" failifexecutionfails="false" outputproperty="build.hg.branch">
<arg line="id -b"/>
</exec>
</target>
<target name="hg-tag" if="hg-run">
<exec executable="hg" failifexecutionfails="false" outputproperty="build.hg.tag">
<arg line="id -t"/>
</exec>
</target>
<target name="hg-version" if="hg-run">
<exec executable="hg" failifexecutionfails="false" outputproperty="build.hg.version">
<arg line="id -i"/>
</exec>
</target>
<!-- skip-brand can be set in ant.properties or as a system property to keep from updating the
version.properties file and making the jar on every developer build. -->
<target name="brand-version" depends="init, hg-id" unless="skip-brand">
<property name="build.hg.branch" value=""/>
<property name="build.hg.tag" value=""/>
<property name="build.hg.version" value=""/>
<tstamp>
<format property="build.date" pattern="MMM d yyyy" offset="0"/>
<format property="build.time" pattern="HH:mm:ss" offset="0"/>
</tstamp>
<mkdir dir="${compile.dir}/org/python"/>
<echo file="${compile.dir}/org/python/version.properties"># Jython version information
jython.version=${jython.version}
jython.major_version=${jython.major_version}
jython.minor_version=${jython.minor_version}
jython.micro_version=${jython.micro_version}
jython.release_level=${jython.release_level}
jython.release_serial=${jython.release_serial}
jython.build.date=${build.date}
jython.build.time=${build.time}
jython.build.hg_branch=${build.hg.branch}
jython.build.hg_tag=${build.hg.tag}
jython.build.hg_version=${build.hg.version}</echo>
</target>
<target name="brand-readme-version" depends="checkout" if="do.snapshot.build">
<!-- change README.txt version string, if so defined: used for
snapshot builds. XXX: a bit broken for now-->
<replace file="${jython.base.dir}/README.txt" token='2.7b3+'
value='2.7b${xxx.revision}' />
<replace file="${jython.base.dir}/README.txt">
<replacetoken>=======================</replacetoken>
<replacevalue>--------------------------
This is a snapshot build.
It reflects the current development status.
The readme text for the next release will be like:
</replacevalue>
</replace>
</target>
<target name="template-init" depends="prepare">
<javac srcdir="${source.dir}/"
destdir="${compile.dir}"
target="${jdk.target.version}"
source="${jdk.source.version}"
debug="${debug}"
deprecation="${deprecation}"
nowarn="${nowarn}">
<include name="org/python/util/TemplateAntTask.java" />
<compilerarg line="${javac.Xlint}"/>
</javac>
</target>
<target name="template" depends="checkout, template-init">
<taskdef name="gentempl" classname="org.python.util.TemplateAntTask"
classpath="${compile.dir}" />
<gentempl srcdir="${templates.dir}" verbose="true"
lazy="${templates.lazy}"/>
</target>
<target name="antlr_gen" depends="prepare-output" unless="antlr.notneeded">
<java classname="org.antlr.Tool" failonerror="true" fork="true" dir="${jython.base.dir}">
<jvmarg value="-Xmx512m"/>
<arg value="-Xconversiontimeout"/>
<arg value="2000"/>
<arg value="-fo"/>
<arg path="${work.dir}/build/gensrc/org/python/antlr"/>
<arg value="-lib"/>
<arg path="${work.dir}/build/gensrc/org/python/antlr"/>
<arg file="${jython.base.dir}/grammar/Python.g"/>
<arg file="${jython.base.dir}/grammar/PythonPartial.g"/>
<classpath refid="main.classpath"/>
</java>
<!-- copy the .tokens to /grammar, for usage in ANTLRWorks -->
<!--
<copy todir="grammar" preservelastmodified="true">
<fileset dir="build/gensrc/org/python/antlr">
<include name="Python.tokens" />
</fileset>
</copy>
-->
</target>
<target name="compile" depends="init,antlr_gen,brand-version">
<javac destdir="${compile.dir}"
target="${jdk.target.version}"
source="${jdk.source.version}"
debug="${debug}"
deprecation="${deprecation}"
nowarn="${nowarn}"
memoryMaximumSize="1024m"
fork="true"
encoding="UTF-8">
<compilerarg line="${javac.Xlint}"/>
<src path="${source.dir}"/>
<src path="${gensrc.dir}"/>
<exclude name="**/handler/InformixDataHandler.java" unless="informix.present" />
<exclude name="**/handler/OracleDataHandler.java" unless="oracle.present" />
<classpath refid="main.classpath" />
</javac>
<javac srcdir="${jython.base.dir}/Lib"
includes="jxxload_help/**"
destdir="${compile.dir}"
target="${jdk.target.version}"
source="${jdk.source.version}"
debug="${debug}"
deprecation="${deprecation}"
nowarn="${nowarn}">
<compilerarg line="${javac.Xlint}"/>
</javac>
<!-- java files used by tests -->
<javac srcdir="${test.source.dir}"
destdir="${compile.dir}"
target="${jdk.target.version}"
source="${jdk.source.version}"
debug="${debug}"
deprecation="${deprecation}"
nowarn="${nowarn}"
encoding="UTF-8">
<compilerarg line="${javac.Xlint}"/>
<classpath refid="test.classpath" />
</javac>
<javac srcdir="tests/data/initializer"
destdir="tests/data/initializer"
target="${jdk.target.version}"
source="${jdk.source.version}"
debug="${debug}"
deprecation="${deprecation}"
nowarn="${nowarn}">
<compilerarg line="${javac.Xlint}"/>
<classpath refid="test.classpath" />
</javac>
<!--
<copy file="${source.dir}/org/python/modules/ucnhash.dat"
todir="${compile.dir}/org/python/modules"
preservelastmodified="true" />
-->
<copy todir="${compile.dir}" preservelastmodified="true">
<fileset dir="${source.dir}">
<include name="**/*.properties" />
</fileset>
</copy>
<!-- grammar must now be up to date -->
<property name="antlr.notneeded" value="true" />
<copy todir="${compile.dir}/META-INF/services">
<fileset dir="${source.dir}/META-INF/services" />
</copy>
</target>
<!--
If you run this before running regrtest, test__rawffi.py should pass.
So far I have been unable to enable cpptasks without passing an arg to ant.
To run this task like I am do:
ant -lib extlibs/cpptasks/cpptasks.jar compile_cpp
XXX: get cpptasks running without an arg to ant.
-->
<target name="compile_cpp" depends="compile">
<taskdef resource="cpptasks.tasks"/>
<cc outtype="shared" subsystem="console" outfile="ctypes_test" objdir="${compile.dir}">
<fileset dir="tests/c" includes="*.c"/>
</cc>
</target>
<target name="expose" depends="compile">
<taskdef name="expose" classname="org.python.expose.generate.ExposeTask">
<classpath>
<path refid="main.classpath" />
<pathelement path="${compile.dir}" />
</classpath>
</taskdef>
<taskdef name="expose_module" classname="org.python.expose.generate.ModuleExposeTask">
<classpath>
<path refid="main.classpath" />
<pathelement path="${compile.dir}" />
</classpath>
</taskdef>
<expose srcdir="${compile.dir}"
destdir="${exposed.dir}"
includesfile="${jython.base.dir}/CoreExposed.includes"/>
<expose_module destdir="${exposed.dir}"/>
</target>
<target name="jar-complete" depends="jar, pycompile">
<taskdef name="jarjar" classname="com.tonicsystems.jarjar.JarJarTask" classpath="extlibs/jarjar-1.4.jar"/>
<jarjar destfile="${dist.dir}/${jython.deploy.jar}">
<zipfileset src="${dist.dir}/${jython.dev.jar}"/>
<zipfileset src="extlibs/antlr-runtime-3.4.jar"/>
<rule pattern="org.antlr.runtime.**" result="org.python.antlr.runtime.@1"/>
<zipfileset src="extlibs/asm-5.1.jar"/>
<zipfileset src="extlibs/asm-commons-5.1.jar"/>
<zipfileset src="extlibs/asm-util-5.1.jar"/>
<rule pattern="org.objectweb.asm.**" result="org.python.objectweb.asm.@1"/>
<zipfileset src="extlibs/bcpkix-jdk15on-150.jar" excludes="META-INF/**"/>
<rule pattern="org.bouncycastle.**" result="org.python.bouncycastle.@1"/>
<zipfileset src="extlibs/bcprov-jdk15on-150.jar" excludes="META-INF/**"/>
<rule pattern="org.bouncycastle.**" result="org.python.bouncycastle.@1"/>
<zipfileset src="extlibs/commons-compress-1.9.jar"/>
<rule pattern="org.apache.**" result="org.python.apache.@1"/>
<zipfileset src="extlibs/guava-18.0.jar"/>
<rule pattern="com.google.**" result="org.python.google.@1"/>
<zipfileset src="extlibs/icu4j-57.1.jar"/>
<rule pattern="com.ibm.icu.**" result="org.python.icu.@1"/>
<zipfileset src="extlibs/netty-buffer-4.0.25.Final.jar" excludes="META-INF/**"/>
<rule pattern="io.netty.**" result="org.python.netty.@1"/>
<zipfileset src="extlibs/netty-codec-4.0.25.Final.jar" excludes="META-INF/**"/>
<rule pattern="io.netty.**" result="org.python.netty.@1"/>
<zipfileset src="extlibs/netty-common-4.0.25.Final.jar" excludes="META-INF/**"/>
<rule pattern="io.netty.**" result="org.python.netty.@1"/>
<zipfileset src="extlibs/netty-handler-4.0.25.Final.jar" excludes="META-INF/**"/>
<rule pattern="io.netty.**" result="org.python.netty.@1"/>
<zipfileset src="extlibs/netty-transport-4.0.25.Final.jar" excludes="META-INF/**"/>
<rule pattern="io.netty.**" result="org.python.netty.@1"/>
<zipfileset src="extlibs/jffi-arm-Linux.jar"/>
<zipfileset src="extlibs/jffi-Darwin.jar"/>
<zipfileset src="extlibs/jffi-i386-FreeBSD.jar"/>
<zipfileset src="extlibs/jffi-i386-Linux.jar"/>
<zipfileset src="extlibs/jffi-i386-OpenBSD.jar"/>
<zipfileset src="extlibs/jffi-i386-SunOS.jar"/>
<zipfileset src="extlibs/jffi-i386-Windows.jar"/>
<zipfileset src="extlibs/jffi-ppc-AIX.jar"/>
<zipfileset src="extlibs/jffi-ppc-Linux.jar"/>
<zipfileset src="extlibs/jffi-ppc64-Linux.jar"/>
<zipfileset src="extlibs/jffi-s390x-Linux.jar"/>
<zipfileset src="extlibs/jffi-sparc-SunOS.jar"/>
<zipfileset src="extlibs/jffi-sparcv9-SunOS.jar"/>
<zipfileset src="extlibs/jffi-x86_64-FreeBSD.jar"/>
<zipfileset src="extlibs/jffi-x86_64-Linux.jar"/>
<zipfileset src="extlibs/jffi-x86_64-OpenBSD.jar"/>
<zipfileset src="extlibs/jffi-x86_64-SunOS.jar"/>
<zipfileset src="extlibs/jffi-x86_64-Windows.jar"/>
<zipfileset src="extlibs/jffi-1.2.12.jar"/>
<zipfileset src="${extlibs.dir}/jnr-ffi-2.0.9.jar"/>
<zipfileset src="${extlibs.dir}/jnr-netdb-1.1.5.jar"/>
<zipfileset src="${extlibs.dir}/jnr-posix-3.0.29.jar"/>
<zipfileset src="${extlibs.dir}/jnr-constants-0.9.2.jar"/>
<zipfileset src="extlibs/xml-apis-2.11.0.jar" excludes="META-INF/services/*"/>
<zipfileset src="extlibs/xercesImpl-2.11.0.jar" excludes="META-INF/services/*"/>
<rule pattern="org.apache.xml.**" result="org.python.apache.xml.@1"/>
<rule pattern="org.apache.xerces.**" result="org.python.apache.xerces.@1"/>
<rule pattern="org.apache.wml.**" result="org.python.apache.wml.@1"/>
<rule pattern="org.apache.html.**" result="org.python.apache.html.@1"/>
<zipfileset src="extlibs/jline-2.12.1.jar"/>
<rule pattern="jline.**" result="org.python.jline.@1"/>
<manifest>
<attribute name="Main-Class" value="org.python.util.jython" />
<attribute name="Built-By" value="${user.name}" />
<!-- info section. ATTN: no blanks, no '.' in the names -->
<section name="Build-Info">
<attribute name="version" value="${jython.version}" />
<attribute name="oracle" value="${oracle.present}" />
<attribute name="informix" value="${informix.present}" />
<attribute name="build-compiler" value="${build.compiler}" />
<attribute name="jdk-target-version" value="${jdk.target.version}" />
<attribute name="debug" value="${debug}" />
</section>
</manifest>
</jarjar>
</target>
<target name="jar-standalone" depends="jar-complete">
<taskdef name="jarjar" classname="com.tonicsystems.jarjar.JarJarTask" classpath="extlibs/jarjar-1.4.jar"/>
<jar destfile="${dist.dir}/${jython.standalone.jar}">
<zipfileset src="${dist.dir}/${jython.deploy.jar}"/>
<fileset dir="${dist.dir}" includes="Lib/**" excludes="Lib/test/**" />
<manifest>
<attribute name="Main-Class" value="org.python.util.jython" />
<attribute name="Built-By" value="${user.name}" />
<!-- info section. ATTN: no blanks, no '.' in the names -->
<section name="Build-Info">
<attribute name="version" value="${jython.version}" />
<attribute name="hg-build" value="${do.checkout}" />
<attribute name="oracle" value="${oracle.present}" />
<attribute name="informix" value="${informix.present}" />
<attribute name="build-compiler" value="${build.compiler}" />
<attribute name="jdk-target-version" value="${jdk.target.version}" />
<attribute name="debug" value="${debug}" />
</section>
</manifest>
</jar>
</target>
<target name="jar" depends="compile,expose">
<typedef name="nameunion" classname="org.python.util.NameUnionAntType">
<classpath>
<path refid="main.classpath" />
<pathelement path="${compile.dir}" />
</classpath>
</typedef>
<jar destfile="${dist.dir}/callbacker_test.jar">
<fileset dir="${compile.dir}" includes="org/python/tests/Callbacker*"/>
</jar>
<jar destfile="${dist.dir}/${jython.dev.jar}" duplicate="fail">
<!-- If only nameunion is used, ant issues a spurious warning about no files being
included. Use a fileset for version.properties just to shut that up. -->
<fileset dir="${compile.dir}" includes="org/python/version.properties"/>
<nameunion>
<fileset dir="${exposed.dir}"/>
<fileset dir="${compile.dir}"
excludes="org/python/expose/generate/**,org/python/version.properties"/>
</nameunion>
<manifest>
<attribute name="Main-Class" value="org.python.util.jython" />
<attribute name="Built-By" value="${user.name}" />
<!-- info section. ATTN: no blanks, no '.' in the names -->
<section name="Build-Info">
<attribute name="version" value="${jython.version}" />
<attribute name="hg-build" value="${do.checkout}" />
<attribute name="oracle" value="${oracle.present}" />
<attribute name="informix" value="${informix.present}" />
<attribute name="build-compiler" value="${build.compiler}" />
<attribute name="jdk-target-version" value="${jdk.target.version}" />
<attribute name="debug" value="${debug}" />
</section>
</manifest>
</jar>
</target>
<target name="javadoc" depends="compile">
<path id="javadoc.classpath">
<pathelement path="${java.class.path}" />
<pathelement path="${compile.dir}" />
<path refid="main.classpath" />
</path>
<javadoc sourcepath="${source.dir}"
destdir="${apidoc.dir}"
source="${jdk.source.version}"
maxmemory="1024m"
public="true"
breakiterator="yes"
packagenames="org.python.core.*, org.python.util.*, org.python.modules.*, com.ziclix.python.sql, com.xhaus.modjy"
windowtitle="Jython API documentation"
bottom="<a href='http://www.jython.org' target='_top'>Jython homepage</a>"
>
<link href="http://docs.oracle.com/javase/7/docs/api/" />
<classpath refid="javadoc.classpath" />
</javadoc>
</target>
<target name="all-jars" depends="prepare, jar-standalone, javadoc, installer">
<jar destfile="dist/${jython.javadoc.jar}">
<fileset dir="${apidoc.dir}" includes="**"/>
</jar>
<jar destfile="dist/${jython.sources.jar}">
<fileset dir="${jython.base.dir}">
<exclude name="build/**" />
<exclude name="dist/**" />
<exclude name="extlibs/**" />
<exclude name="Doc/**" />
</fileset>
</jar>
</target>
<target name="copy-license" if="do.checkout">
<echo>copy CPython LICENSE from ${checkout.dir}/python</echo>
<copy file="${checkout.dir}/python/LICENSE" tofile="${dist.dir}/LICENSE_CPython.txt" preservelastmodified="true" />
</target>
<target name="copy-full" depends="copy-lib, copy-license" if="full-build">
<echo>copy misc files from ${jython.base.dir}</echo>
<copy todir="${dist.dir}" preservelastmodified="true" overwrite="true">
<fileset dir="${jython.base.dir}"
includes="ACKNOWLEDGMENTS, build.xml, build.Lib.include.properties, NEWS, LICENSE.txt, README.txt, registry"
/>
</copy>
<!-- sources: todir has to correspond with installer/**/JarInstaller.java -->
<echo>copy sources from ${jython.base.dir}</echo>
<copy todir="${dist.dir}" preservelastmodified="true">
<fileset dir="${jython.base.dir}">
<include name="src/**/*.java" />
<include name="src/com/**/*.properties" />
<include name="src/shell/*" />
<include name="src/templates/*" />
<include name="Lib/jxxload_help/*.java" />
<include name="src/org/**/ucnhash.dat" />
<include name="grammar/*.g" />
<include name="tests/java/**/*.java" />
<include name="CoreExposed.includes" />
<include name="extlibs/**/*.jar" />
<!-- don't distribute jdbc jars -->
<exclude name="extlibs/mysql-connector-java-5.1.6.jar" />
<exclude name="extlibs/postgresql-8.3-603.jdbc4.jar" />
<exclude name="extlibs/ifxjdbc.jar" />
<exclude name="extlibs/ojdbc14.jar" />
</fileset>
</copy>
<echo>copy the demo files from ${jython.base.dir}/Demo</echo>
<copy todir="${dist.dir}/Demo" preservelastmodified="true">
<fileset dir="${jython.base.dir}/Demo">
<include name="**/*.java" />
<include name="**/*.html" />
<include name="**/*.py" />
<include name="**/*.txt" />
<include name="**/*.xml**" />
<include name="**/jreload/example.jar" />
<include name="**/jreload/_xample/Version.class" />
<exclude name="**/jpywork/**" />
</fileset>
</copy>
</target>
<target name="pycompile" depends="jar,copy-lib">
<taskdef name="jycompile" classname="org.python.util.JycompileAntTask">
<classpath path="${dist.dir}/Lib"/>
<classpath path="${dist.dir}/${jython.dev.jar}" />
<classpath refid="main.classpath" />
</taskdef>
<jycompile srcdir="${dist.dir}/Lib" destdir="${dist.dir}/Lib" excludes="test/**"/>
</target>
<target name="copy-lib" depends="init, copy-javalib, copy-cpythonlib">
<copy todir="${dist.dir}/Lib">
<fileset dir="${jython.base.dir}/Lib">
<exclude name="**/*.class"/>
</fileset>
</copy>
<!-- copy the shell scripts and make them executable -->
<copy todir="${dist.dir}/bin">
<fileset dir="${source.dir}/shell"/>
</copy>
<chmod perm="ugo+rx">
<fileset dir="${dist.dir}/bin" />
</chmod>
<!-- copy the registry -->
<copy todir="${dist.dir}" file="${jython.base.dir}/registry" preservelastmodified="true"/>
</target>
<target name="copy-cpythonlib">
<copy todir="${dist.dir}/Lib">
<fileset dir="${python.lib}" excludes="**/*.pyc, **/*.pyo" includesfile="${jython.base.dir}/CPythonLib.includes">
<!-- The include file gets all of lib-python/3.5's test directory, but we only want the ones from Jython's Lib. -->
<present present="srconly" targetdir="${jython.base.dir}/Lib"/>
</fileset>
</copy>
</target>
<target name="copy-javalib" unless="full-build">
<copy todir="${dist.dir}/javalib">
<fileset dir="${jython.base.dir}/extlibs">
<exclude name="profile.properties"/>
</fileset>
<fileset dir="${work.dir}/build">
<include name="*.jar"/>
<include name="*.properties"/>
</fileset>
</copy>
</target>
<!-- if installer called by itself, make sure all the dependent targets run;
otherwise, redundant with full-check -->
<target name="installer-init">
<property name="full-build" value="true" />
</target>
<!-- wrap the build into the installer -->
<target name="installer" depends="brand-readme-version, installer-init, jar-standalone, javadoc, copy-full">
<property name="installer.src.dir" value="${jython.base.dir}/installer/src/java" />
<echo>compiling installer from ${installer.src.dir}</echo>
<javac srcdir="${installer.src.dir}"
includes="org/**"
destdir="${compile.dir}"
target="${jdk.target.version}"
source="${jdk.source.version}"
debug="${debug}"
deprecation="${deprecation}"
nowarn="${nowarn}"
/>
<echo>copy installer classes to ${dist.dir}</echo>
<copy todir="${dist.dir}" preservelastmodified="true">
<fileset dir="${compile.dir}">
<include name="org/python/util/install/**/*.class" />
<include name="org/apache/commons/cli/*.class" />
</fileset>
</copy>
<copy file="${installer.src.dir}/org/apache/LICENSE.txt" tofile="${dist.dir}/LICENSE_Apache.txt" preservelastmodified="true" />
<echo>copy installer icon to ${dist.dir}</echo>
<copy todir="${dist.dir}" preservelastmodified="true">
<fileset dir="${installer.src.dir}">
<include name="**/*.png" />
<include name="**/*.template" />
<!-- check no /bin directory -->
<exclude name="bin/**" />
</fileset>
</copy>
<echo>building installer .jar file</echo>
<jar destfile="${dist.dir}/jython-installer.jar" update="true">
<fileset dir="${dist.dir}">
<exclude name="${jython.dev.jar}"/>
<exclude name="${jython.standalone.jar}"/>
<exclude name="${jython.javadoc.jar}"/>
<exclude name="${jython.sources.jar}"/>
<exclude name="callbacker_test.jar"/>
<exclude name="extlibs/antlr-runtime*.jar" />
<exclude name="extlibs/asm*.jar" />
<exclude name="extlibs/jarjar*.jar" />
<exclude name="extlibs/junit*.jar" />
<exclude name="extlibs/hamcrest-core*.jar" />
<exclude name="extlibs/servlet-api*.jar" />
<exclude name="extlibs/xerces*.jar" />
</fileset>
<manifest>
<attribute name="Main-Class" value="org.python.util.install.Installation" />
<attribute name="Built-By" value="${user.name}" />
<!-- section for the installer program -->
<section name="Jython">
<attribute name="version" value="${jython.version}" />
<attribute name="exclude-dirs" value="org;META-INF" />
</section>
<!-- info section. ATTN: no blanks, no '.' in the names -->
<section name="Build-Info">
<attribute name="hg-build" value="${do.checkout}" />
<attribute name="oracle" value="${oracle.present}" />
<attribute name="informix" value="${informix.present}" />
<attribute name="build-compiler" value="${build.compiler}" />
<attribute name="jdk-target-version" value="${jdk.target.version}" />
<attribute name="debug" value="${debug}" />
</section>
</manifest>
</jar>
</target>
<target name="test" depends="prepare-test,javatest,launchertest,regrtest,modjytest" description="run all the tests"/>
<target name="singlejavatest" depends="compile,expose" description="run a single JUnit test (specify with -Dtest=classname)">
<junit haltonfailure="true" fork="true">
<formatter type="brief" usefile="false"/>
<sysproperty key="python.cachedir.skip" value="true"/>
<sysproperty key="python.home" value="${dist.dir}"/>
<classpath refid="test.classpath"/>
<batchtest>
<fileset dir="${test.source.dir}" includes="**/${test}.java"/>
</batchtest>
</junit>
</target>
<target name="prepare-test" depends="init">
<!-- Clean any old test output -->
<delete dir="${junit.reports}"/>
</target>
<target name="javatest" depends="javatest-basepath,importest"
description="run all the JUnit tests">
</target>
<target name="javatest-basepath" depends="developer-build">
<mkdir dir="${junit.reports}"/>
<junit fork="true" printsummary="true">
<formatter type="xml"/>
<sysproperty key="python.home" value="${dist.dir}"/>
<sysproperty key="python.test.source.dir" value="${test.source.dir}"/>
<classpath refid="test.classpath"/>
<batchtest todir="${junit.reports}">
<fileset dir="${test.source.dir}" includes="**/*Test*.java">
<exclude name="javatests/**/*" />
<exclude name="**/InterpTestCase.java" />
<exclude name="**/jythonTest*" /> <!-- Must run interactively -->
<exclude name="org/python/antlr/**" />
<exclude name="org/python/tests/imp/**" /> <!-- See importest -->
<exclude name=".classpath" />
<exclude name=".project" />
</fileset>
</batchtest>
</junit>
</target>
<target name="importest" depends="developer-build" description="run all the JUnit tests that need tests/python in the path.">
<mkdir dir="${junit.reports}"/>
<junit fork="true" printsummary="true">
<formatter type="xml"/>
<sysproperty key="python.home" value="${dist.dir}"/>
<sysproperty key="python.test.source.dir" value="${test.source.dir}"/>
<classpath refid="test.classpath"/>
<classpath refid="test.classpath"/>
<classpath>
<pathelement location="${jython.base.dir}/tests/python"/>
</classpath>
<batchtest todir="${junit.reports}">
<fileset dir="${test.source.dir}" includes="org/python/tests/imp/*Test*.java">
</fileset>
</batchtest>
</junit>
</target>
<target name="idxtest" depends="developer-build">
<mkdir dir="${junit.reports}"/>
<junit fork="true" printsummary="true" showoutput="true">
<formatter type="xml"/>
<sysproperty key="python.home" value="${dist.dir}"/>