You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/03/03 07:04:04 UTC

svn commit: r4544 - in /dev/flex/installer/3.0/rc3: ./ binaries/

Author: aharui
Date: Mon Mar  3 06:04:03 2014
New Revision: 4544

Log:
rc3 of ApacheFlexInstaller 3.0

Added:
    dev/flex/installer/3.0/rc3/
    dev/flex/installer/3.0/rc3/READme   (with props)
    dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.tar.gz   (with props)
    dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.tar.gz.asc
    dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.tar.gz.md5
    dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.zip   (with props)
    dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.zip.asc
    dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.zip.md5
    dev/flex/installer/3.0/rc3/binaries/
    dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg   (with props)
    dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.asc
    dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.md5
    dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.exe   (with props)
    dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.asc
    dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.md5

Added: dev/flex/installer/3.0/rc3/READme
==============================================================================
--- dev/flex/installer/3.0/rc3/READme (added)
+++ dev/flex/installer/3.0/rc3/READme Mon Mar  3 06:04:03 2014
@@ -0,0 +1,143 @@
+<!--
+
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+-->
+
+==========================================================================================
+Overview:
+=========
+
+- The Apache Flex SDK Installer AIR application provides an easy installation of the 
+  Apache Flex SDK and all its dependencies.  This will make it suitable for working with 
+  IDEs such as Adobe Flash Builder, FDT, IntelliJ IDEA, FlashDevelop, etc.  
+  The application downloads the following dependencies:
+    - The AIR sdk (Windows vs. Mac) based on the current platform
+    - Adobe Flash Player playerglobal.swc
+    - SwfObject
+    - Open Source Media Framework (OSMF)
+	 
+  Optionally, the application will download these files if the user explicitly agrees to 
+  the licensing terms:
+    - Adobe BlazeDS
+    - Adobe embedded font support
+ 
+- The Apache Flex SDK Installer 3.0 adds the ability to install virtually anything that
+  can be installed via an Apache Ant script.  The list of choices to install are
+  described in installer/src/installer/sdk-installer-config-4.0.xml and posted to
+  http://flex.apache.org/installer/sdk-installer-config-4.0.xml.  By default, the
+  installer looks there to determine the list of choices.  Once a selection is made,
+  the installer then looks in the folder of the install package for a -config.xml file
+  and if found, uses that to determine the set of licensing options that need to be
+  accepted before installing.  The installer then uncompresses the install package and
+  looks for installer.xml and runs that script via an approximation of Apache Ant that
+  has been written in ActionScript.  If the -config.xml file is not found, the Installer
+  assumes it is installing an older version of the Apache Flex SDK.
+
+- When installing an older version of the Apache Flex SDK, the installer
+  determines the file names and urls of the downloaded files from 
+  installer/src/installer/sdk-installer-config-4.0.xml. When the dependencies file 
+  names or urls change in future, update the sdk-installer-config-4.0.xml to ensure 
+  that the application works correctly.  For newer installs driven by Apache Ant
+  scripts, the file names and urls are determined by the script itself.
+    
+- The application uses http://flex.apache.org/single-mirror-url.cgi to determine
+  the preferred mirror url to use to download the binary package.  Newer installs
+  that use Apache Ant scripts use their own logic to select dependencies from mirrors.
+  
+- Once the binary package is downloaded, a MD5 hash is generated for it.  
+  This hash is compared with the hash from the Apache Flex SDK release site.  
+  If they match, we verify that the downloaded binary package is a valid Apache release and 
+  proceed to unzip the file.  
+	
+- If required, the Adobe AIR SDK will be downloaded and the relevant files are copied 
+  to the required locations.
+  
+- If required, the Adobe Flash Player playerglobal.swc file and the config files 
+  are placed in the required locations.
+  
+- Then the rest of the external dependencies and the optional files (if selected by user) 
+  are downloaded and copied into the appropriate locations.  
+
+- From the 2.6 version, you can select the version of Adobe Flash Player and Adobe AIR SDK
+  the installer downloads.
+
+- From the 2.5 version, by default, Apache Flex SDK Installer 2.5 downloads Adobe Flash 
+  Player 11.1 and Adobe AIR SDK 3.4. 
+  If you want to change it to any other supported combination, you save a copy of the 
+  config file found at: http://flex.apache.org/installer/sdk-installer-config-3.0.xml, 
+  modify the download urls to point to the required versions.  Then run the app from 
+  command line mode with the optional command line parameter: -config=<path to config file>
+
+- If building the app for Linux, open InstallApacheFlex-app.xml and change the Adobe AIR 
+  namespace from http://ns.adobe.com/air/application/3.4 to 
+  http://ns.adobe.com/air/application/2.6  This is because AIR 2.6 is the latest available 
+  version on Linux.  
+	
+==========================================================================================
+How to build the installer using ANT (no Flash Builder or any other IDE required):
+==========================================================================================
+
+1.  Unzip the source distribution.  You should see the 'installer' directory and the 
+    'common' and 'ant_on_air' directories in the root.
+
+2.  In the ant_on_air directory, run:
+        ant [-DFLEX_HOME=/path/to/apache/flex/sdk] [-DAIR_HOME=/path/to/air/sdk]
+            
+    FLEX_HOME is the absolute path to the Apache Flex SDK
+        If you omit this argument, and the system environment variable, FLEX_HOME exists,
+        it is used.  Otherwise, the FLEX_HOME_MAC or FLEX_HOME_WIN property in 
+        installer/build.properties is used.
+        
+    AIR_HOME is the absolute path to the Adobe AIR SDK
+        If you omit this argument, and the system environment variable, AIR_HOME exists,
+        it is used.  Otherwise, the AIR_HOME_MAC or AIR_HOME_WIN property in 
+        installer/build.properties is used.
+          	
+3.  In the installer directory, run:
+        ant build [-DFLEX_HOME=/path/to/apache/flex/sdk] [-DAIR_HOME=/path/to/air/sdk]
+        
+4.  The installer executable file created in the installer/release directory.  If you are 
+    on Windows, you will see an .exe file; if you are on Mac OS, you will see a .dmg file.  
+	A temporary digital signing certificate - temp.p12 will be created in the installer 
+	directory as well.  The password for this file is available in the build.properties 
+	file (var: TEMP_PASS_CHANGE_THIS)
+
+==========================================================================================
+How to set up the project for working with Adobe Flash Builder (or any other IDE):
+==========================================================================================
+
+1.  Unzip the source distribution.  You should see the 'installer' directory and the 
+    'common' and 'ant_on_air' directories in the root.
+
+2.  In the installer directory run: 
+        ant get-as3commons.swc
+    This step downloads the required as3commons library and saves it in the libs 
+    directory.
+
+3.  If using Adobe Flash Builder, add a linked resource called: 
+        APACHE_FLEX_UTILITIES_ROOT 
+    and point it to the directory path where the 'installer' and 'common' directories are 
+    located.
+
+4.  In the installer project, add ${APACHE_FLEX_UTILITIES_ROOT}/common/src as a source path.
+
+5.  In the installer project, add ${APACHE_FLEX_UTILITIES_ROOT}/ant_on_air/src as a source path.
+
+6.  In the installer project, add ${APACHE_FLEX_UTILITIES_ROOT}/ant_on_air/external as a source path.
+
+7.  In the installer project, add ${APACHE_FLEX_UTILITIES_ROOT}/ant_on_air/locale/{locale} as a source path.
+

Propchange: dev/flex/installer/3.0/rc3/READme
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.tar.gz.asc
==============================================================================
--- dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.tar.gz.asc (added)
+++ dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.tar.gz.asc Mon Mar  3 06:04:03 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTFBVnAAoJEIPgQxzanM/ynEcP/RvqdDoLddy+462M8uUON54b
+J6EdN/mZo3gfl+Go055C1+fEfXvqnfyvjhuFC37SXu3G16AZuHLvTss0us6/8gtO
+b6GzUvDnkr+5YqUUa6wftR/LTmVmrMzPYEqQcGIoQFgEMSHPYTb4v0oVg8VL3EJs
+Uu9ePzs4g/FsTu81qHMHB8Ou0eh83oxNbvxUR/g+5MuzjRIw4wbcC1ewK8VYvAmQ
+tDn5hpxLnPmdKRbwKdk3G8N3Bzpf0yyNnQyWyekNCq+HtuBGggFhZnUbU0dhE9RG
+2rF7RGS31wjNzXvlBhWWxgfxkJfXgBHAjFEwXJK9NWObliQNvDU42zqgowKSY2M4
+dva33d833DjDeSlG+GWta0klCIiXz1NsrLcRhXJH+OC3LwsE4Am3RXCATe2mD3cU
+NrT0RmxRNAWM8YQ5wEr7ISqWcDfqBTvTkApmVYWoN+5s97JPuucm/i5u+o8weWeG
+lx4Uq8hpVmWpp45QBkcNTNXtROlJx5MJq05nb5Zf0uMYzrmB1DPJ3OFXl675YFKB
+jEYmb0OG5bCfK0leIKqS5yBhsfr1eWANUj6nj7Q8UYM0qcD4oQiE0brGQkQft8cf
+cXeunSb2l4Za9i+QZtXHNvj/Wpx0b6R/BhOo61pHFGQToGapbazaVeXU+fR1Tmqc
+LjRE9UybMYOy5vERRqjz
+=NqCZ
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.tar.gz.md5
==============================================================================
--- dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.tar.gz.md5 (added)
+++ dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.tar.gz.md5 Mon Mar  3 06:04:03 2014
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-3.0.0-src.tar.gz: 
+F3 F1 7A 0C E9 6C 20 D0  86 64 AB 00 37 D5 BB E2

Added: dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.zip.asc
==============================================================================
--- dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.zip.asc (added)
+++ dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.zip.asc Mon Mar  3 06:04:03 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTFBVkAAoJEIPgQxzanM/yUlgP/1b0+G4bLbHn9RXFF5sVRvN3
+VsIUK7p3DF17yim2gs0/2Uyflw2KGeD+Acbh/++7ZgGQgUQW3uzdUNcToiwz4a6Y
+rVXE/k7B7ARwJ74iH975eszrUNd0mhVNMhk3PkkQWt+MD57hRvGavtAEH6jvGi5h
+fdv/4qJFHN9csEc+PiQF0E9J7n+jVxjPXiinCtOodoWxAn4CuU2LI8nu7PPJPpG4
+0f7qM8H8HWC1KWp3uwB+Xdw7DDDQS7+sm39DjnYK8N9vwYJcR7bkwhhz4qrz8Wdf
+FhNmNuMA2f97c+xHbQwqrZsQzPGgEe6Ecm4l2ilb6BTZ+nnFPaWzVlP8kXDo50N9
+pRVoZD7JTN1XaUByH5bWjwGl72d/1uamT3NyVFPb1Q9lKm1qfUS1W45hqOgEFJ9u
+DWZmSYsGZRcDIHAZEnqP/3DMyi5lImqhYFlp1AuUWBZtvE+NuCUgAV74iqc7rOKK
+pMcQAIcMV0bV3gmxXegNsKBtXHt+9M3HSIHxkUAKFIu4CFxAdydn3VfzMaFwrG0C
+iPyA1E8J5FXnY7vqAuWf5vUNAiObZmh5mP2loGZQs7QAZbT+FEpJuhE7/FCKd76i
+7a2bWv6jCuqkZ9+76MQi4sYbZncaNI2DzhUA7asc9Ah5mXGD5SeJu4WbC5tQp1RT
+04BrEiXNLJnqhCQPtBU1
+=nz22
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.zip.md5
==============================================================================
--- dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.zip.md5 (added)
+++ dev/flex/installer/3.0/rc3/apache-flex-sdk-installer-3.0.0-src.zip.md5 Mon Mar  3 06:04:03 2014
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-3.0.0-src.zip: 
+39 88 53 A1 7A 4A CA 13  ED BD 6B B0 CF 7D 1E EE

Added: dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.asc
==============================================================================
--- dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.asc (added)
+++ dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.asc Mon Mar  3 06:04:03 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTFBVpAAoJEIPgQxzanM/yiQIP/1PiNff+2B+hYj45OI1TdR2H
+p3Vr94ZIeVR/H3xHfmuVKfrcgPV2HYktN+XXzqSXjAU8O4koVAAh6EnsLVo5nwEQ
+mVyRzFk4WjgDQXT8kYK/993csnaqcJV0HvL2rctf5UbfjwAA53uu5x+xAlaNbxQn
+y/g+WtBBO2CYYtLi0SKbvhiPYJSnXYV2q/b/Y6Y5BT8UPQiY02IlOFuMJS1so2i/
+G3gkQMCSfGz230X1ZwDnJjZ1fz2DaVeXkO2am/j2mjVAHC1LMmv5R3W1d5x9zoFo
+Q4jSxKdZieZrRxte5vg+L8I86UZQcLGCv9sPyfPqhw7YPWxaw4SYzyd3SigeHQQm
+gXx53XnrUQ7Yxwc+vGJkXnNOuHSHY9tgDSv3RQsRJbbIB/MtMLlpeMFS+Bsnb1j4
+qVmtR5w8zBuxWIJa2c+N+UxgBP6wNBdJfJGq5civyuxZd69GvWyQDA0wgdEL1+kT
+0feqS09tFMwToVgRWEFrh/ALV29bV1HvbHiSNTjTHyO6ZJqNAcmim9hAx4c/+DQi
+qC4l5RK3uH5p0Mbvn2h4Pu8OmT7L4BER77ko+GYeHzPIWSXRc64l38C5sBwYFeOs
++ZpZRocCUItvDMVnMBghglcMQTQoQK3P0SvJq3UVhsbJXG8A+vRplgNWBxvSXouX
+Th2dyssDEOAauRIQ/OJ9
+=RfTa
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.md5
==============================================================================
--- dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.md5 (added)
+++ dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.md5 Mon Mar  3 06:04:03 2014
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-3.0.0-bin.dmg: 
+5B E4 DC AE F0 04 67 2F  1B 12 C3 C0 0E 63 96 04

Added: dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.exe
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.exe
------------------------------------------------------------------------------
    svn:executable = *

Propchange: dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.exe
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.asc
==============================================================================
--- dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.asc (added)
+++ dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.asc Mon Mar  3 06:04:03 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTFBoWAAoJEIPgQxzanM/yVXIQAJbetVsbBEPmxCqJT2+QO+e2
+Af60wL+Zm5L4SP09SHeXbxCuST4/q7gBB2l0+HYD4VN1pHDOMs9SfMG8thP5WCvj
+CE6IZps8wD9NZd2IMaHjTAIu2cJ0GULfMWqO9hWM9qMqAb7ivoZsRUlpYVSZJbXN
+UdSpT8GmMdtDMRGVfCE3iqzBsB2ZlEHZvpkedxBJYiFjaEImLK5z6UQzd1r/wT3b
+keeWgNe3Z+OCoOf+xkomuALBnlTlsm2y2TUZxReAg8IkTrA1XpxhcZmHS4qKUkUo
+ukxKoqiBqYKjDdL41aK+Il1zyqnHZPgggRMoDWko4GZsF4isEY/1KqYwAmDadpze
+hlMrXMqAgZh1jT0+UJKew1y0z4yz8aJfUWvcSjRjYw2kSlxxDtJ1iSDgRGB04ixQ
+lT0MDbizV2cx4wSagsz3hXrv4El1OEu7GWp2upvYkEwtmmVDmnFL/IPMkMIbJcH/
+xq6mGKPFbRbkq6iMzFbVvv/dw4P4FLPdxTCIb0o4o/vJtQwY7kLwGwECJi4ieies
+4CzZBKXvfagPaTAAnUGnpnTbVyRabJZ9MdhkUQHDaSm4t7LpZGUrusS8TcIcinzk
+jXA6fuiCBUkpG0NRT9Vax+XU9Lg6nYXW2dXON7cPUWs2BIGl5A+OxnIZ54BzQQKH
+/D+bWmboiGk14TAfJ+kb
+=Kizs
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.md5
==============================================================================
--- dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.md5 (added)
+++ dev/flex/installer/3.0/rc3/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.md5 Mon Mar  3 06:04:03 2014
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-3.0.0-bin.exe: 
+D5 D9 22 CB B4 9E A6 0A  A3 A9 E2 DA EB CC 31 BA