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 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313
|
2010-03-18 Alexander Kurtakov <akurtako@redhat.com>
* patches/droppluginversions.patch: New file.
* build.xml: Apply patch to match upstream qualifiers.
2010-03-12 Andrew Overholt <overholt@redhat.com>
* build.xml: Remove unnecessary copying of test result XML files.
2010-03-12 Andrew Overholt <overholt@redhat.com>
* build.xml: Remove provision.tests task; do test provisioning in
runtests.sh.
* runtests.sh: Re-factor. Clean test installation between runs of each
test suite. (Roland Grunberg)
2010-03-10 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Create swt symlinks on install.
2010-03-10 Andrew Overholt <overholt@redhat.com>
Bug #305002
* patches/addEcfQualifiers.patch: New file. Make ECF plugins have
qualifiers matching upstream.
* build.xml: Apply above patch.
2010-03-08 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Fix multilib install.
2010-03-08 Andrew Overholt <overholt@redhat.com>
* buildSDKSource.sh: Revert to fetching from CVS ourselves to get
featureVersions.properties and pluginVersions.properties.
2010-03-08 Andrew Overholt <overholt@redhat.com>
* buildEclipseBuildSource.sh: Remove .settings and .project when creating
eclipse-build tarball.
2010-03-05 Roland Grunberg <rgrunber@redhat.com>
* buildSDKSource.sh: Clean up script to build tarball of sdk tests
for 3.5.2.
2010-03-04 Andrew Overholt <overholt@redhat.com>
* buildSDKSource.sh: Drop .cvsignore files.
2010-03-03 Andrew Overholt <overholt@redhat.com>
* Merge symlinkDependencies branch.
2010-03-02 Andrew Overholt <overholt@redhat.com>
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkInstalledOSGiJars.java
(importantManifestEntries): Only compare Bundle-SymbolicName when
symlinking at install time since we know it will be correct based on
build time symlinks.
2010-03-02 Andrew Overholt <overholt@redhat.com>
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java
(execute): Correct symlink location.
2010-03-02 Andrew Overholt <overholt@redhat.com>
* dependencies.properties: Fix up Debian jasper JAR location.
2010-03-02 Andrew Overholt <overholt@redhat.com>
* dependencies.properties:
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java
(execute): Continue to next potential system JAR instead of failing if the
first one doesn't work.
2010-03-01 Andrew Overholt <overholt@redhat.com>
* build.xml: Re-symlink to system JARs after p2 director installation.
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkInstalledOSGiJars.java:
New file. Symlink OSGI bundles again after p2 installation step.
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java:
Remove unused parts.
2010-02-26 Andrew Overholt <overholt@redhat.com>
* build.properties: Make buildID same as 3.5.2.
* pdebuild.properties: Likewise.
2010-02-26 Andrew Overholt <overholt@redhat.com>
* buildSDKSource.sh: Clean up a bit (Benjamin Drung).
2010-02-26 Andrew Overholt <overholt@redhat.com>
* buildSDKSource.sh: Generate source tarball using upstream srcIncluded
drop.
2010-02-26 Andrew Overholt <overholt@redhat.com>
* build.xml: Use new source tarball name and directory structure (no more
"-fetched"). Update version number and label. For now, don't re-symlink
in installation directory.
* regenerateBootstrapFiles.sh: Likewise.
* generateAdditionalPlatforms.xml: Likewise.
* pdebuild.xml: Likewise. Don't reference .source bundles.
* build.properties: Set label to 3.5.2.
* pdebuild.properties: Likewise.
2010-02-26 Andrew Overholt <overholt@redhat.com>
* patches/eclipse-nosourcebundlesfordependencies.patch: Don't generate
JUnit4 source bundle.
2010-02-26 Andrew Overholt <overholt@redhat.com>
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java
(execute): Don't assume location of dependency manifests. Create symlink
filenames based on Bundle-SymbolicName_Bundle-Version when keepOrigNames
is false (used at installation time).
* build.xml: Remove old system JAR files before re-symlinking in
installation.
* buildSDKSource.sh: Remove more binaries (Benjamin Drung, bug #303447).
2010-02-26 Andrew Overholt <overholt@redhat.com>
Bug #280688
* dependencies.properties: Update Debian/Ubuntu locations (Benjamin Drung).
2010-02-26 Andrew Overholt <overholt@redhat.com>
* patches/eclipse-nosourcebundlesfordependencies.patch: Remove references
to dependency source bundles.
* build.xml: Apply above patch.
2010-02-26 Andrew Overholt <overholt@redhat.com>
Bug #280688
* dependencies.properties: Add Debian/Ubuntu locations (Benjamin Drung).
* nonosgidependencies.properties: Likewise.
2010-02-26 Alexander Kurtakov <akurtako@redhat.com>
* patches/eclipse-use-newer-commons-codec.patch: New file.
* build.xml: Apply patch to use whatever commons-codec version is available.
* dependencies.properties: Add unversioned jetty jars (needed for Fedora 13).
2010-02-25 Andrew Overholt <overholt@redhat.com>
* build.xml: Re-symlink in installation directory.
2010-02-25 Andrew Overholt <overholt@redhat.com>
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java
(execute): Handle bundle versions with less than 4 components.
2010-02-25 Andrew Overholt <overholt@redhat.com>
* build.xml: Add debuginfo to ant task .class files.
2010-02-25 Andrew Overholt <overholt@redhat.com>
* build.xml: Only build symlink task and symlink deps once (stamp file).
Remove JAR signatures from JUnit and Ant META-INF.
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkNonOSGiJars.java
(execute): Delete symlink target before creating it.
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java
(execute): Likewise.
* dependencies.properties: Fix sat4j versions and qualifiers.
2010-02-25 Andrew Overholt <overholt@redhat.com>
Bug #303447
* buildSDKSource.sh: Delete more unused files (Benjamin Drung).
2010-02-25 Alexander Kurtakov <akurtako@redhat.com>
* pdebuild/eclipse-pdebuild.sh: Add exit 1 on unknown option.
2010-02-24 Andrew Overholt <overholt@redhat.com>
* dependencyManifests/com.ibm.icu_4.0.1.v20090822.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/com.jcraft.jsch_0.1.41.v200903070017.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/javax.servlet.jsp_2.0.0.v200806031607.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/javax.servlet_2.5.0.v200806031605.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.apache.commons.codec_1.3.0.v20080530-1600.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.apache.commons.el_1.0.0.v200806031608.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.apache.commons.httpclient_3.1.0.v20080605-1935.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.apache.commons.logging_1.0.4.v200904062259.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.apache.jasper_5.5.17.v200903231320.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.apache.lucene.analysis_1.9.1.v20080530-1600.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.apache.lucene_1.9.1.v20080530-1600.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.hamcrest.core_1.1.0.v20090501071000.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.mortbay.jetty.server_6.1.15.v200905151201.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.mortbay.jetty.util_6.1.15.v200905182336.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.objectweb.asm_3.1.0.v200803061910.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.sat4j.core_2.1.1.v20090825.jar/META-INF/MANIFEST.MF: New file.
* dependencyManifests/org.sat4j.pb_2.1.1.v20090825.jar/META-INF/MANIFEST.MF: New file.
2010-02-24 Andrew Overholt <overholt@redhat.com>
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkSystemJars.java:
Removed.
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkOSGiJars.java:
Renamed for clarity.
* build.xml: Use new class name for ant task.
2010-02-24 Andrew Overholt <overholt@redhat.com>
* build.xml: Build ant task and run it to symlink to dependencies.
* dependencies.properties: New file. Map between Eclipse-included OSGi
dependencies and potential system locations.
* nonosgidependencies.properties: New file. Map between Eclipse-included
non-OSGi dependencies and potential system locations.
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkNonOSGiJars.java: New
file. Ant task for symlinking to all non-OSGi JARs listed in
nonosgidependencies.properties.
* task-src/org/eclipse/linuxtools/eclipsebuild/SymlinkSystemJars.java: New
file. Ant task for symlinking to all OSGi JARs listed in
dependencies.properties.
2010-02-22 Andrew Overholt <overholt@redhat.com>
Bug #294557
* pdebuild/eclipse-pdebuild.sh: Maintain Eclipse's exit code (Niels
Thykier).
2010-02-22 Alexander Kurtakov <akurtako@redhat.com>
* build.sh: Propagate the error code from ant and fix in a call to a
dpkg-architecture (Niels Thykier).
2010-02-22 Alexander Kurtakov <akurtako@redhat.com>
Remove jetty5 dependency. (Niels Thykier)
* patches/eclipse-no-jetty5.patch: New file.
* build.xml: Apply no-jetty5.patch and remove jetty5 bundles.
* eclipse-build-generatedScripts.tar.bz2: Regenerated.
* pdebuild.xml: Don't build o.e.equinox.http.jetty_1.1.100.
2010-02-19 Alexander Kurtakov <akurtako@redhat.com>
* ecf-filetransfer-build.properties: Removed.
* ecf-filetransfer-feature.xml: Removed.
* build.xml: Reduce the ecf section.
2010-02-18 Alexander Kurtakov <akurtako@redhat.com>
* regenerateBootstrapFiles.sh: New file.(Fedora specific but let's at least keep it in the repo)
* build.xml: Don't build ecf. It's done in pdebuild now.
* eclipse-build-generatedScripts.tar.bz2: Regenerated.
* pdebuild.xml: Build ecf.
2010-02-16 Andrew Overholt <overholt@redhat.com>
Bug #302256
* build.xml: Add -Xmx to JVM arguments when forking separate java
processes (Matt Whitlock).
2010-02-16 Alexander Kurtakov <akurtako@redhat.com>
* pdebuild.properties: Fix properties to match 3.5.2 M-build.
* eclipse-build-generatedScripts.tar.bz2: Regenerated.
2010-02-11 Andrew Overholt <overholt@redhat.com>
* patches/eclipse-add-archs-executable.patch: Re-generate.
* build.xml: Apply eclipse-add-arches-executable.patch in proper location.
2010-02-11 Andrew Overholt <overholt@redhat.com>
* build.xml: Remove patches present in 3.5.2.
* patches/eclipse-help-toolbar.patch: Removed.
* patches/gtk2.18zorder.patch: Removed.
* patches/swtbug290395-updatedialog.patch: Removed.
* patches/swtbug291128.patch: Removed.
* patches/swtbug296284-xulrunner192.patch: Removed.
* patches/transformclipping.patch: Removed.
* build.properties: Update for build towards 3.5.2.
* buildSDKSource.sh: Likewise.
* patches/eclipse-add-archs-executable.patch: Likewise.
2010-01-14 Andrew Overholt <overholt@redhat.com>
* patches/swtbug290395-updatedialog.patch: Backport patch from 3.5
maintenance branch.
* patches/swtbug296284-xulrunner192.patch: Likewise.
* build.xml: Add above 2 patches.
2009-12-22 Andrew Overholt <overholt@redhat.com>
* patches/swtbug291128.patch: Add back-ported patch from bug #291128.
* build.xml: Add above patch.
2009-12-08 Roland Grunberg <rgrunber@redhat.com>
* patches/tests-BZ295666.patch: New file.
* build.xml: Fix for bug #295666
2009-12-03 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Install eclipse.ini in etc/. (bug #295523 Benjamin Drung)
2009-12-03 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Fix dropins path in eclipse.ini. (bug #295525 Benjamin Drung)
2009-12-01 Andrew Overholt <overholt@redhat.com>
* build.xml: Add patch for transform clipping with GTK 2.18 (bug #286687).
* patches/transformclipping.patch: Likewise.
2009-11-17 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Remove version string from extracted eclipse tarball when running unpacked. (Benjamin Drung)
2009-11-11 Alexander Kurtakov <akurtako@redhat.com>
* pdebuild/eclipse-pdebuild.sh: Do not escape $orbitDepsDir.
2009-11-05 Alexander Kurtakov <akurtako@redhat.com>
Fix for bug #294264.
* build.xml: Use ${buildWorkspace} instead of $HOME/workspace.
2009-11-03 Andrew Overholt <overholt@redhat.com>
Bug #292706
* buildSDKSource.sh: Apply patch from Benjamin Drung to remove binaries
and CVS files from source tarball.
2009-11-03 Andrew Overholt <overholt@redhat.com>
* patches/eclipse-jdt_launch-customBuild.patch: Correct offset.
* patches/eclipse-addArchesAnd64bitSWT.patch: Fix end of file.
* patches/eclipse-add-archs-executable.patch: Likewise.
* build.xml: File strip level for above patch (5 -> 6).
2009-11-03 Andrew Overholt <overholt@redhat.com>
Bug #293952
* build.xml: Only build for target (idea courtesy Matthias Klose).
2009-11-03 Matthias Klose <doko@ubuntu.com>
* eclipse-build-additionalArchs.tar.bz2: Add files for arm, mips, mipsel,
PA_RISC, alpha, ia64. Fix existing files for 64-bit platforms (ppc64 and
sparc64). Copy over fix for bug #293974.
2009-11-03 Matthias Klose <doko@ubuntu.com>
Bug #293948
* patches/eclipse-add-archs-filesystem.patch: Add MIPs, PA_RISC, alpha,
arm, ia64. Alphabetize platforms.
* patches/eclipse-add-archs-executable.patch: Likewise.
* patches/eclipse-add-archs-swt.patch: Likewise.
* patches/eclipse-add-ppc64-sparc64-s390-s390x.patch: Add MIPS and arm.
* build.xml: Set strip=0 for eclipse-add-pp64-sparc64-s390-s390x.patch.
Add application of patches/eclipse-addArchesAnd64bitSWT.patch.
* patches/eclipse-64bitSWT.patch: New file. Add arm, PA_RISC, sparcv9,
MIPS to SWT build.sh. Make SWT 64-bit on alpha, too.
2009-11-03 Matthias Klose <doko@ubuntu.com>
Bug #293951
* build.sh: Add MIPS and PA_RISC.
2009-10-26 Matthias Klose <doko@ubuntu.com>
* additionalArchs/rename.sh: Remove bashism.
2009-11-02 Andrew Overholt <overholt@redhat.com>
* build.xml: Re-name variable for clarity.
2009-11-02 Andrew Overholt <overholt@redhat.com>
Bug #292475 (Benjamin Drung)
* build.xml: Support build with extracted source (not just with tarball).
2009-10-30 Andrew Overholt <overholt@redhat.com>
Bug #292610 (Benjamin Drung)
* build.xml: Apply patches from Benjamin Drung to maintain permissions upon
installation. Also give executable bit to package-build shell scripts.
2009-10-29 Alexander Kurtakov <akurtako@redhat.com>
* patches/eclipse-pde.build-add-package-build.patch: Remove one shell script (done in ant now).
2009-10-22 Alexander Kurtakov <akurtako@redhat.com>
Fix #292078. (Niels Thykier)
* patches/gnomeproxy-makefile.patch: New file.
* build.xml: Build libgnomeproxy only on x86.
2009-10-21 Alexander Kurtakov <akurtako@redhat.com>
* patches/eclipse-add-ppc64-filesystem.patch: Removed.
* patches/eclipse-add-ppc64-swt.patch: Removed.
* patches/eclipse-add-archs-executable.patch: New file.
* patches/eclipse-add-archs-filesystem.patch: New file.
* patches/eclipse-add-archs-swt.patch: New file.
* build.xml: Apply new patches adding sparc support and launcher fragments.
* eclipse-build-additionalArchs.tar.bz2: Regenerated.
* generateAdditionalPlatforms.xml: Generated sparc* fragments.
* build.sh: Add support for sparc* archs.
2009-10-20 Alexander Kurtakov <akurtako@redhat.com>
* patches/eclipse-pde.build-add-package-build.patch: Execute with /bin/bash. (Niels Thykier)
2009-10-19 Alexander Kurtakov <akurtako@redhat.com>
* generateAdditionalPlatforms.xml: New file.
2009-10-19 Alexander Kurtakov <akurtako@redhat.com>
* eclipse-build-additionalArchs.tar.bz2: New file.
* additionalArchs/rename.sh: New file.
* patches/eclipse-add-ppc64-filesystem.patch: New file.
* patches/eclipse-add-ppc64-swt.patch: New file.
* build.xml: Add ppc64 support.
2009-10-15 Alexander Kurtakov <akurtako@redhat.com>
* patches/eclipse-add-ppc64-sparc64-s390-s390x.patch: New file.
* build.xml: Add patch with constants for additional args.
2009-10-12 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Create a symlink to o.e.equinox.launcher in the install. (Niels Thykier)
2009-10-12 Alexander Kurtakov <akurtako@redhat.com>
* ecf-filetransfer-build.properties: New file.
* ecf-filetransfer-feature.xml: New file.
* build.xml: Compile ecf bundles.
2009-10-08 Andrew Overholt <overholt@redhat.com>
Bud #291681 - Patch courtesy Benjamin Drung
* build.xml: Add patch to build Equinox initializer application.
2009-10-08 Alexander Kurtakov <akurtako@redhat.com>
Add pdebuild and companions.
* pdebuild/eclipse-copy-platform.sh: New file.
* pdebuild/eclipse-pdebuild.sh: Likewise.
2009-10-07 Alexander Kurtakov <akurtako@redhat.com>
* patches/eclipse-pde.build-add-package-build.patch: New file.
* build.xml: Apply pdebuild script patch.
2009-10-07 Andrew Overholt <overholt@redhat.com>
* runtests.sh: Add missing line continuation.
2009-10-07 Andrew Overholt <overholt@redhat.com>
Bug #291531 - Work courtesy Niels Thykier
* swt_bundle.sh: Initial checkin (Niels Thykier).
* build.xml: Add target to call script to extract SWT bundle for
standalone packaging (Niels Thykier).
2009-10-07 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Install shared dropins folder.
2009-10-07 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Install icon in /usr/share/pixmaps.
2009-10-07 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Fix patch applying to unbreak build.
2009-10-06 Andrew Overholt <overholt@redhat.com>
Bug #291504
* build.xml: Apply patch from Benjamin Drung to add link to the
launcher binary in the installation directory.
2009-10-06 Andrew Overholt <overholt@redhat.com>
* patches/gtk2.18zorder.patch: Initial check-in of 3.5.1 back-port for
(https://bugs.eclipse.org/287307).
* build.xml: Apply GTK 2.18 z-order patch. Organize patch section a
bit.
2009-10-05 Andrew Overholt <overholt@redhat.com>
* runtests.sh: Move option parsing out of function.
* build.xml: Generate top-level test report HTML file.
2009-10-05 Alexander Kurtakov <akurtako@redhat.com>
* pdebuild.xml: Add macrodef for running the buildScripts generation.
2009-10-04 Andrew Overholt <overholt@redhat.com>
* runtests.sh: Ignore missing SDK test properties file if not present
whem removing.
2009-10-02 Alexander Kurtakov <akurtako@redhat.com>
* buildSDKSource.sh: Update ecf tag to the one used for 3.5.1.
2009-10-01 Alexander Kurtakov <akurtako@redhat.com>
* pdebuild.xml: Use buildTag variable instead of hard-coded value.
2009-10-01 Alexander Kurtakov <akurtako@redhat.com>
* pdebuild.properties: Sync buildId and buildTag with build.properties.
* pdebuild.xml: Likewise.
2009-09-30 Alexander Kurtakov <akurtako@redhat.com>
* build.properties: Separate buildId and buildTag.
* build.xml: Likewise.
2009-09-30 Alexander Kurtakov <akurtako@redhat.com>
* eclipse-build-generatedScripts.tar.bz2: Regenerate for 3.5.1.
2009-09-30 Andrew Overholt <overholt@redhat.com>
* buildSDKSource.sh: Don't use "v" prefix for tag of tests.
2009-09-29 Andrew Overholt <overholt@redhat.com>
* buildSDKSource.sh: Update for 3.5.1. Use local Orbit and ECF dumps if
present. Check out a version of eclipsebuilder (not HEAD). Don't generate
bootstrap build.xml files as part of source fetching. Fetch ECF sources.
* build.xml: Use testsBuildLabel and p2.director.version properties from
build.properties.
* build.properties: Move testsBuildLabel and p2.director.version here.
Update default buildId.
* patches/eclipse-useLocalECFBundles.patch: Initial check-in. Use local ECF
bundles instead of hitting eclipse.org where possible.
* patches/eclipse-dontusefullmoonformaster.patch: Initial check-in. Don't use
internal IBM mirror.
2009-09-25 Andrew Overholt <overholt@redhat.com>
* eclipse.desktop: Remove Encoding
(see http://standards.freedesktop.org/desktop-entry-spec/1.0/apc.html).
2009-09-25 Alexander Kurtakov <akurtako@redhat.com>
* patches/tests-nostyletask.patch: New file.
* build.xml: Apply patch to not use deprecated ant task.
* junitHelper.xml: Likewise.
2009-09-25 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Delete testBuild folder in clean.
2009-09-24 Andrew Overholt <overholt@redhat.com>
* build.xml: Add message requesting posting of results.
Update URL for downloading (use mirrors).
* runtests.sh: Add wiki page for posting results.
2009-09-24 Andrew Overholt <overholt@redhat.com>
* runtests.sh: Define "plugin-path" for SWT tests.
2009-09-24 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Use ant tasks instead of execs.
2009-09-23 Andrew Overholt <overholt@redhat.com>
* runtests.sh: Add some information about failing tests. Run with
os/ws/arch specified (at least os is needed for SWT tests).
2009-09-23 Andrew Overholt <overholt@redhat.com>
* runtests.sh: Try to clean up between runs of each suite.
2009-09-23 Alexander Kurtakov <akurtako@redhat.com>
* patches/eclipse-jdt_launch-customBuild.patch: New file.
* build.xml: Fix o.e.jdt.launching custombuild.
2009-09-23 Andrew Overholt <overholt@redhat.com>
* runtests.sh: Enable all test suites.
* build.xml: Copy re-named junitHelper.xml instead of genReport.xml
2009-09-23 Andrew Overholt <overholt@redhat.com>
* build.xml: Make building of tests depend upon building of SDK.
2009-09-23 Andrew Overholt <overholt@redhat.com>
* build.xml: Pass in a timestamp when running the tests. Copy final test
results to ${basedir}/testResults-${timestamp}. Copy vncpwd file for use.
* runtests.sh: Rename genReport function to genHtml. Handle test suites
with multiple XML output files. Add ability to pass in timestamp.
Document VNC password.
* junitHelper.xml: Rename from genReport.xml.
* eclipse-tests-vncpwd: Initial checkin. Default VNC password of
VNCpassword1.
2009-09-22 Andrew Overholt <overholt@redhat.com>
* build.xml: Copy the test installation into a sub-directory. Copy
genReport.xml and runtests.sh into test installation parent directory.
Add runTests target.
* runtests.sh: Add all test suites back (don't know if they all work,
but ...). Add FIXME to remember to deal with plugins that have multiple
suites.
2009-09-22 Andrew Overholt <overholt@redhat.com>
* genReport.xml: Initial checkin. Generate HTML from the JUnit XML output.
* runtests.sh: Initial checkin. Run the SDK tests after a build (will be
in build.xml in the near future).
* build.properties: Add testsBuildID.
* build.xml: Add multilib property to allow use of /usr/lib64. Add
getInstallationDir target to test for multilib and 64-bit architecture.
Add provisioning of tests into test installation directory.
2009-09-22 Alexander Kurtakov <akurtako@redhat.com>
* patches/eclipse-help-toolbar.patch: New file.
* build.xml: Appy the help toolbar patch.
2009-09-21 Andrew Overholt <overholt@redhat.com>
* buildEclipseBuildSource.sh: Make default tag 0.3.1.
2009-09-21 Andrew Overholt <overholt@redhat.com>
* build.xml: Add stamp for inserting the build ID.
2009-09-21 Andrew Overholt <overholt@redhat.com>
Bug #289938
* build.xml: Add install target to install provisioned SDK (courtesy
Benjamin Drung).
* eclipse.desktop: Initial checking (courtesy Benjamin Drung).
2009-09-21 Andrew Overholt <overholt@redhat.com>
Bug #289939
* build.xml: Apply patch from Benjamin Drung to add stamp files for
provisioning SDK and other targets.
2009-09-15 Andrew Overholt <overholt@redhat.com>
* patches/tests-noapttests.patch: New file. Patch for eclipse bug #244178.
* build.xml: Fix "scriptsPreset" typo. Build test framework and SDK tests.
* buildSDKSource.sh: Add fetching of test scripts not included elsewhere.
2009-08-27 Andrew Overholt <overholt@redhat.com>
Bug #286824
* build.xml: Re-name "init" target to "unpack". Add stamp files to
allow skipping previously-done targets. Comment out some JVM args
for director call that caused issues on Debian. All courtesy
Niels Thykier.
2009-08-27 Andrew Overholt <overholt@redhat.com>
Bug # 287758
* build.properties: Add default-java JVM path for Debian (courtesy
Benjamin Drung).
* pdebuild.properties: Likewise.
2009-08-27 Andrew Overholt <overholt@redhat.com>
Bug #287753
* build.xml: Add patch to not modify JAVA_HOME and to optimize compilation
of liblocalfile.so (from Benjamin Drung).
* patches/donotsetjavahomeandoptimizeliblocalfile.patch: New patch.
2009-08-27 Andrew Overholt <overholt@redhat.com>
Bug #287752
* build.xml: Add patch to not store build logs in separate files (from
Benjamin Drung).
* patches/donotstorebuildlogsinfiles.patch: New patch.
2009-08-26 Andrew Overholt <overholt@redhat.com>
Bug #287719
* build.xml: Add distclean target (from Benjamin Drung).
2009-08-24 Andrew Overholt <overholt@redhat.com>
Bug #286826
* build.sh: Apply patch to tee to a log file from Niels Thykier.
2009-08-14 Andrew Overholt <overholt@redhat.com>
Bug #286571
* buildEclipseBuildSource.sh: Apply fixes from nthykier for bash-isms.
* buildSDKSource.sh: Likewise.
2009-08-11 Alexander Kurtakov <akurtako@redhat.com>
* buildEclipseBuildSource.sh: Create 0.3.0 by default.
* build.sh: Remove test output.
2009-08-06 Alexander Kurtakov <akurtako@redhat.com>
* patches/eclipse-buildswtnatives.patch: Remove ia64 part.
2009-08-01 Alexander Kurtakov <akurtako@redhat.com>
* build.sh: Add ppc64 support to build.sh.
2009-07-31 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Move properties definition to a place where all task can use them.
Disable libgnomeproxy build for now.
2009-07-23 Alexander Kurtakov <akurtako@redhat.com>
* build.sh: Remove not needed part.
* build.xml: Enable native parts compilation.
2009-07-22 Andrew Overholt <overholt@redhat.com>
Bug #280686
* build.sh: Wrap ant call with arch-finding logic.
2009-07-22 Andrew Overholt <overholt@redhat.com>
* build.xml: Don't pass buildConfig to buildConfiguration.xml.
2009-07-22 Andrew Overholt <overholt@redhat.com>
* build.xml: Remove erroneous depends= between run.director and p2prep.
2009-07-21 Andrew Overholt <overholt@redhat.com>
* publishProduct.xml: Initial commit.
2009-07-20 Andrew Overholt <overholt@redhat.com>
* build.xml: Add some debugging of content.{xml,jar}.
2009-07-20 Andrew Overholt <overholt@redhat.com>
* build.xml: Use new org.eclipse.equinox.p2.director app. Split p2prep
into multiple targets to ease debugging.
2009-07-20 Andrew Overholt <overholt@redhat.com>
* build.xml: Use antrunner from bootstrap to run targets that need Eclipse
extension points. Add target to generate build.xml files for PDE Build
boostrapping. Extract pre-generated build.xml files before building.
Don't fail if basebuilder (bootstrap)'s p2 folder doesn't exist and we try
to move it.
2009-07-20 Andrew Overholt <overholt@redhat.com>
* pdebuild.properties: Hard-code build ID. Don't use ecj for
bootstrapping since we don't necessarily have it around.
* build.xml: Default to bootstrapping. Use bootstrapped launcher jar by
default.
* pdebuild.xml: Add bundles required by director app to list of bundles to
bootstrap. Zip and symlink base framework plugins. Add target for
generating bootstrapping build scripts.
* bootstrap/configuration/config.ini: Add bundles required by director app
to osgi.bundles. Remove unnecessary osgi.framework properties. Add eof
property.
* eclipse-build-generatedScripts.tar.bz2: Initial checkin of generated
build scripts for bootstrapping.
2009-07-15 Alexander Kurtakov <akurtako@redhat.com>
* buildSDKSource.sh: Fix source tarball generation to include build.xml files for bootstrap.
2009-07-08 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Use untar instead of shell command.
* pdebuild.xml: Exclude source bundles from orbit deps.
* generatebuild.xml: Remove old commented code.
2009-07-08 Andrew Overholt <overholt@redhat.com>
* pdebuild.xml: Work around duplicate org.eclipse.equinox.http.jetty.
* pdebuild.properties: Copy some properties over from build.properties.
2009-07-07 Alexander Kurtakov <akurtako@redhat.com>
* pdebuild.xml: Add second bootstrap stage.
* bootstrap/configuration/config.ini: Make paths more sane.
2009-06-30 Alexander Kurtakov <akurtako@redhat.com>
* bootstrap/configuration/config.ini: Point to the bootstrap folder.
* pdebuild.properties: New file.
* pdebuild.xml: Fix build of pde.build with the new sources.
2009-06-25 Alexander Kurtakov <akurtako@redhat.com>
* build.properties: Remove hardcoded sdkSource property.
* pdebuild.xml: Add target for generating scripts.
2009-06-23 Andrew Overholt <overholt@redhat.com>
* README.mediawiki: Assume tarball usage.
2009-06-23 Andrew Overholt <overholt@redhat.com>
* build.xml: Fail if source tarball not present. Copy build config and
feature instead of untarring (bug #281135).
* build.properties: Don't set buildDirectory here. Do it in build.xml
instead. Define featureToBuild here.
* buildSource.sh: Run both SDK source fetching and eclipse-build fetching.
* buildSDKSource.sh: Re-name buildSource.sh to indicate just fetching of
SDK sources. Default to $(pwd) instead of /tmp/eclipseSDKBuild. Don't
fetch tests by default.
* buildEclipseBuildSource.sh: New file. Create tarball of eclipse-build
source.
* README.mediawiki: Update a bit.
2009-06-23 Andrew Overholt <overholt@redhat.com>
* build.xml: Remove unused targets.
2009-06-23 Alexander Kurtakov <akurtako@redhat.com>
* directory.txt: Removed; no longer necessary.
2009-06-23 Alexander Kurtakov <akurtako@redhat.com>
* retrieve_map.sh: Removed; no longer necessary.
2009-06-23 Alexander Kurtakov <akurtako@redhat.com>
* assemble.xml: Removed; no longer necessary.
* fetch.xml: Likewise.
* build.xml: Remove old targets.
2009-06-22 Andrew Overholt <overholt@redhat.com>
Bug #280684
* ABOUT.mediawiki: Add some bug links and a bit more documentation.
* build.xml: Default to 3.5 final build ID.
* README.mediawiki: Update a bit with how to test.
2009-06-22 Andrew Overholt <overholt@redhat.com>
* build.properties: Don't set p2.{metadata,artifact}.repo.name.
2009-06-22 Andrew Overholt <overholt@redhat.com>
Bug #280681
* build.xml: Explicitly set eclipse.p2.data.area as a JVM argument when
running director.
2009-06-22 Andrew Overholt <overholt@redhat.com>
Bug #280679
* build.xml: Define productFiles globally. Generate feature for root
files. To use this, ensure eclipse-build-config is up to date --
especially the generated tarball of it.
2009-06-18 Andrew Overholt <overholt@redhat.com>
* buildSource.sh: Set workspace and user.home during fetching. Make 3.5
build ID the default. Add -noTests flag to not fetch the tests' source.
* build.xml: Make default target build and provision.
2009-06-17 Andrew Overholt <overholt@redhat.com>
* build.xml: Fix path for builtZip. Remove extraneous "mkdir
${buildRepo}".
2009-06-17 Andrew Overholt <overholt@redhat.com>
* build.xml: Build directly from build config. Do p2 director installation.
* generatebuild.xml: Explicitly enable flattenDependencies and
parallelCompilation.
2009-06-15 Andrew Overholt <overholt@redhat.com>
* buildSource.sh: Replace example build ID with probably 3.5 one.
2009-06-10 Alexander Kurtakov <akurtako@redhat.com>
* buildSource.sh: Fix builder and feature path.
2009-06-09 Andrew Overholt <overholt@redhat.com>
* buildSource.sh: Generate tarballs for builder and feature.
2009-06-09 Andrew Overholt <overholt@redhat.com>
* patches/cleanupMaster.patch: Remove.
* build.xml: Set eclipse.pdebuild.scripts property. Use
"eclipse-build-feature" feature and builder. Use a fake home directory
for the builds. Change buildID to buildId everywhere. Remove unnecessary
cleanupMaster patch. Pass property file to antRunner calls. Build with
antRunner and not plain ant. Temporarily make assemble not depend upon
compilelibs (for testing).
* build.properties: Change buildID to buildId. Remove parallel compilation
and flattenDependencies for now. Don't generate API descriptions.
Fully-expand bootclasspath (need to be more generic here). Add
OSGi/Minimum-1.2 BREE. Full expand BREEs for use with antRunner (somehow
it doesn't expand in-file properties).
2009-06-02 Andrew Overholt <overholt@redhat.com>
* build.xml: Make bootstrap stuff default but allow over-riding. Add
init target to do extraction of buildSource.sh-generated tarball. Move
insertBuildId and applyPatches targets here. Add package target for
debugging use. Add full paths everywhere.
* generatebuild.xml: Use a fetched feature instead of generating one.
Pass buildDirectory property.
* patches/cleanupMaster.patch: Initial checkin. Don't include some SWT
fragments.
* build.properties: Don't hard-code plugin or feature ID. Set other
BREEs. Update buildDirectory to reflect buildSource.sh output.
* patches/eclipse-swt-buildagainstxulrunner.patch: Update to use unstable
XULRunner headers (dom/ files).
* assemble.xml: Call assemble and package files for feature we're building.
2009-05-26 Andrew Overholt <overholt@redhat.com>
* buildSource.sh: Name tarballs and contained directories better.
2009-05-26 Andrew Overholt <overholt@redhat.com>
* patches/eclipse-addFetchMasterAndTestsTargets.patch: Initial commit.
Adds targets to org.eclipse.releng.eclipsebuilder/buildAll.xml
* buildSource.sh: Cleanups. Fetch both the master feature and the SDK
tests feature. Build .tar.bz2 files for both fetches.
2009-05-25 Andrew Overholt <overholt@redhat.com>
* buildSource.sh: Simple testing script to follow upstream procedures. *Very*
preliminary.
2009-05-20 Alexander Kurtakov <akurtako@redhat.com>
* build.properties: Newer I-build.
2009-05-15 Andrew Overholt <overholt@redhat.com>
* README.mediawiki: Fix some typos.
* ABOUT.mediawiki: Some cleanups. Make lines < 80 characters.
* build.sh: Fix typo.
2009-05-14 Alexander Kurtakov <akurtako@redhat.com>
* build.properties: Next I-build.
* build.sh: Delete ecj.jar before copying.
2009-05-13 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Remove pdebuildClasspath - not needed anymore.
2009-05-13 Alexander Kurtakov <akurtako@redhat.com>
* build.sh: New file.
* build.properties: New I-build. Add properties needed to build with ecj.
2009-05-12 Alexander Kurtakov <akurtako@redhat.com>
* productize.xml: Removed. Left over from before enabling p2.gathering.
* build.properties: New I-build.
2009-05-11 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Simplify ant call for devBuilds. Patch by Marvin Schmidt.
2009-05-11 Alexander Kurtakov <akurtako@redhat.com>
* assemble.xml: Simplify.
* bootstrap/configuration/config.ini: Add o.e.pde.api.tools.
* build.properties: generateAPIDescription=true
* pdebuild.xml: Add o.e.pde.api.tools.
2009-05-11 Alexander Kurtakov <akurtako@redhat.com>
* assemble.xml: Use properties from the properties file.
* build.properties: Extract some properties here and switch to neweer build.
2009-05-06 Alexander Kurtakov <akurtako@redhat.com>
* assemble.xml: Changes to make the build finish with p2.gathering=true.
* bootstrap/configuration/config.ini: Likewise.
* build.properties: Likewise.
* build.xml: Likewise.
* pdebuild.xml: Likewise.
2009-04-29 Alexander Kurtakov <akurtako@redhat.com>
Make p2.gathering=true by default.
* assemble-p2.xml: Removed.
* build-p2.xml: Removed.
* generatebuild-p2.xml: Removed.
* p2.properties: Removed.
* assemble.xml: New file.
* productize.xml: New file.
* bootstrap/configuration/config.ini: Latest p2 test.
* build.properties: Likewise.
* build.xml: Likewise.
* pdebuild.xml: Likewise.
2009-04-22 Alexander Kurtakov <akurtako@redhat.com>
Apply patch from #272820 and update to newer I-build.
* build-p2.xml: Remove unneede parts.
* build.properties: Externalize sdkSource.
* build.xml: Remove unneeded parts.
* fetch.xml: Move distSrc here and modify it to create a patche sources tar.bz2.
* pdebuild.xml: Remove unneeded parts.
2009-04-18 Alexander Kurtakov <akurtako@redhat.com>
* assemble-p2.xml: New file.
* build-p2.xml: Sync with main build.
* generatebuild-p2.xml: Likewise.
* build.properties: Externalise some properties here.
* build.xml: Fix buildArch usage and remove not needed props.
* fetch.xml: Fix buildId in the sources.
* p2.properties: Keep only p2 specific properties.
2009-04-16 Alexander Kurtakov <akurtako@redhat.com>
* build.properties: Switch to latest I-build.
2009-04-14 Alexander Kurtakov <akurtako@redhat.com>
* build.properties: Switch to latest I-build.
2009-04-09 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Add distSrc target.
2009-04-09 Alexander Kurtakov <akurtako@redhat.com>
* patches/eclipse-swt-buildagainstxulrunner.patch: New file.
* build.xml: Compile native parts.
* fetch.xml: Apply one more patch.
2009-04-09 Alexander Kurtakov <akurtako@redhat.com>
Switch docs to mediawiki format.
* .settings: New file.
* ABOUT.mediawiki: New file.
* README.mediawiki: New file.
* TODO.mediawiki: New file.
* ABOUT: Removed.
* README: Removed.
* TODO: Removed.
* build.xml: Manually insert ecf bundles in the resulting zip.
2009-04-08 Alexander Kurtakov <akurtako@redhat.com>
Apply modified patch from #271657 and add a playground for p2 based build.
* build-p2.xml: New file.
* generatebuild-p2.xml: New file.
* p2.properties: New file.
* build.xml: Make sdkSource property configurable.
* fetch.xml: Likewise.
* pdebuild.xml: Likewise.
2009-04-08 Alexander Kurtakov <akurtako@redhat.com>
* fetch.xml: Fix icu.source to be fetched only once. Add property to control fetch.
2009-04-08 Alexander Kurtakov <akurtako@redhat.com>
* build.properties: New I-build.
* build.xml: Invoke packake.* to finish build.
* fetch.xml: Fetch com.ibm.icu.source bundle due to problem in srcIncluded.
2009-04-02 Alexander Kurtakov <akurtako@redhat.com>
* bootstrap/configuration/config.ini: Fix director run.
* build.properties: Switch to latest I-build.
* pdebuild.xml: Fix director run.
2009-04-01 Alexander Kurtakov <akurtako@redhat.com>
* bootstrap/configuration/config.ini: Add new p2.repository to the classpath.
* build.properties: Switch to new I-build.
* patches/eclipse-buildswtnatives.patch: Update patch.
* pdebuild.xml: Add new p2.repository to the classpath.
2009-03-31 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Move apply-patches to fetch.xml.
* fetch.xml: Likewise.
2009-03-27 Alexander Kurtakov <akurtako@redhat.com>
* build.properties: Put buildID here.
* fetch.xml: Move buildId to build.properties.
2009-03-27 Alexander Kurtakov <akurtako@redhat.com>
Use symlinks to ease switching to new builds. Thanks to Marvin Schmidt.
* bootstrap/configuration/config.ini: Use symlink instead of versioned dir.
* build.xml: Likewise. Add cleanAll target.
* fetch.xml: Add clean target.
* pdebuild.xml: Enhance clean target. Create symlinks for o.e.osgi and o.e.equinox.launcher.
2009-03-26 Alexander Kurtakov <akurtako@redhat.com>
* build.properties: Define javacSource and javacTarget here.
* build.xml: Build hack again.
* fetch.xml: New I-build.
2009-03-25 Alexander Kurtakov <akurtako@redhat.com>
* prepare_elements.sh: Removed.
* generatebuild.xml: Preparing elements done in ant instead of sh. Patch by Marvin Schmidt.
2009-03-25 Alexander Kurtakov <akurtako@redhat.com>
* pdebuild.xml: New file.
* bootstrap/configuration/config.ini: Adapt to latest I-build.
* build.properties: Add buildArch.
* build.xml: Pde-build bootstrap in new file.
* fetch.xml: Adapt to latest I-build.
* generatebuild.xml: Format.
2009-03-22 Alexander Kurtakov <akurtako@redhat.com>
* bootstrap/configuration/config.ini: Adapt to pdebuild changes.
* build.properties: Flatten dependencies.
* build.xml: Simplify build step.
* fetch.xml: Simplify srcBuild definition.
2009-03-03 Alexander Kurtakov <akurtako@redhat.com>
* fetch.xml: Remove so files after unzipping.
2009-02-24 Alexander Kurtakov <akurtako@redhat.com>
* patches/eclipse-buildswtnatives.patch: New file.
* build.xml: Add patch for building swt native parts.
2009-02-23 Alexander Kurtakov <akurtako@redhat.com>
* generatebuild.xml: Allow passing buildArch as a parameter.
* README: Add info about the -DbuildArch parameter needed.
* build.properties: Remove buildArch it needs to be passed as a parameter.
* build.xml: Allow passing buildArch as a parameter.
2009-02-20 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Invoke jarIn by default.
2009-02-20 Alexander Kurtakov <akurtako@redhat.com>
* fetch-sources.sh: Removed.
* build.xml: Set archivePrefix.
* README: Remove not needed step for running fetch-sources.
2009-02-20 Alexander Kurtakov <akurtako@redhat.com>
* bootstrap/configuration/config.ini: Add o.e.equinox.launcher to the osgi.bundles.
* test.properties: Removed.
* build.properties: New file. Renamed from test.properties.
* build.xml: Build with arch set and start of jaring task.
* generatebuild.xml: Generate only for the specified arch.
2009-02-11 Alexander Kurtakov <akurtako@redhat.com>
* build.xml: Ugly hack to fix build with 3.5 M5.
2009-02-04 Alexander Kurtakov <akurtako@redhat.com>
* bootstrap/configuration/config.ini: Update to 3.5 M5.
* build.xml: Likewise.
* fetch.xml: Likewise.
2009-01-06 Alexander Kurtakov <akurtakov@gmail.com>
* build.xml: Hook in fetch.xml to download the needed zips directly from ant.
* fetch.xml: Rename fileName to not conflict with build.xml.
2009-01-05 Alexander Kurtakov <akurtakov@gmail.com>
* fetch.xml: Rewrite fetching as ant task to be able to embed it in the main build.xml.
2008-12-18 Alexander Kurtakov <akurtakov@gmail.com>
* build.xml: org.eclipse.update.core is not needed for bootstraping.
2008-12-17 Alexander Kurtakov <akurtakov@gmail.com>
* build.xml: Simplify delete.
* generatebuild.xml: Build scripts should be regenerated with recursive call and only for linux, gtk.
2008-12-17 Alexander Kurtakov <akurtakov@gmail.com>
* bootstrap/configuration/config.ini: Fix osgi bundles.
* build.xml: Correctly ignore source bundles when coping.
* prepare_elements.sh: Ignore the correct jetty.
2008-12-17 Alexander Kurtakov <akurtakov@gmail.com>
* bootstrap/configuration/config.ini: Update with 3.5M4 needed plugins.
* build.xml: fix bootstrap plugins for 3.5M4. Fix launcher path. Include ecf to orbitDeps.
* fetch-sources.sh: Jump to 3.5M4.
* ABOUT: New file.
* TODO: Add some overall plan.
2008-12-15 Alexander Kurtakov <akurtakov@gmail.com>
* build.xml: Set ws and os properties to build only linux-gtk. Set arch too.
2008-12-12 Alexander Kurtakov <akurtakov@gmail.com>
* build.xml: Build sdk feature not rcp.
* generatebuild.xml: Add some echo.
2008-12-11 Alexander Kurtakov <akurtakov@gmail.com>
* TODO: More tod entries.
2008-12-11 Alexander Kurtakov <akurtakov@gmail.com>
* build.xml: Enable buildAll invocation by default now that it is working.
* README: Update to the current state.
* TODO: Fix todo entries.
2008-12-09 Alexander Kurtakov <akurtakov@gmail.com>
* README: Update to the current state.
2008-12-08 Alexander Kurtakov <akurtakov@gmail.com>
* build.xml: Don't copy source features, generate them. Add temp task for clean.
* generatebuild.xml: Generate source features.
* test.properties: Remove not needed properties.
2008-12-03 Alexander Kurtakov <akurtakov@gmail.com>
* TODO: Add todo about equinox.http.jetty bundle name.
* build.xml: Switch default task to one step further generateBuildScripts.
* prepare_elements.sh: Skip equinox.http.jetty bundle.
* test.properties: Add properties needed for compilation.
2008-11-26 Alexander Kurtakov <akurtakov@gmail.com>
* TODO: Update todo items.
* prepare_elements.sh: New file.
* build.xml: Copy all plugins to be build, rename wherever needed.
* generatebuild.xml: Regenerate build.xml files for all the plugins.
2008-11-20 Alexander Kurtakov <akurtakov@gmail.com>
* pdebuild.xml: Renamed to build.xml.
* build.xml: New file.
* README: Update with the latest locations and info.
* TODO: Remove the sample build.xml generation which is done.
2008-11-20 Alexander Kurtakov <akurtakov@gmail.com>
* pdebuild.xml: Fix plugin order in depsDir. Make collectBootstrapPlugins depend on zipPlugins.
2008-11-19 Andrew Overholt <overholt@redhat.com>
* test.properties: New file.
* bootstrap/configuration/config.ini: Add com.ibm.icu, org.apache.ant,
org.eclipse.update.configurator and org.junit to osgi.bundles. Could perhaps be
trimmed.
* generatebuild.xml: Refactor a bit. Generate a feature before generating plugin
build.xml files.
* pdebuild.xml: Organize and clean up depsDirs. Add Orbit deps like JUnit and
ICU4J. Build in a 'build' directory and clean it beforehand.
2008-11-19 Andrew Overholt <overholt@redhat.com>
* bootstrap/configuration/config.ini: Remove runtime.compatibility.registry. Remove ignoreApp.
* generatebuild.xml: Remove osgi from bundles list.
2008-11-19 Andrew Overholt <overholt@redhat.com>
* generatebuild.xml: Fix path to include bootstrap/plugins.
* pdebuild.xml: Move things to SDK directory.
* fetch-sources.sh: Likewise.
* bootstrap: New directory.
* bootstrap/configuration/config.ini: Fix up osgi.bundles and set osgi.install.area.
* eclipse.ini: Remove for now (we don't need it).
|