From b18add6e1ca17aba2a5ee987c6ee14fa4f5db1a0 Mon Sep 17 00:00:00 2001 From: Robert Schuster Date: Tue, 23 Sep 2008 05:07:15 +0000 Subject: Part 1 of the ecj rework ecj-boottrap: Removed all recipes. ecj-initial: Removed all recipes. --- packages/ecj/ecj-bootstrap-native_3.3.2.bb | 38 -------------- packages/ecj/ecj-bootstrap-native_3.3.bb | 38 -------------- packages/ecj/ecj-bootstrap-native_3.4.bb | 38 -------------- packages/ecj/ecj-initial_3.3.2.bb | 84 ------------------------------ packages/ecj/ecj-initial_3.3.bb | 84 ------------------------------ packages/ecj/ecj-initial_3.4.bb | 84 ------------------------------ 6 files changed, 366 deletions(-) delete mode 100644 packages/ecj/ecj-bootstrap-native_3.3.2.bb delete mode 100644 packages/ecj/ecj-bootstrap-native_3.3.bb delete mode 100644 packages/ecj/ecj-bootstrap-native_3.4.bb delete mode 100644 packages/ecj/ecj-initial_3.3.2.bb delete mode 100644 packages/ecj/ecj-initial_3.3.bb delete mode 100644 packages/ecj/ecj-initial_3.4.bb (limited to 'packages/ecj') diff --git a/packages/ecj/ecj-bootstrap-native_3.3.2.bb b/packages/ecj/ecj-bootstrap-native_3.3.2.bb deleted file mode 100644 index bd4347457c..0000000000 --- a/packages/ecj/ecj-bootstrap-native_3.3.2.bb +++ /dev/null @@ -1,38 +0,0 @@ -# ECJ as a bootstrap compiler is a drop-in replacement for Sun's javac. It offers no more -# and no less features. -# -# Since the VM running the compiler has no effect on the produced bytecode this recipe -# uses the jar created by ecj-initial and creates a start script that runs it with a different -# VM. - -DESCRIPTION = "JDT Core Batch Compiler - Bootstrap variant" -HOMEPAGE = "http://www.eclipse.org/" -SECTION = "devel" -PRIORITY = "optional" -LICENSE = "EPL" - -DEPENDS = "ecj-initial virtual/java-native" - -PROVIDES = "virtual/javac-native" - -SRC_URI = "file://ecj.in" - -S = "${WORKDIR}" - -JAR = "ecj-bootstrap-${PV}.jar" - -inherit native - -do_compile() { - # Create the start script - echo "#!/bin/sh" > ecj-bootstrap - echo "ECJ_JAR=${STAGING_DATADIR}/java/${JAR}" >> ecj-bootstrap - echo "RUNTIME=java" >> ecj-bootstrap - cat ecj.in >> ecj-bootstrap -} - -do_stage() { - install -d ${STAGING_BINDIR} - install -m 755 ${S}/ecj-bootstrap ${STAGING_BINDIR} - install -m 755 ${S}/ecj-bootstrap ${STAGING_BINDIR}/javac -} diff --git a/packages/ecj/ecj-bootstrap-native_3.3.bb b/packages/ecj/ecj-bootstrap-native_3.3.bb deleted file mode 100644 index bd4347457c..0000000000 --- a/packages/ecj/ecj-bootstrap-native_3.3.bb +++ /dev/null @@ -1,38 +0,0 @@ -# ECJ as a bootstrap compiler is a drop-in replacement for Sun's javac. It offers no more -# and no less features. -# -# Since the VM running the compiler has no effect on the produced bytecode this recipe -# uses the jar created by ecj-initial and creates a start script that runs it with a different -# VM. - -DESCRIPTION = "JDT Core Batch Compiler - Bootstrap variant" -HOMEPAGE = "http://www.eclipse.org/" -SECTION = "devel" -PRIORITY = "optional" -LICENSE = "EPL" - -DEPENDS = "ecj-initial virtual/java-native" - -PROVIDES = "virtual/javac-native" - -SRC_URI = "file://ecj.in" - -S = "${WORKDIR}" - -JAR = "ecj-bootstrap-${PV}.jar" - -inherit native - -do_compile() { - # Create the start script - echo "#!/bin/sh" > ecj-bootstrap - echo "ECJ_JAR=${STAGING_DATADIR}/java/${JAR}" >> ecj-bootstrap - echo "RUNTIME=java" >> ecj-bootstrap - cat ecj.in >> ecj-bootstrap -} - -do_stage() { - install -d ${STAGING_BINDIR} - install -m 755 ${S}/ecj-bootstrap ${STAGING_BINDIR} - install -m 755 ${S}/ecj-bootstrap ${STAGING_BINDIR}/javac -} diff --git a/packages/ecj/ecj-bootstrap-native_3.4.bb b/packages/ecj/ecj-bootstrap-native_3.4.bb deleted file mode 100644 index bd4347457c..0000000000 --- a/packages/ecj/ecj-bootstrap-native_3.4.bb +++ /dev/null @@ -1,38 +0,0 @@ -# ECJ as a bootstrap compiler is a drop-in replacement for Sun's javac. It offers no more -# and no less features. -# -# Since the VM running the compiler has no effect on the produced bytecode this recipe -# uses the jar created by ecj-initial and creates a start script that runs it with a different -# VM. - -DESCRIPTION = "JDT Core Batch Compiler - Bootstrap variant" -HOMEPAGE = "http://www.eclipse.org/" -SECTION = "devel" -PRIORITY = "optional" -LICENSE = "EPL" - -DEPENDS = "ecj-initial virtual/java-native" - -PROVIDES = "virtual/javac-native" - -SRC_URI = "file://ecj.in" - -S = "${WORKDIR}" - -JAR = "ecj-bootstrap-${PV}.jar" - -inherit native - -do_compile() { - # Create the start script - echo "#!/bin/sh" > ecj-bootstrap - echo "ECJ_JAR=${STAGING_DATADIR}/java/${JAR}" >> ecj-bootstrap - echo "RUNTIME=java" >> ecj-bootstrap - cat ecj.in >> ecj-bootstrap -} - -do_stage() { - install -d ${STAGING_BINDIR} - install -m 755 ${S}/ecj-bootstrap ${STAGING_BINDIR} - install -m 755 ${S}/ecj-bootstrap ${STAGING_BINDIR}/javac -} diff --git a/packages/ecj/ecj-initial_3.3.2.bb b/packages/ecj/ecj-initial_3.3.2.bb deleted file mode 100644 index 60bbc5546c..0000000000 --- a/packages/ecj/ecj-initial_3.3.2.bb +++ /dev/null @@ -1,84 +0,0 @@ -# ECJ as a bootstrap compiler is a drop-in replacement for Sun's javac. It offers no more -# and no less features. - -# This variant runs on the initial (not Java5-compatible runtime). - -DESCRIPTION = "JDT Core Batch Compiler - Bootstrap variant" -HOMEPAGE = "http://www.eclipse.org/" -LICENSE = "EPL" - -DEPENDS = "fastjar-native unzip-native jikes-initial virtual/java-initial" - -SRC_URI = "\ - http://mirrors.ibiblio.org/pub/mirrors/eclipse/eclipse/downloads/drops/R-3.3.2-200802211800/ecjsrc.zip \ - file://ecj.in \ - " - -S = "${WORKDIR}" - -inherit native - -JAR = "ecj-bootstrap-${PV}.jar" - -do_unpackpost() { - if [ ! -d source ]; then - mkdir source - fi - - if [ ! -d build ]; then - mkdir build - fi - - # Remove crap. - rm about.html build.xml - rm -rf META-INF - - # Move source into separate subdir. - mv org source/ - - # Remove stuff unneeded for the bootstrap compiler. - rm -rf source/org/eclipse/jdt/internal/compiler/apt - rm -rf source/org/eclipse/jdt/internal/compiler/tool - rm -rf source/org/eclipse/jdt/internal/antadapter - rm source/org/eclipse/jdt/core/JDTCompilerAdapter.java - - # Make a copy of the remaining source to get the embedded - # resources. - cp -r source/org build/ - - # Remove source code and other stuff. - find build -name '*.java' -exec rm -f {} \; - find build -name '*.html' -exec rm -f {} \; -} - -addtask unpackpost after do_unpack before do_patch - -do_compile() { - find source -name '*.java' > sourcefiles - split -l 25 sourcefiles ecj-sources. - - # Compiling in place is done because the sources contain - # property files which need to be available at runtime. - for list in `find . -name 'ecj-sources.*'`; do - echo "building files in $list ..."; - echo jikes-initial -d build -source 1.4 -sourcepath source `cat $list`; - jikes-initial \ - -d build -source 1.4 -sourcepath source `cat $list`; - done - - fastjar -c -C build . -f ${JAR} - - # Create the start script - echo "#!/bin/sh" > ecj-initial - echo "ECJ_JAR=${STAGING_DATADIR}/java/${JAR}" >> ecj-initial - echo "RUNTIME=java-initial" >> ecj-initial - cat ecj.in >> ecj-initial -} - -do_stage() { - install -d ${STAGING_DATADIR}/java - install -m 755 ${S}/${JAR} ${STAGING_DATADIR}/java - - install -d ${STAGING_BINDIR} - install -m 755 ${S}/ecj-initial ${STAGING_BINDIR} -} diff --git a/packages/ecj/ecj-initial_3.3.bb b/packages/ecj/ecj-initial_3.3.bb deleted file mode 100644 index 884d98f30b..0000000000 --- a/packages/ecj/ecj-initial_3.3.bb +++ /dev/null @@ -1,84 +0,0 @@ -# ECJ as a bootstrap compiler is a drop-in replacement for Sun's javac. It offers no more -# and no less features. - -# This variant runs on the initial (not Java5-compatible runtime). - -DESCRIPTION = "JDT Core Batch Compiler - Bootstrap variant" -HOMEPAGE = "http://www.eclipse.org/" -LICENSE = "EPL" - -DEPENDS = "fastjar-native unzip-native jikes-initial virtual/java-initial" - -SRC_URI = "\ - http://mirrors.ibiblio.org/pub/mirrors/eclipse/eclipse/downloads/drops/R-3.3-200706251500/ecjsrc.zip \ - file://ecj.in \ - " - -S = "${WORKDIR}" - -inherit native - -JAR = "ecj-bootstrap-${PV}.jar" - -do_unpackpost() { - if [ ! -d source ]; then - mkdir source - fi - - if [ ! -d build ]; then - mkdir build - fi - - # Remove crap. - rm about.html build.xml - rm -rf META-INF - - # Move source into separate subdir. - mv org source/ - - # Remove stuff unneeded for the bootstrap compiler. - rm -rf source/org/eclipse/jdt/internal/compiler/apt - rm -rf source/org/eclipse/jdt/internal/compiler/tool - rm -rf source/org/eclipse/jdt/internal/antadapter - rm source/org/eclipse/jdt/core/JDTCompilerAdapter.java - - # Make a copy of the remaining source to get the embedded - # resources. - cp -r source/org build/ - - # Remove source code and other stuff. - find build -name '*.java' -exec rm -f {} \; - find build -name '*.html' -exec rm -f {} \; -} - -addtask unpackpost after do_unpack before do_patch - -do_compile() { - find source -name '*.java' > sourcefiles - split -l 25 sourcefiles ecj-sources. - - # Compiling in place is done because the sources contain - # property files which need to be available at runtime. - for list in `find . -name 'ecj-sources.*'`; do - echo "building files in $list ..."; - echo jikes-initial -d build -source 1.4 -sourcepath source `cat $list`; - jikes-initial \ - -d build -source 1.4 -sourcepath source `cat $list`; - done - - fastjar -c -C build . -f ${JAR} - - # Create the start script - echo "#!/bin/sh" > ecj-initial - echo "ECJ_JAR=${STAGING_DATADIR}/java/${JAR}" >> ecj-initial - echo "RUNTIME=java-initial" >> ecj-initial - cat ecj.in >> ecj-initial -} - -do_stage() { - install -d ${STAGING_DATADIR}/java - install -m 755 ${S}/${JAR} ${STAGING_DATADIR}/java - - install -d ${STAGING_BINDIR} - install -m 755 ${S}/ecj-initial ${STAGING_BINDIR} -} diff --git a/packages/ecj/ecj-initial_3.4.bb b/packages/ecj/ecj-initial_3.4.bb deleted file mode 100644 index dcc08139c1..0000000000 --- a/packages/ecj/ecj-initial_3.4.bb +++ /dev/null @@ -1,84 +0,0 @@ -# ECJ as a bootstrap compiler is a drop-in replacement for Sun's javac. It offers no more -# and no less features. - -# This variant runs on the initial (not Java5-compatible runtime). - -DESCRIPTION = "JDT Core Batch Compiler - Bootstrap variant" -HOMEPAGE = "http://www.eclipse.org/" -LICENSE = "EPL" - -DEPENDS = "fastjar-native unzip-native jikes-initial virtual/java-initial" - -SRC_URI = "\ - http://mirrors.ibiblio.org/pub/mirrors/eclipse/eclipse/downloads/drops/R-3.4-200806172000/ecjsrc.zip \ - file://ecj.in \ - " - -S = "${WORKDIR}" - -inherit native - -JAR = "ecj-bootstrap-${PV}.jar" - -do_unpackpost() { - if [ ! -d source ]; then - mkdir source - fi - - if [ ! -d build ]; then - mkdir build - fi - - # Remove crap. - rm about.html build.xml - rm -rf META-INF - - # Move source into separate subdir. - mv org source/ - - # Remove stuff unneeded for the bootstrap compiler. - rm -rf source/org/eclipse/jdt/internal/compiler/apt - rm -rf source/org/eclipse/jdt/internal/compiler/tool - rm -rf source/org/eclipse/jdt/internal/antadapter - rm source/org/eclipse/jdt/core/JDTCompilerAdapter.java - - # Make a copy of the remaining source to get the embedded - # resources. - cp -r source/org build/ - - # Remove source code and other stuff. - find build -name '*.java' -exec rm -f {} \; - find build -name '*.html' -exec rm -f {} \; -} - -addtask unpackpost after do_unpack before do_patch - -do_compile() { - find source -name '*.java' > sourcefiles - split -l 25 sourcefiles ecj-sources. - - # Compiling in place is done because the sources contain - # property files which need to be available at runtime. - for list in `find . -name 'ecj-sources.*'`; do - echo "building files in $list ..."; - echo jikes-initial -d build -source 1.4 -sourcepath source `cat $list`; - jikes-initial \ - -d build -source 1.4 -sourcepath source `cat $list`; - done - - fastjar -c -C build . -f ${JAR} - - # Create the start script - echo "#!/bin/sh" > ecj-initial - echo "ECJ_JAR=${STAGING_DATADIR}/java/${JAR}" >> ecj-initial - echo "RUNTIME=java-initial" >> ecj-initial - cat ecj.in >> ecj-initial -} - -do_stage() { - install -d ${STAGING_DATADIR}/java - install -m 755 ${S}/${JAR} ${STAGING_DATADIR}/java - - install -d ${STAGING_BINDIR} - install -m 755 ${S}/ecj-initial ${STAGING_BINDIR} -} -- cgit v1.2.3