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/04 08:10:35 UTC

svn commit: r4559 - in /dev/flex/installer/3.0/rc4: ./ binaries/

Author: aharui
Date: Tue Mar  4 07:10:33 2014
New Revision: 4559

Log:
rc4 of InstallApacheFlex 3.0

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

Added: dev/flex/installer/3.0/rc4/READme
==============================================================================
--- dev/flex/installer/3.0/rc4/READme (added)
+++ dev/flex/installer/3.0/rc4/READme Tue Mar  4 07:10:33 2014
@@ -0,0 +1,149 @@
+<!--
+
+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/4.0 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):
+==========================================================================================
+
+0.  Make sure you have the right version of the Adobe AIR SDK.  Apache Flex Installer
+    3.0 uses Adobe AIR SDK 4.0.  If you want to use an older version of the AIR SDK,
+    you will have to change the namespace in the following files:
+	installer/src/InstallApacheFlex-app.xml
+	ant_on_air/tests/AntOnAIR-app.xml.
+
+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/rc4/READme
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: dev/flex/installer/3.0/rc4/apache-flex-sdk-installer-3.0.0-src.tar.gz.asc
==============================================================================
--- dev/flex/installer/3.0/rc4/apache-flex-sdk-installer-3.0.0-src.tar.gz.asc (added)
+++ dev/flex/installer/3.0/rc4/apache-flex-sdk-installer-3.0.0-src.tar.gz.asc Tue Mar  4 07:10:33 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTFWtZAAoJEIPgQxzanM/ydS8QAKcUXIb+YBgCGa/9ChUz9m7o
+Rp4qSzFbqrF7Wx9sF93RJM9rFiYd7JPAUImIw0pH5yCadRDYZ+UNN93PilodaSsN
+P/DMpCQgRgLUfNIGOHugBPZJbF7h+1LHThSU63VO8uZKXYpJgXrd6Wz1OXS++h/8
+XvA4/V+IFSMHix0uT97Qrqs6JUuenuzA0Ku5l1urHOVkBU5l6G2fWqJquah0sl05
+UIiaRK8N3xV16kYkLgnXSpWXKhoBSbv6N/AOuK4ORUvjhevfE4ZwreRLUuCUxX+s
+ehw7T/GbVxi+gKrplfS4qG7LAqmjl0jS/w1oW6Jbhg/Z6oblf41Vl0YNcflfavDL
+UMAvzEev1jaRKFIJBzPTYiS0Z2M9RuLug7ZRQ1rAZe53vGRQo1yTQ1q/Noz6gB8E
+3omj+ouaynwNDv6qdnlra97L1Oi7k9xcFPGJwcNeSf/dZxZ6Qca7rUXw0sy8VJTo
+sBhdl2OI5WtGMjOF3CXxrL3NHhjankDeS9UhFa6qy9yF5Jo6LeYskHhU+c7lJXC0
+z523Ts1fpgyd5fFNpkDG2JqlhMb/NvzyR/54B/sr2TPwXoRsFTmLq12QNKLlOI6J
+BNMPTcTGbMwT2zJJCdyncim2S9MeMNFCoz4mDtluv75iOQ8nH4BbkJETO8nAdiUY
+GnpGq5StDnVIuLmRH1k7
+=VlHN
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.0/rc4/apache-flex-sdk-installer-3.0.0-src.tar.gz.md5
==============================================================================
--- dev/flex/installer/3.0/rc4/apache-flex-sdk-installer-3.0.0-src.tar.gz.md5 (added)
+++ dev/flex/installer/3.0/rc4/apache-flex-sdk-installer-3.0.0-src.tar.gz.md5 Tue Mar  4 07:10:33 2014
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-3.0.0-src.tar.gz: 
+91 2E B9 2A 2B 1E 15 81  0D A8 A4 35 33 EC 2C 8C

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

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

Added: dev/flex/installer/3.0/rc4/apache-flex-sdk-installer-3.0.0-src.zip.asc
==============================================================================
--- dev/flex/installer/3.0/rc4/apache-flex-sdk-installer-3.0.0-src.zip.asc (added)
+++ dev/flex/installer/3.0/rc4/apache-flex-sdk-installer-3.0.0-src.zip.asc Tue Mar  4 07:10:33 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTFWtXAAoJEIPgQxzanM/yHJcP/RoNKyg9aEXFSQb6WLyzeyiH
+5ZUM7LMChl6fb6yLWZVaiIQCdgblvixk15MlNhPzqgMswKRk+jF9C5265MXNlKaL
+IpSRGeEzM1IyLm9NtrStpMc2qPvTJVlqs4v60w8bKnc4/4CngyPCdSPcRuxF6pah
+iZgEGpWw9kzC4w4Y8UY5dv+9Tsm1LhRkHxLG6Tm8woRyJ4U/peJSF0hMvIkz0ODN
+gZz4Di2SNVUw1FY3hOiwwlb2et03nM+xDw7SSgmIP8o7/YXpmDR9WjAGaFEX77Ic
+lKXJNy7Ptet94RW86x1sr3lzI0W8VIZXv3c9UHMMDdHKmeiuvDbL2NRE6rEUaD6+
+EZJE7vYnnX0rbWBJ6eeK8ad4bySw6qqpay1aOzJoppz0JCfuOW9TP3xPgFpYhxqq
+bNa8r3DzfJ1SOIzvR/yJMHQCTnT9b5XZzxJqoLC0Xuy6lN52WR/UA0yl3a+xlSLN
+LpPEDjotG2gg3DT/kIk2+oIH+Z7iA7Q+vZMlvcPJLOFQUZacGRfW9TG5YVuMtHG4
+bzOUqqe1yQoRSue2ggp96EbKDGEvWqgYl5q1l3U8TXj/v2Q6VNRSIx/1GX4M7/M2
+6nqmEWsCcNjenHBXxykudcZCfLQUaVphJ8x6DppOY2eGP5fAXu/hanVXKsDXt/Ci
+loBlZeuy0dnCW+XM5E+R
+=s8tF
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.0/rc4/apache-flex-sdk-installer-3.0.0-src.zip.md5
==============================================================================
--- dev/flex/installer/3.0/rc4/apache-flex-sdk-installer-3.0.0-src.zip.md5 (added)
+++ dev/flex/installer/3.0/rc4/apache-flex-sdk-installer-3.0.0-src.zip.md5 Tue Mar  4 07:10:33 2014
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-3.0.0-src.zip: 
+94 B3 6E C9 5B DC 43 84  BA 20 91 14 2B D7 E1 32

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

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

Added: dev/flex/installer/3.0/rc4/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.asc
==============================================================================
--- dev/flex/installer/3.0/rc4/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.asc (added)
+++ dev/flex/installer/3.0/rc4/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.asc Tue Mar  4 07:10:33 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTFWtbAAoJEIPgQxzanM/ypIEQAK9tYRhToCaU/WtCcFq3t9i9
+wDkSVxfsIl48I4vYymlhibeGuX6OlsM2AdYVufdZU5BELx3ZOXl9cL4OS4JQbStA
+V4UB0l9OeGcttII4A2AL95AIlPer4CCLfAB5/4i/O6A5+mNIpt+2fc5sIlCdKLyZ
+RcIUyRpnCFU3LVZuIRkKvPw2W/n8Phndlg4VgUfG2pQizCRKOtM7fZFEnHIjbBZs
+4BSh1VgQf8AK1bLWoH6WIOZt/Y3s/A7GBoSeXRVUDd8lipIYU/uKaBn28IdqnG6m
+5vOxkBVLKQIKlJL330wg3ps3PezH6jrfQshL5a9a9xZ0MMDNUHX75v9BmDLffgC5
+DDALDAtFWtY0irBEBE9/oESEhJLaDVmIbkxDgT/eYfjhBqWznuew+2csshuIZqYu
+DUoIWiFE3i35NFNzH0rJycBvS5+Scng/uDYzq6DJJ20Iw2bR/yU2RH/Uees9mhOa
+DBDgK7Ib3iy381HmR1d6gxvuNa+qE5SlXU1amy+HgAOFiAc/I6lNW5KabqYGdpR8
+AbAZp3Wyzx87OepplOlT9/eNpKkInyZdazlh40v5XRZMQqoCyIupKgbDLiCJge4R
+1RiN2zc5k2NQo67Ep+9RwYCpvHQSO872099Zjz+9tXKiKlabrU0p9qi9WwMPn0JJ
+siC5AQv7wcaqRmcSaUI+
+=H/hN
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.0/rc4/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.md5
==============================================================================
--- dev/flex/installer/3.0/rc4/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.md5 (added)
+++ dev/flex/installer/3.0/rc4/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.md5 Tue Mar  4 07:10:33 2014
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-3.0.0-bin.dmg: 
+56 DC EE A2 0C CF 58 C5  74 4A B3 EF 0F E4 09 22

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

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

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

Added: dev/flex/installer/3.0/rc4/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.asc
==============================================================================
--- dev/flex/installer/3.0/rc4/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.asc (added)
+++ dev/flex/installer/3.0/rc4/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.asc Tue Mar  4 07:10:33 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTFXtrAAoJEIPgQxzanM/y2XQP/j70pJnVjLHblyQDYGXxwnwt
+x+tmam4XbKe8wqJRXxsRyuHKghycrGJn2af/K6f0X7G6hRO9f/cNwA4DNcBMPJ2I
+mpLIpQP4vnKSUFAksRVR1WvLw1Auo6nuM3cnEYnlaEXtsiCHCPxLwcpRlH1efo/n
+0W6iuOiPSKu3HwsiS+ndQ96qwHs/dCQuALHcJ7JU5nfRSuFp7yzCwd4GtDMdCUj6
+WyLlcBfS9ZRB3DNqxcqU/fxMyzwEbgtajh/CreApDZPLX++dc10i6Diu2ROOQqMi
+KOptkG8FY2mSCFJ6vy5wTdHC3O6vmPRhxL87gEwNMJ/zcgG7t3kap2RNiUPYXQNj
+2Y5gwWKUjdr8wIxZXfrvD/v/TG4m3FwosOLY4U35f//vO01vH1TMZkXvuXMTRenu
+o/JPIBNcWRv9ELtRNUvJWhd3AS/7V6fSd83T3C6QGpnvbGTPQ+OMDAD5gygrYTYg
+b6AW/XklEe79uPCKNB2AmAu5q0EwjVoHRvWvamKeArIC9tnlai7AZ5+hN7ilxdoH
+cQEQurF4+S4jY2oTiCeDDhU8e6EZtfRHYs1/zBSEa/M3yL+I0WHqBvlONscKf+Ew
+gXoKqv8OpNx+TpPA+pPXLNVDP35jqYQohU7MYccm6w4hx9gbKa/TnZZjYVr9cUgH
+uG6rJ8ktXL+e60wEJix+
+=+XKY
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.0/rc4/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.md5
==============================================================================
--- dev/flex/installer/3.0/rc4/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.md5 (added)
+++ dev/flex/installer/3.0/rc4/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.md5 Tue Mar  4 07:10:33 2014
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-3.0.0-bin.exe: 
+E1 C3 3D 03 06 05 1B 56  45 AE AD 03 DC 23 B2 F5