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/06/11 08:23:55 UTC

svn commit: r5557 - in /dev/flex/installer/3.1/rc2: ./ binaries/

Author: aharui
Date: Wed Jun 11 06:23:54 2014
New Revision: 5557

Log:
rc2 of installer 3.1

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

Added: dev/flex/installer/3.1/rc2/READme
==============================================================================
--- dev/flex/installer/3.1/rc2/READme (added)
+++ dev/flex/installer/3.1/rc2/READme Wed Jun 11 06:23:54 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.1 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.1/rc2/READme
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.tar.gz.asc
==============================================================================
--- dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.tar.gz.asc (added)
+++ dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.tar.gz.asc Wed Jun 11 06:23:54 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTl+hDAAoJEIPgQxzanM/yXWUP/A3YgLqO6+Bn4yvC15zMN8dy
+Imh6d4GnRy9Qs7lhgaHG0JkbPLOOsImcw/iRVVyfNDI0GjbHkQ6OP0VstMI8CGWo
+JM7chn35Uzg3USbCAHpxKR2NDVMh26c0pqY4iekm1+j2T517zD8ASLssR1W/P9gE
+zHV1/EiLvLWj1Zym4gEDJOTh5QbvWI+CavBCAliwFtN+pyrTRavxCMXA/E8BCwK5
+9FOS/3dU6FzvNYb3tXhzfs/K1lEwKs8qSUOQQrYjGZ3CvYx0sg4AiWIUxEyBtmyZ
+SlaVaF5VE1RgXHxR0pAX9HpXc07mtlHY/7WOSq03/PaLA3AjT6LTMD8zc70u8SDp
+N7rULZhn8gMNt4pLtOoJIPHw7J3coNISMVSsT0F5m4Y1+nan+i45kBf/Hs6/OXWO
+sCHl5g8/pIspFbEfPS9NjzY4jg2pM0n+awbmArdGpDS6VEJvD2HEezNtyK9z4r+a
+0LDtpZbI1hPCPc1WdBL9HAFelGwoQvYAQXLE3UH5gz5FY+rKHWDdKodYqo09EvF/
+JNIoZIK90GafjCZBPOf7+bAXAJUlU6Vy/OD484Q6DAJ8KqcQ6g1o0RSRuVl7kd8S
+0UhuEIWmJ91o6dBL7eesMPFM0vm2145fSt2r3Pz7dSLIDrlpLQnhPJRWXP9XK8BF
+xfoF6t4egmcZWlKwU28I
+=nZgg
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.tar.gz.md5
==============================================================================
--- dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.tar.gz.md5 (added)
+++ dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.tar.gz.md5 Wed Jun 11 06:23:54 2014
@@ -0,0 +1 @@
+f7c2532694dd347ccd35f8aba8e5a2d0

Added: dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.zip.asc
==============================================================================
--- dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.zip.asc (added)
+++ dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.zip.asc Wed Jun 11 06:23:54 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTl+hBAAoJEIPgQxzanM/yASEQAMb1i7GcTUQC1Qfm9MZ7T+UR
+a12+h57AS3rVydbpvE9ifcgkPutCJjqJ40mnakor++OYDWvkepmHGamsFN+7kQDb
+e+LPBtvyMZM17F3YsaVy5V3DZShsSj113niQTWl9JGbvlyBwSldyJUV67KQS1blp
+a6f6sNFcFEqWYz/jZCChHCZKvt/hZwxQwcCn9diRaevipP1+ioAE6fw9Y5IiRT9w
+tfKjI9mcTnhSnBImyoG8eSzoB5cXrRjGNRXa815nbADTYyhb8l1ZgQ4Baed0UeMs
+8MD85bwHdWGg3OmyJIKBxouMcAp0KbaZRC+Scur2XrM0rzIGzu5Wmoq04U6GFmVu
+uJv9vGGYpPVS4SZwa0FnL9QYG3Sn9lfWQK0QtIfJCVaLhaoUzzrIBeSMUfGftLS1
+9gJoMjj+yNiKvfgWnPKAsvl1/zFhP2y/W3BF04sHotXoXkyRHvNpkSVICAVhw7EL
+wEZdsHz3C0DCM+GaDSJ+aC1TMHOj65JmdvWemXqjp10Iso4yRPNtVe8FMSvx+jjL
+VswgGkZdRcB+F3u4ZlgsyGU/geahuMc7kdWSE2Uq3ZDoYJCZNuf90dMd9qiCeIY3
+32MyXvrRW52j0DrNabsgsc3wBGFxmQ4DO7O+d/7Oec9gdFpLma3m8SeeOlrLba2z
+EHo2JoWk9D3wZPqwzRo0
+=QQyM
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.zip.md5
==============================================================================
--- dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.zip.md5 (added)
+++ dev/flex/installer/3.1/rc2/apache-flex-sdk-installer-3.1.0-src.zip.md5 Wed Jun 11 06:23:54 2014
@@ -0,0 +1 @@
+e52d3657855b4a3a5c654a96966e889c

Added: dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.dmg
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.dmg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.dmg.asc
==============================================================================
--- dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.dmg.asc (added)
+++ dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.dmg.asc Wed Jun 11 06:23:54 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTl+hEAAoJEIPgQxzanM/yjqYP/jj4VrjOgu0v2BsMPGXiXkzt
+YhVqpNz/lHLVZjfIyrKU+GP7oTpGtcX81gUF45YhcQvmF2mvJhgVwJ+DfWX7eIqN
+85BVc5zgJnYthyZl//OjbGpba6eP8ByVxwNBdKsjVKvmMB4ypEU3/Ops/g0YXqK2
+j0gzxQ4xlQ9j1aB+4UFnQgvjnbNTGSXH+PC65+iBofYnzqLGVGamaDtwTTJOVLbJ
+65ynBBDqnxKVBEOEcv8sdWOXBsT9JSN+9VElRmma9KlOh86wtmyN15K4buVflG3v
+Yz3FEd5EqftrpU1pQk2NtbmW6MVRdDkYhhaeBm6LecMZoxjCzh1tJc21nOMpdVzw
+IV3IlC1At2mlXp3+YxYbrUNRAvXiYAk7D074VYi4XDvru9gvrIPawMwBOL1N0JF0
+KoJX0JFr4C/CMekfk3IHF7qILUdh74q4O//TmhHWbha5QcTwnkmlAbcDt3RGznfN
+/O7kH1rf2Fm2uJJt2hTSxFcu/yFS/biO0zBd6zDz0ewQX7TBwfv0lZT6kLSCX+nj
+ntmULCBKUnC7VleO1mC+7DEr5tc8Hz70G5IIDNR2rSzNMrqb3wGw4r0qjKpTGalF
+gIC3ZLgcVOvQPr2u4j3hkWHBzGW5sNkfbHbm9Dkkrgek/D+jiTKkkOtGY3NVYp8A
+VylyicADERCk8azKTuMw
+=uDvd
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.dmg.md5
==============================================================================
--- dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.dmg.md5 (added)
+++ dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.dmg.md5 Wed Jun 11 06:23:54 2014
@@ -0,0 +1 @@
+4960cefef2de417c9a89c60387fae4d7

Added: dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.exe
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.exe
------------------------------------------------------------------------------
    svn:executable = *

Propchange: dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.exe
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.exe.asc
==============================================================================
--- dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.exe.asc (added)
+++ dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.exe.asc Wed Jun 11 06:23:54 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.18 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABAgAGBQJTl/QXAAoJEIPgQxzanM/yWYsP/ifgoePc6Xih1Opizu9d5Km9
+KkfW7foHQ+d4DI0yOGBdqw9yw4WPNOZdGbc3jnQnV80Q1jyJuAe85WNEi9YtKcp0
+cWKrl8c7ITKLMWHiUXtIqT9od6hkYGQcSq2Hv8mAwX7FXht0afQcuyeTnZNhBZ2E
+XDbZXJpr3dHN20dTXAoel+Nv59CPlvRbYs7QdjA9JytcQqiCpqOTlueC5CB0xEAg
+7svqcIOPPmjT49htaK5u4b6+7mmoMfzc18+MWvtCwi+QgZ6dnJwHvOB7UmO0g0zw
+wOiVoKUme0zZCESYWuUXpJlef7TZtehyRr1UyY/sn621TNZBRzj3o40L3ek0xMnQ
+ry1HaxvUH/clcxT4CUVPNP3QRUbC8AP/jCAuTtqdFShpw/63JVF0LpxFr58Bd0AW
+MBcLE1JAlkmn07pLskdTB+tHofPMPR6lFZvDqbpwlShlNaSTUUoC9hDsqaCiQyb+
+WLJQzGUPpZ7U/W8PTuA+ATw9QeEDEcPg484Bldc9HP9PuJrnsbg7WhtFgjaXxkga
+RLur/ZrYHe1KnO3hUIlnEqjirMfRtJkghM6hkG/R6EPFQ3XA6zPoH0HtsRWWXuJA
+XBQC2y9+ZdRHShgk87eARQMjC75yx+QsrOx30dZmHRr3uEd6zJgCqFOzp3EAObhG
+6vT/ekdn5MXz/I2b0v0c
+=PJG6
+-----END PGP SIGNATURE-----

Added: dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.exe.md5
==============================================================================
--- dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.exe.md5 (added)
+++ dev/flex/installer/3.1/rc2/binaries/apache-flex-sdk-installer-3.1.0-bin.exe.md5 Wed Jun 11 06:23:54 2014
@@ -0,0 +1 @@
+689ec906f9ed306de44389b377869724