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/11 06:07:52 UTC

svn commit: r4617 - in /dev/flex/installer/3.0/rc7: ./ binaries/

Author: aharui
Date: Tue Mar 11 05:07:50 2014
New Revision: 4617

Log:
rc7 of ApacheFlexInstaller 3.0

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

Added: dev/flex/installer/3.0/rc7/READme
==============================================================================
--- dev/flex/installer/3.0/rc7/READme (added)
+++ dev/flex/installer/3.0/rc7/READme Tue Mar 11 05:07:50 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/rc7/READme
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: dev/flex/installer/3.0/rc7/apache-flex-sdk-installer-3.0.0-src.tar.gz.asc
==============================================================================
--- dev/flex/installer/3.0/rc7/apache-flex-sdk-installer-3.0.0-src.tar.gz.asc (added)
+++ dev/flex/installer/3.0/rc7/apache-flex-sdk-installer-3.0.0-src.tar.gz.asc Tue Mar 11 05:07:50 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTHpRWAAoJEIPgQxzanM/yhLMP/3BKz0JmriC9jcdykyJYhAE4
+XWGd7zxskGKz60hK6YJmY5h+jET5L0Sx/e061L+c5pfOJi/LPe9Fg1n28JpLA+R9
+RKR5ooqLlQJayoB5Mn9oeJZDHOLZtFZfyRFS5EFBqBkck5sCO/zj1JdsjqhzV++V
+3Peo9iey9fQyVJnebfdhr5wBmgBsWeOsxvjVrkxABYCP49NSBaZS/yPx2LM0hX5j
+UfoDPTRfYmVq8OFBnsGuxHU4FcaK1cKAZozY6OFLhq1LTlh0zoT/AcEWQGIJP84O
+fuZQsAyMRaGKByf47rzM14k+qgb0fv1DcU3m/r9ypj+aaXy6de48m0AOeOHbO0Xj
+JMX7C0YHRfyHqJnLuDrcj76nSeK9Pbg9f3Zxa3GE1VZHjreT1SWeQEzd/g7RL2q6
+fD3xsz6aZnbzXHqodK1rkLAEItp5xdpSnCIzXwUybtFLRgnptSOnwwKg/fzl41YM
+NpjdQPjAHoFbAuxF/wZvZNHojw78VcC5hO37i2Ard3jYM2t3h3ugyR8Q33yM1dCX
+fb0L/IGtopP47g8YK+oWBfYffeMTzM4vCtpb/0ffQYDZGNNbJxQhY+Bb+S6Ya0Wr
+1rjpGRsF6LpB7d4d6FXjiz6B3vpMVoY/S7gikVCHyj2Ub8GF6vKgvJMkdQ7y6FUe
+ZOBra0YUHGWgb0Di9ns9
+=wDXR
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.0/rc7/apache-flex-sdk-installer-3.0.0-src.tar.gz.md5
==============================================================================
--- dev/flex/installer/3.0/rc7/apache-flex-sdk-installer-3.0.0-src.tar.gz.md5 (added)
+++ dev/flex/installer/3.0/rc7/apache-flex-sdk-installer-3.0.0-src.tar.gz.md5 Tue Mar 11 05:07:50 2014
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-3.0.0-src.tar.gz: 
+08 17 74 B3 84 EF D5 33  94 30 47 9F 20 CC E6 54

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

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

Added: dev/flex/installer/3.0/rc7/apache-flex-sdk-installer-3.0.0-src.zip.asc
==============================================================================
--- dev/flex/installer/3.0/rc7/apache-flex-sdk-installer-3.0.0-src.zip.asc (added)
+++ dev/flex/installer/3.0/rc7/apache-flex-sdk-installer-3.0.0-src.zip.asc Tue Mar 11 05:07:50 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTHpRVAAoJEIPgQxzanM/y4WYQALPAgDDYPS8eBf9ScJ1nPd2e
+lJrcflt3X5EcfQpXL5Lsa7+THyoIxjmqPiVBUKJDinNTxEbEyy0z1s4TNJAi42wS
+Dq0ROkmImN3Fkv1YezxpvMANZyz9sUnAjMEpIkR5W/zw0TiWJQpMNDMwtZHR7kQP
+JSjH1V8dwBJHD12I+7+CqL+nGfH/+mS/a5cmqHJJnCsvrBjoV5izwV3DIPF/uQtJ
+xpy3JMw6n5ysDxtV3sTY7MHfuLO0ohfkkaPzqZKrqGV5Qs2ZA+4tEDHyGlE+BO+r
+gnfO8bzB7EiuxP3LN7db7vJe+GtwH67H25pXRUt2q4DpdNqmHzxB7GsYvOp7asri
+8qtzyeiaTcg1HCNXzJgCQyUBa6yR/anYPXRQUwh3l8joEk3SnpqgXzTEFv22G90g
+meKIUEtzIHoT90P374Op/1gNETh+anRcZaJKfNthd69KcfXQLM/jZr6a7rai3ghA
+gawKQxP9biuL6bFKEVSKxlt/80FAqo4h6TRsdgnwbDVVA5d8QnMWKKz8iKt6uGIZ
+yOp3+m48Xpfr60vWW56Y85UuXkijYVYE3Vx98VY2ckXI8idMomr5P6o/9Iqka5Um
+lWF2bRFE4mqBdQuMWm9NwAltyb5rHkvZLyoVg9fERc8xTfj7a1aGSfcQBSCwaE4B
+iLCst817LQKMtJC7p8WC
+=PRKz
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.0/rc7/apache-flex-sdk-installer-3.0.0-src.zip.md5
==============================================================================
--- dev/flex/installer/3.0/rc7/apache-flex-sdk-installer-3.0.0-src.zip.md5 (added)
+++ dev/flex/installer/3.0/rc7/apache-flex-sdk-installer-3.0.0-src.zip.md5 Tue Mar 11 05:07:50 2014
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-3.0.0-src.zip: 
+0E 89 B6 62 CD CD 0C C5  A5 90 09 FB BA 81 C3 4F

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

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

Added: dev/flex/installer/3.0/rc7/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.asc
==============================================================================
--- dev/flex/installer/3.0/rc7/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.asc (added)
+++ dev/flex/installer/3.0/rc7/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.asc Tue Mar 11 05:07:50 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTHpRYAAoJEIPgQxzanM/ym/EP/R394An30Z7soT8iSlk6d4p7
+fC1JJaEIN6OkpSZMh8zJa/UbSDNV6U02ayDAXaRxOJ7+qG0BRD7k+0IDO62Cvbxy
+o+TVMgyaP2/Wqh5sIjE1itBUJp+JXPRCTkpRfDLYt/JkACtiiUEp6blI5J/ws5SE
+ZFGeJZFyHXJzFTIgml8tt1qb6NLLt0dV8R1XxJTis+Nkj0oal8Y1Z7TWGCi5NuUn
+VV9w+aGXTRc9y0e0folyE9pstzJoHc96ufF88wYTcroQ9EjIUgQc2Kq+phKiiQiR
+V0M4nKZV3qTBvIsIAbLsyIJGtvT848eGCPjoGcgAIwjGNVUIFdDZEcAIBI3V3VU2
+GpJmv89WxD5NyXYkAwiOe3t6bIEuec+ExsJKQfOHOOumA4eJWxcVww3GyHdTGgtS
+RuRbEAWt94J07uIkd6iyqmgNLy6FqGBHWBrfI/zDNdO5RAp+srvePW8cnTNKEpfo
+19vbG05ONh4pN1i0ctI65IcWOvhLuqq1R2uP2iMunHp+ZnD1HRQ03sMAKaYjjYQQ
+9dv4C7LnOkBT5LfdGoJalkbtNrvkL4p5K0Br9yMkUwty0PjmzrBS0lQfzLfSbVHl
+eaq4d1SQz6O9zt29/0z3R4h2I75rDjCDMqo6x0h4tPYaEfG7G9lerqBtl1CMAnDy
+A/bo55llu1Wh8gMHFAf5
+=9oFz
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.0/rc7/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.md5
==============================================================================
--- dev/flex/installer/3.0/rc7/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.md5 (added)
+++ dev/flex/installer/3.0/rc7/binaries/apache-flex-sdk-installer-3.0.0-bin.dmg.md5 Tue Mar 11 05:07:50 2014
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-3.0.0-bin.dmg: 
+2D E4 E2 81 4A 92 2B AF  2C 95 9B A9 02 99 BD 9D

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

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

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

Added: dev/flex/installer/3.0/rc7/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.asc
==============================================================================
--- dev/flex/installer/3.0/rc7/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.asc (added)
+++ dev/flex/installer/3.0/rc7/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.asc Tue Mar 11 05:07:50 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTHpeMAAoJEIPgQxzanM/yt2EP+wfDba/ET72X4fHgcYt/39V3
+sx7HWqldHI+kIGrhVVkaJV0UBPIndKoJ5pPdZjkcmyY3uc0h/n93hgQbY3A/lnUS
+KkmtUtwfjFP+g3IqYJtRe8Te2bP5PYf/JvZtw5KoMtbqaAyOr4uN39bTpynxuPe4
+kfGd8U+ePVrWt7DcGQPl21aVDoHPJMYGlVI4UUyJ+JENu3fsKOB1XPEC9VXcEXkx
+X6yKkTnf9tjUyRLdu0W6/NQyD4vMlEx7BPN8gCv4SKZmJO8knf6aSfhqCqm0j6g+
+0R+TrukdVGXI3bGKKRK3IO051tV5Aj5jqhbqIiLmNytSMuR8kS0Ztaslzg98OtHF
+B+N369RhzmJ8liSDXFP21wc/xCXQ2v9IfBPHFdcANt03nnjUUMHxTO+xtZi0Xoa0
+AGKTYghdm5BgS0fLkJPBLM/Inlj7gWZRcGHgr8NFyVfuPavt9JjGJUgjNsvoEgfG
+5W+dHufEFF4sBnEbSloDWQ6TqiTKYmfNghmmraUtN5nqPXJxpPUFEBCmkH1gz4Vj
+RTDyuaBvnpZ+XAuFwokcHv8LisEz5bno5ZbnpJaLWOhLdCWkMFwTpLkPTWQRFdT4
+InX7rGMa3JdMBZ0ERD5edtpttAGxIW3e9OT+C6ee4NrNsnjCuSTvE/Q5BFN5Rrew
+SJdO67kFFqveOxvOVa0A
+=sN9S
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.0/rc7/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.md5
==============================================================================
--- dev/flex/installer/3.0/rc7/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.md5 (added)
+++ dev/flex/installer/3.0/rc7/binaries/apache-flex-sdk-installer-3.0.0-bin.exe.md5 Tue Mar 11 05:07:50 2014
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-3.0.0-bin.exe: 
+21 6F 06 1C 8D 3A FB 70  E8 18 36 A4 9A 92 92 25