From 31ee2f8af0b15accb12039b19abc77f6abd65458 Mon Sep 17 00:00:00 2001 From: alexkasko Date: Mon, 7 Oct 2013 17:23:55 +0400 Subject: [PATCH] jdk6b28 builds --- build-linux-amd64.sh | 19 +- build-linux-i586.sh | 19 +- build-macosx-x86_64.sh | 28 -- build-windows-amd64.bat | 64 +--- build-windows-i586.bat | 68 ++-- host/cleanhg.sh | 2 + host/jdk6-linux-amd64.env | 4 +- host/jdk6-windows-amd64.env | 2 +- host/jdk7-linux-amd64.env | 2 +- installer/build-image.sh | 38 +- installer/build-installer.sh | 2 +- .../linux-amd64/default-install-dir-linux.txt | 2 +- installer/linux-amd64/izpack.xml | 4 +- .../linux-i586/default-install-dir-linux.txt | 2 +- installer/linux-i586/izpack.xml | 4 +- installer/macosx-x86_64/.DS_Store | Bin 6148 -> 0 bytes installer/macosx-x86_64/customicons.xml | 4 - .../default-install-dir-macosx.txt | 1 - installer/macosx-x86_64/duke.png | Bin 1559 -> 0 bytes installer/macosx-x86_64/install | Bin 15880 -> 0 bytes installer/macosx-x86_64/install.png | Bin 13496 -> 0 bytes installer/macosx-x86_64/install_bundle.sh | 7 - installer/macosx-x86_64/izpack.xml | 69 ---- installer/macosx-x86_64/license.txt | 347 ------------------ .../uninstall/tools/append_bash_profile.sh | 10 - .../uninstall/tools/clear_bash_profile.sh | 7 - installer/macosx-x86_64/uninstall/uninstall | Bin 15880 -> 0 bytes .../windows-amd64/default-install-dir-win.txt | 2 +- installer/windows-amd64/izpack.xml | 18 +- .../windows-i586/default-install-dir-win.txt | 2 +- installer/windows-i586/izpack.xml | 20 +- make-and-bundle.sh | 3 - 32 files changed, 110 insertions(+), 640 deletions(-) delete mode 100755 build-macosx-x86_64.sh create mode 100755 host/cleanhg.sh delete mode 100644 installer/macosx-x86_64/.DS_Store delete mode 100644 installer/macosx-x86_64/customicons.xml delete mode 100644 installer/macosx-x86_64/default-install-dir-macosx.txt delete mode 100644 installer/macosx-x86_64/duke.png delete mode 100755 installer/macosx-x86_64/install delete mode 100644 installer/macosx-x86_64/install.png delete mode 100755 installer/macosx-x86_64/install_bundle.sh delete mode 100644 installer/macosx-x86_64/izpack.xml delete mode 100755 installer/macosx-x86_64/license.txt delete mode 100644 installer/macosx-x86_64/uninstall/tools/append_bash_profile.sh delete mode 100644 installer/macosx-x86_64/uninstall/tools/clear_bash_profile.sh delete mode 100755 installer/macosx-x86_64/uninstall/uninstall diff --git a/build-linux-amd64.sh b/build-linux-amd64.sh index 2e4929b..07f7b88 100755 --- a/build-linux-amd64.sh +++ b/build-linux-amd64.sh @@ -9,21 +9,14 @@ export LANG=C export ANT_HOME="$OUB_DIR"/utils/ant export PATH=$ANT_HOME/bin:$PATH export ALT_CACERTS_FILE="$OUB_DIR"/libs/cacerts/cacerts -export ALT_BOOTDIR=/home/obf/jdk7 +export ALT_BOOTDIR=/usr/lib/jvm/java-6-openjdk export ALLOW_DOWNLOADS=false -export MILESTONE=u40-unofficial -export BUILD_NUMBER=b60 -export STATIC_CXX=true -export UNLIMITED_CRYPTO=true -export FULL_DEBUG_SYMBOLS=0 -export RHINO_JAR="$OUB_DIR"/libs/rhino/rhino-jdk7.jar -export FT2_LIBS=-lfreetype -export FT2_CFLAGS='-I$(FREETYPE_HEADERS_PATH) -I$(FREETYPE_HEADERS_PATH)/freetype2' -export DISABLE_INTREE_EC=true +export MILESTONE=unofficial +export BUILD_NUMBER=b28 -"$OUB_DIR"/make-and-bundle.sh -i +"$OUB_DIR"/make-and-bundle.sh -export FULL_DEBUG_SYMBOLS=1 export DEBUG_CLASSFILES=true +export ALT_OUTPUTDIR="$OUB_DIR"/../openjdk/build.debug/linux-amd64/ -"$OUB_DIR"/make-and-bundle.sh -i -d -f +"$OUB_DIR"/make-and-bundle.sh -d -f diff --git a/build-linux-i586.sh b/build-linux-i586.sh index 2e4929b..ac11574 100755 --- a/build-linux-i586.sh +++ b/build-linux-i586.sh @@ -9,21 +9,14 @@ export LANG=C export ANT_HOME="$OUB_DIR"/utils/ant export PATH=$ANT_HOME/bin:$PATH export ALT_CACERTS_FILE="$OUB_DIR"/libs/cacerts/cacerts -export ALT_BOOTDIR=/home/obf/jdk7 +export ALT_BOOTDIR=/usr/lib/jvm/java-6-openjdk export ALLOW_DOWNLOADS=false -export MILESTONE=u40-unofficial -export BUILD_NUMBER=b60 -export STATIC_CXX=true -export UNLIMITED_CRYPTO=true -export FULL_DEBUG_SYMBOLS=0 -export RHINO_JAR="$OUB_DIR"/libs/rhino/rhino-jdk7.jar -export FT2_LIBS=-lfreetype -export FT2_CFLAGS='-I$(FREETYPE_HEADERS_PATH) -I$(FREETYPE_HEADERS_PATH)/freetype2' -export DISABLE_INTREE_EC=true +export MILESTONE=unofficial +export BUILD_NUMBER=b28 -"$OUB_DIR"/make-and-bundle.sh -i +"$OUB_DIR"/make-and-bundle.sh -export FULL_DEBUG_SYMBOLS=1 export DEBUG_CLASSFILES=true +export ALT_OUTPUTDIR="$OUB_DIR"/../openjdk/build.debug/linux-i586/ -"$OUB_DIR"/make-and-bundle.sh -i -d -f +"$OUB_DIR"/make-and-bundle.sh -d -f diff --git a/build-macosx-x86_64.sh b/build-macosx-x86_64.sh deleted file mode 100755 index c81f4f4..0000000 --- a/build-macosx-x86_64.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -set -e -OUB_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" - -export LD_LIBRARY_PATH= -export CLASSPATH= -export JAVA_HOME= -export LANG=C -export ANT_HOME="$OUB_DIR"/utils/ant -export PATH=$ANT_HOME/bin:$PATH -export ALT_CACERTS_FILE="$OUB_DIR"/libs/cacerts/cacerts -export ALT_BOOTDIR=/Users/obf/jdk7 -export ALLOW_DOWNLOADS=false -export MILESTONE=u40-unofficial -export BUILD_NUMBER=b60 -#export STATIC_CXX=true -export UNLIMITED_CRYPTO=true -export FULL_DEBUG_SYMBOLS=0 -export RHINO_JAR="$OUB_DIR"/libs/rhino/rhino-jdk7.jar -export FT2_CFLAGS='-I$(FREETYPE_HEADERS_PATH) -I$(FREETYPE_HEADERS_PATH)/freetype2' -export DISABLE_INTREE_EC=true - -"$OUB_DIR"/make-and-bundle.sh -i - -export FULL_DEBUG_SYMBOLS=1 -export DEBUG_CLASSFILES=true - -"$OUB_DIR"/make-and-bundle.sh -i -d -f diff --git a/build-windows-amd64.bat b/build-windows-amd64.bat index 61803f5..072ad5c 100755 --- a/build-windows-amd64.bat +++ b/build-windows-amd64.bat @@ -10,66 +10,42 @@ set BAD_SLASH_SCRIPT_DIR=%~dp0 set SCRIPT_DIR=%BAD_SLASH_SCRIPT_DIR:\=/% set UTILS_DIR=%SCRIPT_DIR%utils set LIBS_DIR=%SCRIPT_DIR%libs -set VS=%UTILS_DIR%/winsdk71/vs2010e -set WINSDK=%UTILS_DIR%/winsdk71/sdk +set PSDK=c:/Program Files/Microsoft Platform SDK rem utils in path set MAKE_HOME=%UTILS_DIR%/make set PATH_PREPEND=%UTILS_DIR%/path_prepend set CYGWIN_HOME=%UTILS_DIR%/cygwin -set BOOTJDK_HOME=%SCRIPT_DIR%/../jdk7 +set BOOTJDK_HOME=%SCRIPT_DIR%/../jdk6 set ANT_HOME=%UTILS_DIR%/ant +rem path +set PATH=%PATH_PREPEND%;C:/WINDOWS/system32;C:/WINDOWS;C:/WINDOWS/System32/Wbem;%MAKE_HOME%;%CYGWIN_HOME%/bin;%BOOTJDK_HOME%/bin;%ANT_HOME%/bin + rem ALT_* varibles set ALT_BOOTDIR=%BOOTJDK_HOME% -set ALT_COMPILER_PATH=%VS%/VC/Bin/x86_amd64 -set ALT_WINDOWSSDKDIR=%WINSDK% -set ALT_FREETYPE_LIB_PATH=%LIBS_DIR%/freetype/dist/7_64 +set ALT_COMPILER_PATH=%PSDK%/Bin/win64/x86/AMD64 +set ALT_MSDEVTOOLS_PATH=%PSDK%/Bin +set ALT_FREETYPE_LIB_PATH=%LIBS_DIR%/freetype/dist/6_64 set ALT_FREETYPE_HEADERS_PATH=%LIBS_DIR%/freetype/include -set ALT_MSVCRNN_DLL_PATH=%LIBS_DIR%/msvcr/7_64 +set ALT_UNICOWS_LIB_PATH=%LIBS_DIR%/unicows +set ALT_UNICOWS_DLL_PATH=%LIBS_DIR%/unicows +set ALT_MSVCRT_DLL_PATH=%LIBS_DIR%/msvcr/6_64 set ALT_DXSDK_PATH=%LIBS_DIR%/directx set ALT_CACERTS_FILE=%LIBS_DIR%/cacerts/cacerts -rem set ALT_PARALLEL_COMPILE_JOBS=1 -rem set HOTSPOT_BUILD_JOBS=1 rem other openjdk variables -rem set ALLOW_DOWNLOADS=true +set ALLOW_DOWNLOADS=false rem set NO_DOCS=true rem other variables -set UNLIMITED_CRYPTO=true set CYGWIN=nodosfilewarning -set MILESTONE=u40-unofficial -set BUILD_NUMBER=b60 - -rem icedtea specific -set USE_SYSTEM_GCONF=true -set USE_SYSTEM_GIO=true -set RHINO_JAR=%LIBS_DIR%/rhino/rhino-jdk7.jar -set FT2_CFLAGS=-I$(FREETYPE_HEADERS_PATH) -I$(FREETYPE_HEADERS_PATH)/freetype2 -set DISABLE_INTREE_EC=true - -rem debug settings -set FULL_DEBUG_SYMBOLS=0 +set MILESTONE=unofficial +set BUILD_NUMBER=b28 +set STATIC_CXX=true -rem set compiler environment manually -set WINDOWSSDKDIR=%WINSDK% -set VS100COMNTOOLS=%VS%/Common7/Tools -set Configuration=Release -set WindowsSDKVersionOverride=v7.1 -set ToolsVersion=4.0 -set TARGET_CPU=x64 -set CURRENT_CPU=x64 -set PlatformToolset=Windows7.1SDK -set TARGET_PLATFORM=XP -rem set PROCESSOR_ARCHITECTURE=x86 -rem set PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH -rem set APPVER=5.01 -rem set CommandPromptType=Native -set LIB=%VS%/VC/Lib/amd64;%WINSDK%/Lib/x64 -set LIBPATH=%VS%/VC/Lib/amd64 -set PATH=%PATH_PREPEND%;%VS%/Common7/IDE;%VS%/Common7/Tools;%VS%/VC/Bin/x86_amd64;%VS%/VC/Bin;%VS%/VC/Bin/VCPackages;%WINSDK%/Bin;C:/WINDOWS/System32;C:/WINDOWS;C:/WINDOWS/System32/wbem;%MAKE_HOME%;%CYGWIN_HOME%/bin;%BOOTJDK_HOME%/bin;%ANT_HOME%/bin;%LIBS_DIR%/msvcr/7_64;%LIBS_DIR%/msvcr/7_32;%VS%/Common7/IDE -set INCLUDE=%VS%/VC/INCLUDE;%WINSDK%/INCLUDE;%WINSDK%/INCLUDE/gl; +rem set compiler environment +call "%PSDK%"/SetEnv.cmd /X64 /RETAIL rem uncomment next lines for manual builds rem echo OpenJDK build environment is ready @@ -80,10 +56,10 @@ rem echo Press any key to close window ... rem pause > nul rem start obf build -bash %SCRIPT_DIR%/make-and-bundle.sh -i +bash %SCRIPT_DIR%/make-and-bundle.sh rem debug build settings -set FULL_DEBUG_SYMBOLS=1 set DEBUG_CLASSFILES=true +set ALT_OUTPUTDIR=%SCRIPT_DIR%/../openjdk/build.debug/windows-amd64/ -bash %SCRIPT_DIR%/make-and-bundle.sh -i -d -f +bash %SCRIPT_DIR%/make-and-bundle.sh -d -f diff --git a/build-windows-i586.bat b/build-windows-i586.bat index 24ea5f6..c81bdcb 100755 --- a/build-windows-i586.bat +++ b/build-windows-i586.bat @@ -10,80 +10,58 @@ set BAD_SLASH_SCRIPT_DIR=%~dp0 set SCRIPT_DIR=%BAD_SLASH_SCRIPT_DIR:\=/% set UTILS_DIR=%SCRIPT_DIR%utils set LIBS_DIR=%SCRIPT_DIR%libs -set VS=%UTILS_DIR%/winsdk71/vs2010e -set WINSDK=%UTILS_DIR%/winsdk71/sdk +set VC=c:/Program Files/Microsoft Visual Studio .NET 2003 rem utils in path set MAKE_HOME=%UTILS_DIR%/make set PATH_PREPEND=%UTILS_DIR%/path_prepend set CYGWIN_HOME=%UTILS_DIR%/cygwin -set BOOTJDK_HOME=%SCRIPT_DIR%/../jdk7 +set BOOTJDK_HOME=%SCRIPT_DIR%/../jdk6 set ANT_HOME=%UTILS_DIR%/ant +rem path +set PATH=%PATH_PREPEND%;C:/WINDOWS/system32;C:/WINDOWS;C:/WINDOWS/System32/Wbem;%MAKE_HOME%;%CYGWIN_HOME%/bin;%BOOTJDK_HOME%/bin;%ANT_HOME%/bin + rem ALT_* varibles set ALT_BOOTDIR=%BOOTJDK_HOME% -set ALT_COMPILER_PATH=%VS%/VC/Bin -set ALT_WINDOWSSDKDIR=%WINSDK% -set ALT_FREETYPE_LIB_PATH=%LIBS_DIR%/freetype/dist/7_32 +set ALT_COMPILER_PATH=%VC%/VC7/Bin +set ALT_MSDEVTOOLS_PATH=%VC%/Common7/Tools/Bin +set ALT_FREETYPE_LIB_PATH=%LIBS_DIR%/freetype/dist/6_32 set ALT_FREETYPE_HEADERS_PATH=%LIBS_DIR%/freetype/include -set ALT_MSVCRNN_DLL_PATH=%LIBS_DIR%/msvcr/7_32 +set ALT_UNICOWS_LIB_PATH=%LIBS_DIR%/unicows +set ALT_UNICOWS_DLL_PATH=%LIBS_DIR%/unicows +set ALT_MSVCRT_DLL_PATH=%LIBS_DIR%/msvcr/6_32 +set ALT_MSVCR71_DLL_PATH=%LIBS_DIR%/msvcr/6_32 set ALT_DXSDK_PATH=%LIBS_DIR%/directx set ALT_CACERTS_FILE=%LIBS_DIR%/cacerts/cacerts -rem set ALT_PARALLEL_COMPILE_JOBS=1 -rem set HOTSPOT_BUILD_JOBS=1 rem other openjdk variables -rem set ALLOW_DOWNLOADS=true +set ALLOW_DOWNLOADS=false rem set NO_DOCS=true rem other variables -set UNLIMITED_CRYPTO=true +rem set UNLIMITED_CRYPTO=true set CYGWIN=nodosfilewarning -set MILESTONE=u40-unofficial -set BUILD_NUMBER=b60 - -rem icedtea specific -set USE_SYSTEM_GCONF=true -set USE_SYSTEM_GIO=true -set RHINO_JAR=%LIBS_DIR%/rhino/rhino-jdk7.jar -set FT2_CFLAGS=-I$(FREETYPE_HEADERS_PATH) -I$(FREETYPE_HEADERS_PATH)/freetype2 -set DISABLE_INTREE_EC=true - -rem debug settings -set FULL_DEBUG_SYMBOLS=0 +set MILESTONE=unofficial +set BUILD_NUMBER=b28 +set STATIC_CXX=true -rem set compiler environment manually -set WINDOWSSDKDIR=%WINSDK% -set VS100COMNTOOLS=%VS%/Common7/Tools -set Configuration=Release -set WindowsSDKVersionOverride=v7.1 -set ToolsVersion=4.0 -set TARGET_CPU=x86 -set CURRENT_CPU=x86 -set PlatformToolset=Windows7.1SDK -set TARGET_PLATFORM=XP -rem set PROCESSOR_ARCHITECTURE=x86 -rem set PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH -rem set APPVER=5.01 -rem set CommandPromptType=Native -set LIB=%VS%/VC/Lib;%WINSDK%/Lib -set LIBPATH=%VS%/VC/Lib -set PATH=%PATH_PREPEND%;%VS%/Common7/IDE;%VS%/Common7/Tools;%VS%/VC/Bin;%VS%/VC/Bin/VCPackages;%WINSDK%/Bin;C:/WINDOWS/system32;C:/WINDOWS;C:/WINDOWS/System32/Wbem;%MAKE_HOME%;%CYGWIN_HOME%/bin;%BOOTJDK_HOME%/bin;%ANT_HOME%/bin;%LIBS_DIR%/msvcr/7_32 -set INCLUDE=%VS%/VC/INCLUDE;%WINSDK%/INCLUDE;%WINSDK%/INCLUDE/gl; +rem set compiler environment +call "%VC%/Common7/Tools/vsvars32.bat" rem uncomment next lines for interactive build rem echo OpenJDK build environment is ready rem echo To start build go to sources root and type "make" -rem echo JDK binaries will be placed into "\build\windows-i585\j2sdk-image" +rem echo JDK binaries will be placed into "\build\windows-i586\j2sdk-image" rem bash rem echo Press any key to close window ... rem pause > nul rem start obf build -bash %SCRIPT_DIR%/make-and-bundle.sh -i +bash %SCRIPT_DIR%/make-and-bundle.sh rem debug build settings -set FULL_DEBUG_SYMBOLS=1 set DEBUG_CLASSFILES=true +set ALT_OUTPUTDIR=%SCRIPT_DIR%/../openjdk/build.debug/windows-i586/ -bash %SCRIPT_DIR%/make-and-bundle.sh -i -d -f +bash %SCRIPT_DIR%/make-and-bundle.sh -d -f diff --git a/host/cleanhg.sh b/host/cleanhg.sh new file mode 100755 index 0000000..65c620c --- /dev/null +++ b/host/cleanhg.sh @@ -0,0 +1,2 @@ +#!/bin/bash +find . -name .hg -exec rm -rf {} \; diff --git a/host/jdk6-linux-amd64.env b/host/jdk6-linux-amd64.env index ada1f4b..1446e9b 100644 --- a/host/jdk6-linux-amd64.env +++ b/host/jdk6-linux-amd64.env @@ -2,12 +2,12 @@ export VM_ADDRESS=192.168.42.1 export VM_NAME=jdk6-linux-amd64-obf export VM_OSTYPE=Debian_64 -export VM_MEMORY=1280 +export VM_MEMORY=1512 export VM_IOAPIC=on export VM_NICTYPE=82540EM export VM_MACADDR=080027CC317D export VM_OBF_DIR=/home/obf export VM_UNZIP=unzip -export VM_START_BUILD="nohup oub/build-linux-i586.sh >> build.log 2>&1 &" +export VM_START_BUILD="nohup oub/build-linux-amd64.sh >> build.log 2>&1 &" export VM_SHUTDOWN="/sbin/shutdown -h now" export VM_IDE_CONTROLLER=PIIX4 diff --git a/host/jdk6-windows-amd64.env b/host/jdk6-windows-amd64.env index d3198ed..ae9dcaa 100644 --- a/host/jdk6-windows-amd64.env +++ b/host/jdk6-windows-amd64.env @@ -2,7 +2,7 @@ export VM_ADDRESS=192.168.42.1 export VM_NAME=jdk6-windows-amd64-obf export VM_OSTYPE=Windows2003_64 -export VM_MEMORY=768 +export VM_MEMORY=1512 export VM_IOAPIC=on export VM_NICTYPE=82545EM export VM_MACADDR=auto diff --git a/host/jdk7-linux-amd64.env b/host/jdk7-linux-amd64.env index 89498c5..9d08a49 100644 --- a/host/jdk7-linux-amd64.env +++ b/host/jdk7-linux-amd64.env @@ -8,6 +8,6 @@ export VM_NICTYPE=82540EM export VM_MACADDR=080027CC317D export VM_OBF_DIR=/home/obf export VM_UNZIP=unzip -export VM_START_BUILD="nohup oub/build-linux-i586.sh >> build.log 2>&1 &" +export VM_START_BUILD="nohup oub/build-linux-amd64.sh >> build.log 2>&1 &" export VM_SHUTDOWN="/sbin/shutdown -h now" export VM_IDE_CONTROLLER=PIIX4 diff --git a/installer/build-image.sh b/installer/build-image.sh index b590455..ec2216e 100755 --- a/installer/build-image.sh +++ b/installer/build-image.sh @@ -56,40 +56,44 @@ pushd "$SRC_DIR_RELATIVE" > /dev/null SRC_DIR="$( pwd )" popd > /dev/null +if [ "true" == "$IS_DEBUG" ] ; then + BUILD_OUT_DIR=build.debug +else + BUILD_OUT_DIR=build +fi + # search for jdk image -if [ -d "$SRC_DIR"/build/windows-i586 ] ; then +if [ -d "$SRC_DIR"/"$BUILD_OUT_DIR"/windows-i586 ] ; then PLATFORM=windows-i586 ZIP=""$OBF_DIR"/zip/zip -qr" -elif [ -d "$SRC_DIR"/build/windows-amd64 ] ; then +elif [ -d "$SRC_DIR"/"$BUILD_OUT_DIR"/windows-amd64 ] ; then PLATFORM=windows-amd64 ZIP=""$OBF_DIR"/zip/zip -qr" -elif [ -d "$SRC_DIR"/build/linux-i586 ] ; then +elif [ -d "$SRC_DIR"/"$BUILD_OUT_DIR"/linux-i586 ] ; then PLATFORM=linux-i586 ZIP="zip -qry" -elif [ -d "$SRC_DIR"/build/linux-amd64 ] ; then +elif [ -d "$SRC_DIR"/"$BUILD_OUT_DIR"/linux-amd64 ] ; then PLATFORM=linux-amd64 ZIP="zip -qry" -elif [ -d "$SRC_DIR"/build/macosx-x86_64 ] ; then - PLATFORM=macosx-x86_64 - ZIP="zip -qry" - if [ ! -d "$SRC_DIR"/build/"$PLATFORM"/j2sdk-server-image ] ; then - # prepare server image - cp -r "$SRC_DIR"/build/"$PLATFORM"/j2sdk-image "$SRC_DIR"/build/"$PLATFORM"/j2sdk-server-image - rm -rf "$SRC_DIR"/build/"$PLATFORM"/j2sdk-server-image/demo - rm -rf "$SRC_DIR"/build/"$PLATFORM"/j2sdk-server-image/sample - fi else - echo "Error: OpenJDK binaries not found in $SRC_DIR/build" + echo "Error: OpenJDK binaries not found in $SRC_DIR/"$BUILD_OUT_DIR"" exit 1 fi +if [ ! -d "$SRC_DIR"/"$BUILD_OUT_DIR"/"$PLATFORM"/j2sdk-server-image ] ; then + # prepare server image + cp -r "$SRC_DIR"/"$BUILD_OUT_DIR"/"$PLATFORM"/j2sdk-image "$SRC_DIR"/"$BUILD_OUT_DIR"/"$PLATFORM"/j2sdk-server-image + rm -rf "$SRC_DIR"/"$BUILD_OUT_DIR"/"$PLATFORM"/j2sdk-server-image/demo + rm -rf "$SRC_DIR"/"$BUILD_OUT_DIR"/"$PLATFORM"/j2sdk-server-image/sample +fi + # extract version -JDK_IMAGE="$SRC_DIR"/build/"$PLATFORM"/j2sdk-server-image +JDK_IMAGE="$SRC_DIR"/"$BUILD_OUT_DIR"/"$PLATFORM"/j2sdk-server-image echo "Packing OpenJDK image: $JDK_IMAGE" JAVA="$JDK_IMAGE"/bin/java -OPENJDK_VERSION="$( "$JAVA" -version 2>&1 | awk 'NR==1{print substr($3,2,length($3)-2)}' )" +OPENJDK_VERSION="$( "$JAVA" -version 2>&1 | awk 'NR==2{print substr($5,0,length($5)-1)}' )" if [ "true" == "$IS_ICEDTEA" ] ; then ICEDTEA_VERSION="$( "$JAVA" -version 2>&1 | awk 'NR==2{print substr($5,0,length($5)-1)}' )" fi @@ -126,7 +130,7 @@ popd > /dev/null if [ "macosx-x86_64" == "$PLATFORM" ] ; then # pack bundle - JDK_BUNDLE="$SRC_DIR"/build/"$PLATFORM"/j2sdk-server-bundle + JDK_BUNDLE="$SRC_DIR"/"$BUILD_OUT_DIR"/"$PLATFORM"/j2sdk-server-bundle if [ "true" == "$IS_ICEDTEA" ] ; then if [ "true" == "$IS_DEBUG" ] ; then BUNDLE_NAME=openjdk-"$OPENJDK_VERSION"-icedtea-"$ICEDTEA_VERSION"-"$PLATFORM"-debug-bundle diff --git a/installer/build-installer.sh b/installer/build-installer.sh index 27d28ee..8e5df09 100755 --- a/installer/build-installer.sh +++ b/installer/build-installer.sh @@ -89,7 +89,7 @@ JDK_IMAGE="$SRC_DIR"/build/"$PLATFORM"/j2sdk-server-image echo "Building installer for OpenJDK image: $JDK_IMAGE" JAVA="$JDK_IMAGE"/bin/java -OPENJDK_VERSION="$( "$JAVA" -version 2>&1 | awk 'NR==1{print substr($3,2,length($3)-2)}' )" +OPENJDK_VERSION="$( "$JAVA" -version 2>&1 | awk 'NR==2{print substr($5,0,length($5)-1)}' )" if [ "true" == "$IS_ICEDTEA" ] ; then ICEDTEA_VERSION="$( "$JAVA" -version 2>&1 | awk 'NR==2{print substr($5,0,length($5)-1)}' )" fi diff --git a/installer/linux-amd64/default-install-dir-linux.txt b/installer/linux-amd64/default-install-dir-linux.txt index a96c5d1..31c78df 100644 --- a/installer/linux-amd64/default-install-dir-linux.txt +++ b/installer/linux-amd64/default-install-dir-linux.txt @@ -1 +1 @@ -$USER_HOME/openjdk_1.7.0_u40_2.4.2_64 +$USER_HOME/openjdk_1.6.0_b28_64 diff --git a/installer/linux-amd64/izpack.xml b/installer/linux-amd64/izpack.xml index 55d5e61..f729feb 100644 --- a/installer/linux-amd64/izpack.xml +++ b/installer/linux-amd64/izpack.xml @@ -1,8 +1,8 @@ - OpenJDK 7 u40 unofficial linux-amd64 - (IcedTea 2.4.2) + OpenJDK 6 unofficial linux-amd64 + build 28 diff --git a/installer/linux-i586/default-install-dir-linux.txt b/installer/linux-i586/default-install-dir-linux.txt index 80ce832..4f72cc7 100644 --- a/installer/linux-i586/default-install-dir-linux.txt +++ b/installer/linux-i586/default-install-dir-linux.txt @@ -1 +1 @@ -$USER_HOME/openjdk_1.7.0_u40_2.4.2 +$USER_HOME/openjdk_1.6.0_b28 diff --git a/installer/linux-i586/izpack.xml b/installer/linux-i586/izpack.xml index 9f6e54c..e776751 100644 --- a/installer/linux-i586/izpack.xml +++ b/installer/linux-i586/izpack.xml @@ -1,8 +1,8 @@ - OpenJDK 7 u40 unofficial linux-i586 - (IcedTea 2.4.2) + OpenJDK 6 unofficial linux-i586 + build 28 diff --git a/installer/macosx-x86_64/.DS_Store b/installer/macosx-x86_64/.DS_Store deleted file mode 100644 index 5008ddfcf53c02e82d7eee2e57c38e5672ef89f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0 - - - diff --git a/installer/macosx-x86_64/default-install-dir-macosx.txt b/installer/macosx-x86_64/default-install-dir-macosx.txt deleted file mode 100644 index 80ce832..0000000 --- a/installer/macosx-x86_64/default-install-dir-macosx.txt +++ /dev/null @@ -1 +0,0 @@ -$USER_HOME/openjdk_1.7.0_u40_2.4.2 diff --git a/installer/macosx-x86_64/duke.png b/installer/macosx-x86_64/duke.png deleted file mode 100644 index 37d71ff8215d36c8a131191085ac17fe400224f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1559 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 Hc#-)pPDS65 diff --git a/installer/macosx-x86_64/install.png b/installer/macosx-x86_64/install.png deleted file mode 100644 index 422e51d85925b8c48705db15aecd8a81918e2aa0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13496 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 diff --git a/installer/macosx-x86_64/install_bundle.sh b/installer/macosx-x86_64/install_bundle.sh deleted file mode 100755 index 952bad4..0000000 --- a/installer/macosx-x86_64/install_bundle.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -set -e -CUR_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" - -mkdir -p ~/Library/Java/JavaVirtualMachines -cp -R "$CUR_DIR"/jdk1.7.0.jdk ~/Library/Java/JavaVirtualMachines -echo "Budle insalled into ~/Library/Java/JavaVirtualMachines/jdk1.7.0.jdk" diff --git a/installer/macosx-x86_64/izpack.xml b/installer/macosx-x86_64/izpack.xml deleted file mode 100644 index df18bd1..0000000 --- a/installer/macosx-x86_64/izpack.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - OpenJDK 7 u40 unofficial macosx-x86_64 - (IcedTea 2.4.2) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OpenJDK Runtime Environment installation files - -${JRE_EXECUTABLES} - - - OpenJDK Development Kit installation files - -${JDK_EXECUTABLES} - - - OpenJDK uninstaller files - - - - - Set "JAVA_HOME" environment variable through "~/.bash_profile" file - - - - - diff --git a/installer/macosx-x86_64/license.txt b/installer/macosx-x86_64/license.txt deleted file mode 100755 index b40a0f4..0000000 --- a/installer/macosx-x86_64/license.txt +++ /dev/null @@ -1,347 +0,0 @@ -The GNU General Public License (GPL) - -Version 2, June 1991 - -Copyright (C) 1989, 1991 Free Software Foundation, Inc. -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -Everyone is permitted to copy and distribute verbatim copies of this license -document, but changing it is not allowed. - -Preamble - -The licenses for most software are designed to take away your freedom to share -and change it. By contrast, the GNU General Public License is intended to -guarantee your freedom to share and change free software--to make sure the -software is free for all its users. This General Public License applies to -most of the Free Software Foundation's software and to any other program whose -authors commit to using it. (Some other Free Software Foundation software is -covered by the GNU Library General Public License instead.) You can apply it to -your programs, too. - -When we speak of free software, we are referring to freedom, not price. Our -General Public Licenses are designed to make sure that you have the freedom to -distribute copies of free software (and charge for this service if you wish), -that you receive source code or can get it if you want it, that you can change -the software or use pieces of it in new free programs; and that you know you -can do these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny -you these rights or to ask you to surrender the rights. These restrictions -translate to certain responsibilities for you if you distribute copies of the -software, or if you modify it. - -For example, if you distribute copies of such a program, whether gratis or for -a fee, you must give the recipients all the rights that you have. You must -make sure that they, too, receive or can get the source code. And you must -show them these terms so they know their rights. - -We protect your rights with two steps: (1) copyright the software, and (2) -offer you this license which gives you legal permission to copy, distribute -and/or modify the software. - -Also, for each author's protection and ours, we want to make certain that -everyone understands that there is no warranty for this free software. If the -software is modified by someone else and passed on, we want its recipients to -know that what they have is not the original, so that any problems introduced -by others will not reflect on the original authors' reputations. - -Finally, any free program is threatened constantly by software patents. We -wish to avoid the danger that redistributors of a free program will -individually obtain patent licenses, in effect making the program proprietary. -To prevent this, we have made it clear that any patent must be licensed for -everyone's free use or not licensed at all. - -The precise terms and conditions for copying, distribution and modification -follow. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License applies to any program or other work which contains a notice -placed by the copyright holder saying it may be distributed under the terms of -this General Public License. The "Program", below, refers to any such program -or work, and a "work based on the Program" means either the Program or any -derivative work under copyright law: that is to say, a work containing the -Program or a portion of it, either verbatim or with modifications and/or -translated into another language. (Hereinafter, translation is included -without limitation in the term "modification".) Each licensee is addressed as -"you". - -Activities other than copying, distribution and modification are not covered by -this License; they are outside its scope. The act of running the Program is -not restricted, and the output from the Program is covered only if its contents -constitute a work based on the Program (independent of having been made by -running the Program). Whether that is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program's source code as -you receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice and -disclaimer of warranty; keep intact all the notices that refer to this License -and to the absence of any warranty; and give any other recipients of the -Program a copy of this License along with the Program. - -You may charge a fee for the physical act of transferring a copy, and you may -at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion of it, thus -forming a work based on the Program, and copy and distribute such modifications -or work under the terms of Section 1 above, provided that you also meet all of -these conditions: - - a) You must cause the modified files to carry prominent notices stating - that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in whole or - in part contains or is derived from the Program or any part thereof, to be - licensed as a whole at no charge to all third parties under the terms of - this License. - - c) If the modified program normally reads commands interactively when run, - you must cause it, when started running for such interactive use in the - most ordinary way, to print or display an announcement including an - appropriate copyright notice and a notice that there is no warranty (or - else, saying that you provide a warranty) and that users may redistribute - the program under these conditions, and telling the user how to view a copy - of this License. (Exception: if the Program itself is interactive but does - not normally print such an announcement, your work based on the Program is - not required to print an announcement.) - -These requirements apply to the modified work as a whole. If identifiable -sections of that work are not derived from the Program, and can be reasonably -considered independent and separate works in themselves, then this License, and -its terms, do not apply to those sections when you distribute them as separate -works. But when you distribute the same sections as part of a whole which is a -work based on the Program, the distribution of the whole must be on the terms -of this License, whose permissions for other licensees extend to the entire -whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your -rights to work written entirely by you; rather, the intent is to exercise the -right to control the distribution of derivative or collective works based on -the Program. - -In addition, mere aggregation of another work not based on the Program with the -Program (or with a work based on the Program) on a volume of a storage or -distribution medium does not bring the other work under the scope of this -License. - -3. You may copy and distribute the Program (or a work based on it, under -Section 2) in object code or executable form under the terms of Sections 1 and -2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable source - code, which must be distributed under the terms of Sections 1 and 2 above - on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three years, to - give any third party, for a charge no more than your cost of physically - performing source distribution, a complete machine-readable copy of the - corresponding source code, to be distributed under the terms of Sections 1 - and 2 above on a medium customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer to - distribute corresponding source code. (This alternative is allowed only - for noncommercial distribution and only if you received the program in - object code or executable form with such an offer, in accord with - Subsection b above.) - -The source code for a work means the preferred form of the work for making -modifications to it. For an executable work, complete source code means all -the source code for all modules it contains, plus any associated interface -definition files, plus the scripts used to control compilation and installation -of the executable. However, as a special exception, the source code -distributed need not include anything that is normally distributed (in either -source or binary form) with the major components (compiler, kernel, and so on) -of the operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the source -code from the same place counts as distribution of the source code, even though -third parties are not compelled to copy the source along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program except as -expressly provided under this License. Any attempt otherwise to copy, modify, -sublicense or distribute the Program is void, and will automatically terminate -your rights under this License. However, parties who have received copies, or -rights, from you under this License will not have their licenses terminated so -long as such parties remain in full compliance. - -5. You are not required to accept this License, since you have not signed it. -However, nothing else grants you permission to modify or distribute the Program -or its derivative works. These actions are prohibited by law if you do not -accept this License. Therefore, by modifying or distributing the Program (or -any work based on the Program), you indicate your acceptance of this License to -do so, and all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the Program), -the recipient automatically receives a license from the original licensor to -copy, distribute or modify the Program subject to these terms and conditions. -You may not impose any further restrictions on the recipients' exercise of the -rights granted herein. You are not responsible for enforcing compliance by -third parties to this License. - -7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), conditions -are imposed on you (whether by court order, agreement or otherwise) that -contradict the conditions of this License, they do not excuse you from the -conditions of this License. If you cannot distribute so as to satisfy -simultaneously your obligations under this License and any other pertinent -obligations, then as a consequence you may not distribute the Program at all. -For example, if a patent license would not permit royalty-free redistribution -of the Program by all those who receive copies directly or indirectly through -you, then the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply and -the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or -other property right claims or to contest validity of any such claims; this -section has the sole purpose of protecting the integrity of the free software -distribution system, which is implemented by public license practices. Many -people have made generous contributions to the wide range of software -distributed through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing to -distribute software through any other system and a licensee cannot impose that -choice. - -This section is intended to make thoroughly clear what is believed to be a -consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in certain -countries either by patents or by copyrighted interfaces, the original -copyright holder who places the Program under this License may add an explicit -geographical distribution limitation excluding those countries, so that -distribution is permitted only in or among countries not thus excluded. In -such case, this License incorporates the limitation as if written in the body -of this License. - -9. The Free Software Foundation may publish revised and/or new versions of the -General Public License from time to time. Such new versions will be similar in -spirit to the present version, but may differ in detail to address new problems -or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any later -version", you have the option of following the terms and conditions either of -that version or of any later version published by the Free Software Foundation. -If the Program does not specify a version number of this License, you may -choose any version ever published by the Free Software Foundation. - -10. If you wish to incorporate parts of the Program into other free programs -whose distribution conditions are different, write to the author to ask for -permission. For software which is copyrighted by the Free Software Foundation, -write to the Free Software Foundation; we sometimes make exceptions for this. -Our decision will be guided by the two goals of preserving the free status of -all derivatives of our free software and of promoting the sharing and reuse of -software generally. - -NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR -THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE -STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE -PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND -PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, -YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL -ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE -PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR -INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA -BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER -OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest possible -use to the public, the best way to achieve this is to make it free software -which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest to attach -them to the start of each source file to most effectively convey the exclusion -of warranty; and each file should have at least the "copyright" line and a -pointer to where the full notice is found. - - One line to give the program's name and a brief idea of what it does. - - Copyright (C) - - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the Free - Software Foundation; either version 2 of the License, or (at your option) - any later version. - - This program is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., 59 - Temple Place, Suite 330, Boston, MA 02111-1307 USA - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this when it -starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author Gnomovision comes - with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free - software, and you are welcome to redistribute it under certain conditions; - type 'show c' for details. - -The hypothetical commands 'show w' and 'show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may be -called something other than 'show w' and 'show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your school, -if any, to sign a "copyright disclaimer" for the program, if necessary. Here -is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - 'Gnomovision' (which makes passes at compilers) written by James Hacker. - - signature of Ty Coon, 1 April 1989 - - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General Public -License instead of this License. - - -"CLASSPATH" EXCEPTION TO THE GPL - -Certain source files distributed by Oracle America and/or its affiliates are -subject to the following clarification and special exception to the GPL, but -only where Oracle has expressly included in the particular source file's header -the words "Oracle designates this particular file as subject to the "Classpath" -exception as provided by Oracle in the LICENSE file that accompanied this code." - - Linking this library statically or dynamically with other modules is making - a combined work based on this library. Thus, the terms and conditions of - the GNU General Public License cover the whole combination. - - As a special exception, the copyright holders of this library give you - permission to link this library with independent modules to produce an - executable, regardless of the license terms of these independent modules, - and to copy and distribute the resulting executable under terms of your - choice, provided that you also meet, for each linked independent module, - the terms and conditions of the license of that module. An independent - module is a module which is not derived from or based on this library. If - you modify this library, you may extend this exception to your version of - the library, but you are not obligated to do so. If you do not wish to do - so, delete this exception statement from your version. diff --git a/installer/macosx-x86_64/uninstall/tools/append_bash_profile.sh b/installer/macosx-x86_64/uninstall/tools/append_bash_profile.sh deleted file mode 100644 index 9fded8f..0000000 --- a/installer/macosx-x86_64/uninstall/tools/append_bash_profile.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -set -e -TOOLS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -UNINSTALL_DIR="$( dirname "$TOOLS_DIR" )" -JDK_DIR="$( dirname "$UNINSTALL_DIR" )" -DATE="$( date +%Y-%m-%d_%H:%M:%S )" - -if [ -f ~/.bash_profile ] ; then - echo "export JAVA_HOME="$JDK_DIR" # OpenJDK installer entry, added on "$DATE"" >> ~/.bash_profile -fi diff --git a/installer/macosx-x86_64/uninstall/tools/clear_bash_profile.sh b/installer/macosx-x86_64/uninstall/tools/clear_bash_profile.sh deleted file mode 100644 index 55c0dbc..0000000 --- a/installer/macosx-x86_64/uninstall/tools/clear_bash_profile.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -set -e -DATE="$( date +%Y-%m-%d_%H:%M:%S )" - -if [ -f ~/.bash_profile ] ; then - echo "export JAVA_HOME=\"\" # OpenJDK uninstaller entry, added on "$DATE"" >> ~/.bash_profile -fi diff --git a/installer/macosx-x86_64/uninstall/uninstall b/installer/macosx-x86_64/uninstall/uninstall deleted file mode 100755 index fd575052ae492c727e173e504bf9a537c728de73..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15880 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 diff --git a/installer/windows-amd64/default-install-dir-win.txt b/installer/windows-amd64/default-install-dir-win.txt index 55967ab..a9d7faf 100644 --- a/installer/windows-amd64/default-install-dir-win.txt +++ b/installer/windows-amd64/default-install-dir-win.txt @@ -1 +1 @@ -$USER_HOME\openjdk_1.7.0_u40_2.4.2_64 +$USER_HOME\openjdk_1.6.0_b28_64 diff --git a/installer/windows-amd64/izpack.xml b/installer/windows-amd64/izpack.xml index 0743848..9a2c53f 100644 --- a/installer/windows-amd64/izpack.xml +++ b/installer/windows-amd64/izpack.xml @@ -1,8 +1,8 @@ - OpenJDK 7 u40 unofficial windows-amd64 - (IcedTea 2.4.2) + OpenJDK 6 unofficial windows-amd64 + build 28 @@ -168,14 +168,14 @@ Add "JAVA_HOME" environment variable and append "JAVA_HOME/bin" and "JAVA_HOME/j required="no" preselected="no"> -Add registry key "HKEY_LOCAL_MACHINE/Software/JavaSoft/Java Runtime Environment/1.7" with information about this installation. These entries may be used by java application launchers (e.g. launch4j). Key will be added to global registry branch and may require administrator privileges. On uninstallation registry values under this key will be cleared, but key itself will be left intact. +Add registry key "HKEY_LOCAL_MACHINE/Software/JavaSoft/Java Runtime Environment/1.6" with information about this installation. These entries may be used by java application launchers (e.g. launch4j). Key will be added to global registry branch and may require administrator privileges. On uninstallation registry values under this key will be cleared, but key itself will be left intact. - + @@ -189,7 +189,7 @@ Add registry key "HKEY_LOCAL_MACHINE/Software/JavaSoft/Java Runtime Environment/ keep="true"> - + @@ -200,7 +200,7 @@ Add registry key "HKEY_LOCAL_MACHINE/Software/JavaSoft/Java Runtime Environment/ keep="true"> - + @@ -214,7 +214,7 @@ Add registry key "HKEY_LOCAL_MACHINE/Software/JavaSoft/Java Runtime Environment/ keep="true"> - + @@ -225,7 +225,7 @@ Add registry key "HKEY_LOCAL_MACHINE/Software/JavaSoft/Java Runtime Environment/ keep="true"> - + @@ -239,7 +239,7 @@ Add registry key "HKEY_LOCAL_MACHINE/Software/JavaSoft/Java Runtime Environment/ keep="true"> - + diff --git a/installer/windows-i586/default-install-dir-win.txt b/installer/windows-i586/default-install-dir-win.txt index c98fefa..f09d4c6 100644 --- a/installer/windows-i586/default-install-dir-win.txt +++ b/installer/windows-i586/default-install-dir-win.txt @@ -1 +1 @@ -$USER_HOME\openjdk_1.7.0_u40_2.4.2 +$USER_HOME\openjdk_1.6.0_b28 diff --git a/installer/windows-i586/izpack.xml b/installer/windows-i586/izpack.xml index e30fec1..7e80233 100644 --- a/installer/windows-i586/izpack.xml +++ b/installer/windows-i586/izpack.xml @@ -1,8 +1,8 @@ - OpenJDK 7 u40 unofficial windows-i586 - (IcedTea 2.4.2) + OpenJDK 6 unofficial windows-i586 + build 28 @@ -168,15 +168,15 @@ Add "JAVA_HOME" environment variable and append "JAVA_HOME/bin" and "JAVA_HOME/j required="no" preselected="no"> -Add registry key "HKEY_LOCAL_MACHINE/Software/JavaSoft/Java Runtime Environment/1.7" with information about this installation. These entries may be used by java application launchers (e.g. launch4j). Key will be added to global registry branch and may require administrator privileges. On uninstallation registry values under this key will be cleared, but key itself will be left intact. -Note: installing i586 OpenJDK on amd64 Windows, registry entries will be added to "HKEY_LOCAL_MACHINE/Software/Wow6432Node/JavaSoft/Java Runtime Environment/1.7" path instead due to registry redirection. +Add registry key "HKEY_LOCAL_MACHINE/Software/JavaSoft/Java Runtime Environment/1.6" with information about this installation. These entries may be used by java application launchers (e.g. launch4j). Key will be added to global registry branch and may require administrator privileges. On uninstallation registry values under this key will be cleared, but key itself will be left intact. +Note: installing i586 OpenJDK on amd64 Windows, registry entries will be added to "HKEY_LOCAL_MACHINE/Software/Wow6432Node/JavaSoft/Java Runtime Environment/1.6" path instead due to registry redirection. - + @@ -190,7 +190,7 @@ Note: installing i586 OpenJDK on amd64 Windows, registry entries will be added t keep="true"> - + @@ -201,7 +201,7 @@ Note: installing i586 OpenJDK on amd64 Windows, registry entries will be added t keep="true"> - + @@ -215,7 +215,7 @@ Note: installing i586 OpenJDK on amd64 Windows, registry entries will be added t keep="true"> - + @@ -226,7 +226,7 @@ Note: installing i586 OpenJDK on amd64 Windows, registry entries will be added t keep="true"> - + @@ -240,7 +240,7 @@ Note: installing i586 OpenJDK on amd64 Windows, registry entries will be added t keep="true"> - + diff --git a/make-and-bundle.sh b/make-and-bundle.sh index 143f981..2515732 100755 --- a/make-and-bundle.sh +++ b/make-and-bundle.sh @@ -48,9 +48,6 @@ done echo "Starting make" >> "$LOG_FILE" cd "$OBF_DIR"/openjdk - -make clean >> "$LOG_FILE" 2>&1 -rm -rf build make >> "$LOG_FILE" 2>&1 if [ $? -ne 0 ] ; then echo "Build aborted with error on 'make'" >> "$LOG_FILE"