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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
|
<!-- Copyright 2000 Dj Walker-Morgan -->
<project name="jython" default="developer-build" basedir=".">
<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 svn checkout)
---------------------------------------------------------
- make sure you have access to the Jython Subversion repository
(https://jython.svn.sourceforge.net/svnroot/jython/trunk)
- override svn.main.dir in ant.properties (if necessary)
- call target 'full-build'
This build will create a working directory named
full_build/${svn.main.dir} at the same level as your local directories
jython, sandbox 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.5/1.6/1.7)
#build.compiler=modern
#jdk.target.version=1.5
#debug=false
#deprecation=off
# - the svn main directory to build from; only needed for full-build
# This e.g. could be one of:
# trunk
# branches/Release_2_2maint
# tags/Release_2_2rc3
# meaning any directory just above the two directories:
# /installer
# /jython
# svn.main.dir defaults to trunk
#svn.main.dir=trunk
# - the revision; only needed for a snapshot full-build
# To create a snapshot build: uncomment the two revision lines, and indicate the correct revision (it has to be a number)
# For 'normal' builds, this defaults to the latest revision on svn.main.dir (HEAD)
#svn.revision=7114
#snapshot.revision=${svn.revision}
# - the directory containing libsvnjavahl-1.dll (on windows) and svnjavahl.jar; only needed for full-build
# how to get these (for windows):
# - goto http://subversion.tigris.org/servlets/ProjectDocumentList
# - open the Releases folder
# - click on the Windows folder
# - download svn-win32-1.4.6_javahl.zip (or newer)
# - unzip the .dll and .jar into javahl.dir
javahl.dir=C:/Programme/Subversion/javahl
# - the directory containing the svnant related .jar files; only needed for full-build
# the following .jar files (probably) are needed:
# - commons-lang-2.0.jar
# - jakarta-regexp-1.3.jar
# - svnant.jar
# - svnClientAdapter.jar
# - svnjavahl.jar
# how to get these:
# - goto http://subclipse.tigris.org/servlets/ProjectDocumentList
# - click on the the svnant folder
# - download svnant-1.0.0.zip (or newer)
# - unzip the jar files from the /lib folder to svnant.jar.dir
svnant.jar.dir=${basedir}/../externals/svnant-jars
</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, install" description="a full build with svn 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" />
</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="2.5.3"/>
<property name="jython.version.noplus" value="2.5.3"/>
<property name="jython.major_version" value="2"/>
<property name="jython.minor_version" value="5"/>
<property name="jython.micro_version" value="3"/>
<property name="jython.release_level" value="${PY_RELEASE_LEVEL_FINAL}"/>
<property name="jython.release_serial" value="0"/>
<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="1.5" />
<property name="jdk.source.version" value="1.5" />
<property name="deprecation" value="true" />
<property name="debug" value="true" />
<property name="nowarn" value="false" />
<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/2.5" />
<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" />
<!-- classpaths -->
<path id="main.classpath">
<pathelement path="${extlibs.dir}/libreadline-java-0.8.jar" />
<pathelement path="${extlibs.dir}/jline-0.9.95-SNAPSHOT.jar" />
<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-2.7.7.jar" />
<pathelement path="${extlibs.dir}/antlr-3.1.3.jar" />
<pathelement path="${extlibs.dir}/antlr-runtime-3.1.3.jar" />
<pathelement path="${extlibs.dir}/stringtemplate-3.2.jar" />
<pathelement path="${extlibs.dir}/livetribe-jsr223-2.0.5.jar" />
<pathelement path="${extlibs.dir}/asm-3.1.jar" />
<pathelement path="${extlibs.dir}/asm-commons-3.1.jar" />
<pathelement path="${extlibs.dir}/constantine.jar" />
<pathelement path="${extlibs.dir}/guava-r07.jar" />
<pathelement path="${extlibs.dir}/jaffl.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.jar"/>
<pathelement path="${extlibs.dir}/jnr-posix.jar"/>
<pathelement path="${extlibs.dir}/jnr-netdb-0.4.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-3.1.jar" />
<pathelement path="${extlibs.dir}/junit-3.8.2.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="svnant.jar.dir" value="${basedir}/extlibs/svnant-jars" />
<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="svn.main.dir" value="trunk" />
<property name="hg.code.dir" value="jython" />
<property name="svn.installer.dir" value="installer" />
<!-- predefined revision for checkout (this works for both trunk and release branches -->
<property name="svn.revision" value="HEAD" />
<!-- 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>
<!-- classpath for svn ant task -->
<path id="svn.classpath">
<pathelement path="${java.class.path}" />
<fileset dir="${svnant.jar.dir}">
<include name="*.jar"/>
</fileset>
</path>
<!-- taskdef for svn ant task -->
<taskdef name="svn" classname="org.tigris.subversion.svnant.SvnTask" classpathref="svn.classpath" />
</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>--- properties (used for full-build only) ---</echo>
<echo>svn.main.dir = '${svn.main.dir}'</echo>
<echo>svn.revision = '${svn.revision}'</echo>
<echo>checkout.dir = '${checkout.dir}'</echo>
<echo>javahl.dir = '${javahl.dir}'</echo>
<echo>svnant.jar.dir = '${svnant.jar.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 -b 2.5 ${checkout.dir}/${hg.code.dir}"/>
</exec>
<svn javahl="${javahl.dir}" >
<checkout url="https://jython.svn.sourceforge.net/svnroot/jython/${svn.main.dir}/${svn.installer.dir}" revision="${svn.revision}" destPath="${checkout.dir}/${svn.installer.dir}" />
</svn>
<!-- checkout cpython license from the correct python maintenance branch -->
<svn javahl="${javahl.dir}" >
<checkout url="http://svn.python.org/projects/python/branches/release25-maint/" destPath="${checkout.dir}/python" recurse="false" />
</svn>
</target>
<target name="check-hg">
<available file=".hg" type="dir" property="hg.present"/>
<condition property="hg-run">
<and>
<isset property="hg.present"/>
<!-- XXX: Might this work on Windows? -->
<isset property="os.family.unix"/>
</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.5a3+'
value='2.5a${svn.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="-Xmx128m"/>
<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="192m"
fork="true">
<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}">
<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>
<expose srcdir="${compile.dir}"
destdir="${exposed.dir}"
includesfile="${jython.base.dir}/CoreExposed.includes"/>
</target>
<target name="jar-complete" depends="jar">
<taskdef name="jarjar" classname="com.tonicsystems.jarjar.JarJarTask" classpath="extlibs/jarjar-0.7.jar"/>
<jarjar destfile="${dist.dir}/${jython.deploy.jar}">
<zipfileset src="${dist.dir}/${jython.dev.jar}"/>
<zipfileset src="extlibs/antlr-runtime-3.1.3.jar"/>
<rule pattern="org.antlr.runtime.**" result="org.python.antlr.runtime.@1"/>
<zipfileset src="extlibs/asm-3.1.jar"/>
<zipfileset src="extlibs/asm-commons-3.1.jar"/>
<zipfileset src="extlibs/asm-util-3.1.jar"/>
<rule pattern="org.objectweb.asm.**" result="org.python.objectweb.asm.@1"/>
<zipfileset src="extlibs/guava-r07.jar"/>
<rule pattern="com.google.**" result="org.python.google.@1"/>
<zipfileset src="extlibs/jaffl.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.jar"/>
<zipfileset src="extlibs/jnr-posix.jar"/>
<zipfileset src="extlibs/jnr-netdb-0.4.jar"/>
<!-- <rule pattern="com.sun.jna.**" result="org.python.jna.@1"/> -->
<rule pattern="org.jruby.ext.posix.**" result="org.python.posix.@1"/>
<zipfileset src="extlibs/constantine.jar"/>
<rule pattern="com.kenai.constantine.**" result="org.python.constantine.@1"/>
<zipfileset src="extlibs/xercesImpl-2.9.1.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-0.9.95-SNAPSHOT.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="svn-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>
</jarjar>
</target>
<target name="jar-standalone" depends="jar-complete, copy-lib">
<taskdef name="jarjar" classname="com.tonicsystems.jarjar.JarJarTask" classpath="extlibs/jarjar-0.7.jar"/>
<jarjar destfile="${dist.dir}/${jython.standalone.jar}">
<zipfileset src="${dist.dir}/${jython.deploy.jar}"/>
<fileset dir="${dist.dir}" includes="Lib/**" excludes="Lib/test/**,Lib/email/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="svn-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>
</jarjar>
</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="svn-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}"
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://java.sun.com/j2se/1.5.0/docs/api/" />
<classpath refid="javadoc.classpath" />
</javadoc>
</target>
<target name="all-jars" depends="jar-standalone, javadoc">
<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">
<!-- XXX untested and most likely broken in 2.5
<copy todir="${dist.dir}" preservelastmodified="true">
<fileset dir="${jython.base.dir}" includes="Tools/**/*.py" />
</copy>
-->
<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/2.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 install called by itself, make sure all the dependent targets run;
otherwise, redundant with full-check -->
<target name="install-init">
<property name="full-build" value="true" />
</target>
<!-- wrap the build into the installer -->
<target name="install" depends="brand-readme-version, install-init, jar-standalone, javadoc, copy-full">
<property name="install.src.dir" value="${jython.base.dir}/../installer/src/java" />
<echo>compiling installer from ${install.src.dir}</echo>
<javac srcdir="${install.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="${install.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="${install.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="${work.dir}/jython_installer-${jython.version.noplus}.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/svnant-jars/**" />
<exclude name="extlibs/antlr*.jar" />
<exclude name="extlibs/asm*.jar" />
<exclude name="extlibs/constantine*.jar" />
<exclude name="extlibs/jarjar*.jar" />
<exclude name="extlibs/junit*.jar" />
<exclude name="extlibs/servlet-api*.jar" />
<exclude name="extlibs/stringtemplate*.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 install 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="svn-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="developer-build" description="run all the JUnit tests">
<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="org/python/antlr/**" />
<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}"/>
<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="org/python/antlr/**" />
<exclude name="org/python/core/**" />
<exclude name="org/python/expose/**" />
<exclude name="org/python/jsr223/**" />
<exclude name="org/python/tests/**" />
<exclude name="org/python/util/**" />
</fileset>
</batchtest>
</junit>
</target>
<!-- XXX: how do I share common stuff with "idxtest" target? -->
<target name="idxtest-debug" 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"/>
<jvmarg value="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5000"/>
<batchtest todir="${junit.reports}">
<fileset dir="${test.source.dir}" includes="**/*Test*.java">
<exclude name="javatests/**/*" />
<exclude name="**/InterpTestCase.java" />
<exclude name="org/python/antlr/**" />
<exclude name="org/python/core/**" />
<exclude name="org/python/expose/**" />
<exclude name="org/python/jsr223/**" />
<exclude name="org/python/tests/**" />
<exclude name="org/python/util/**" />
</fileset>
</batchtest>
</junit>
</target>
<target name="modjytest" depends="developer-build">
<ant dir="tests/modjy">
<property name="jython_home" value="${dist.dir}"/>
<property name="mockrunner_home" value="${extlibs.dir}/mockrunner-0.4.1"/>
</ant>
</target>
<target name="launchertest" depends="developer-build" if="os.family.unix">
<exec executable="${test.shell.dir}/test-jython.sh">
<arg value="${dist.dir}"/>
</exec>
</target>
<target name="regrtest" depends="developer-build,regrtest-unix,regrtest-windows" description="run Python tests expected to work on Jython"/>
<target name="regrtest-unix" if="os.family.unix">
<exec executable="${dist.dir}/bin/jython">
<arg value="${dist.dir}/Lib/test/regrtest.py"/>
<!-- Only run the tests that are expected to work on Jython -->
<arg value="--expected"/>
<arg value="-j"/>
<arg value="${junit.reports}"/>
</exec>
</target>
<target name="regrtest-windows" if="os.family.windows">
<exec executable="${dist.dir}/bin/jython.bat">
<arg value="${dist.dir}/Lib/test/regrtest.py"/>
<!-- Only run the tests that are expected to work on Jython -->
<arg value="--expected"/>
<arg value="-j"/>
<arg value="${junit.reports}"/>
</exec>
</target>
<!-- run bugtests, create a config if necessary -->
<target name="bugtest" depends="create-bugtest-config">
<java classname="org.python.util.jython" fork="true" dir="${bugtests.dir}">
<classpath>
<pathelement location="${dist.dir}/${jython.dev.jar}"/>
<fileset dir="${dist.dir}/javalib"/>
</classpath>
<jvmarg value="-Dpython.home=${dist.dir}"/>
<arg value="driver.py"/>
<!-- uncomment if you want to run only one test: -->
<!--
<arg value="386"/>
-->
</java>
</target>
<!-- create support_config.py in the bugtset directory only if it doesn't already exist -->
<target name="create-bugtest-config" depends="init, check-bugtest-config" unless="have_bugtest_config">
<!-- doesn't seem to be a direct way to get at the path to javac,
java.home points to the jre folder. The following assumes a standard
jdk layout. Alternative is to try something like:
<property environment="env"/>
<property name="jdk.home" value="${env.JAVA_HOME}" />
or set jdk.home explicitly
-->
<echo>creating ${bugtests.dir}/support_config.py</echo>
<property name="jdk.home" value="${java.home}/.." />
<echo file="${bugtests.dir}/support_config.py">
# this configuration was auto-generated by ant build script,
# safe to edit by hand (won't be overwritten)
java_home="${jdk.home}"
jython_home="${dist.dir}"
classpath="${dist.dir}/${jython.dev.jar}${path.separator}classes"
</echo>
</target>
<!-- set property have_bugtest_config if support_config.py already exists in the bugtest directory -->
<target name="check-bugtest-config">
<available property="have_bugtest_config" file="${bugtests.dir}/support_config.py"/>
</target>
</project>
|