Author: fthomas
Date: Fri Mar 15 20:04:16 2013
New Revision: 1565

Log:
Apache Flex Installer RC3 v.2.5.2

Added:
    dev/flex/installer/2.5/RC3/
    dev/flex/installer/2.5/RC3/binaries/
    dev/flex/installer/2.5/RC3/binaries/READme   (with props)
    dev/flex/installer/2.5/RC3/binaries/apache-flex-sdk-installer-2.5.2-bin.exe 
  (with props)
    
dev/flex/installer/2.5/RC3/binaries/apache-flex-sdk-installer-2.5.2-bin.exe.asc
    
dev/flex/installer/2.5/RC3/binaries/apache-flex-sdk-installer-2.5.2-bin.exe.md5
    dev/flex/installer/2.5/RC3/sources/
    dev/flex/installer/2.5/RC3/sources/READme   (with props)
    
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.tar.gz   
(with props)
    
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.tar.gz.asc
    
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.tar.gz.md5
    dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.zip  
 (with props)
    
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.zip.asc
    
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.zip.md5

Added: dev/flex/installer/2.5/RC3/binaries/READme
==============================================================================
--- dev/flex/installer/2.5/RC3/binaries/READme (added)
+++ dev/flex/installer/2.5/RC3/binaries/READme Fri Mar 15 20:04:16 2013
@@ -0,0 +1,109 @@
+<!--
+
+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, single-click 
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
+ 
+       All the file names and urls of the downloaded files are available in 
+           installer/src/sdk-installer-config-2.0.xml. 
+       When the dependencies file names or urls change in future, update the 
+       sdk-installer-config-2.0.xml to ensure that the application works 
correctly.  
+
+- The application uses http://flex.apache.org/single-mirror-url.cgi to 
determine
+  the preferred mirror url to download Apache Flex SDK binary from.
+  
+- Once the Apache Flex SDK binary file 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 file is a valid 
Apache release and 
+       proceed to unzip the file.  
+       
+- The Adobe AIR SDK will be downloaded and the relevant files are copied to 
the required 
+  locations.
+  
+- 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.0 version, by default, Apache Flex SDK Installer 2.0 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/sdk-installer-config-2.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>
+       
+==========================================================================================
+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' directory in the root.
+            
+2.  In the installer directory, run:
+        ant build [-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.
+               
+2.  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' directory 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.  
\ No newline at end of file

Propchange: dev/flex/installer/2.5/RC3/binaries/READme
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
dev/flex/installer/2.5/RC3/binaries/apache-flex-sdk-installer-2.5.2-bin.exe
==============================================================================
Binary file - no diff available.

Propchange: 
dev/flex/installer/2.5/RC3/binaries/apache-flex-sdk-installer-2.5.2-bin.exe
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
dev/flex/installer/2.5/RC3/binaries/apache-flex-sdk-installer-2.5.2-bin.exe.asc
==============================================================================
--- 
dev/flex/installer/2.5/RC3/binaries/apache-flex-sdk-installer-2.5.2-bin.exe.asc 
(added)
+++ 
dev/flex/installer/2.5/RC3/binaries/apache-flex-sdk-installer-2.5.2-bin.exe.asc 
Fri Mar 15 20:04:16 2013
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.17 (MingW32)
+
+iQIcBAABAgAGBQJRQ3vPAAoJEOs8MQlFi8xyKE0QAIdiDYL74OMAGUnMOII/L/rx
+tIyBhxTjG8iTMnBEsJKyaVlh9QQV0tuYQhh5x5ZABlwSQRjSPqHPJZb2rWnAEc7r
+EmOdWjKutyDQXv+E6QGrAh8Vw7rEo2uFBpvCkqlS/dE4WeTEI0aCVJNo+ekPOv8C
+Y/rikNpUJYx8oFiX6hBdRL4MK8ehOtofe+uu3woWvDTEaSrf4GLmVBms7MNCW+ZH
+T40SjeYU+3Wij3Z7VpRyhLpSR8Uj/UcWJL9F1wDhAw6dqvYeHUA7fmI/UzVWfd2a
+TcVpLFa3BEKEmkZ7X8W4oyzIXvhEahAAzlOBPR6lsKsuOJiDFGLvHHP7ec61YKjb
+vwxXe0+ChO+ZW2FFEUv+9T6DtIQgzlvxLsCVDdKfEaYsyUyokM2hg4DlrDDbyq2M
+KMFXA4eIZ9XchnKqQOI6c79EOxhPb74qJkz2t7PVDI89nLN8wjw6cz81DvpRZ3ck
+YXuW32d/FKfH+XscZO1gKiySEfo7bqe09p9cpa4zsT83zWzbKb1CMtZetUH2BGzT
+ykwf87oCS+PPSvJUJxi3d+pGxhtyc+NsK+vCXvkHg3TqJp2c5m/myMY2FE9VDxhV
+aeoe3yXjlwAXlV5OR7Xn8VRicfXTCFVnuHqd8ss4btpSNT0hoFTHKF82fh/I+g5g
+KMuV652ig8LL+d4TpM2s
+=cdw9
+-----END PGP SIGNATURE-----

Added: 
dev/flex/installer/2.5/RC3/binaries/apache-flex-sdk-installer-2.5.2-bin.exe.md5
==============================================================================
--- 
dev/flex/installer/2.5/RC3/binaries/apache-flex-sdk-installer-2.5.2-bin.exe.md5 
(added)
+++ 
dev/flex/installer/2.5/RC3/binaries/apache-flex-sdk-installer-2.5.2-bin.exe.md5 
Fri Mar 15 20:04:16 2013
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-2.5.2-bin.exe: 
+6F 8B 20 39 6D 63 52 4E  10 3D DF 1D 9D BD 38 4C

Added: dev/flex/installer/2.5/RC3/sources/READme
==============================================================================
--- dev/flex/installer/2.5/RC3/sources/READme (added)
+++ dev/flex/installer/2.5/RC3/sources/READme Fri Mar 15 20:04:16 2013
@@ -0,0 +1,109 @@
+<!--
+
+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, single-click 
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
+ 
+       All the file names and urls of the downloaded files are available in 
+           installer/src/sdk-installer-config-2.0.xml. 
+       When the dependencies file names or urls change in future, update the 
+       sdk-installer-config-2.0.xml to ensure that the application works 
correctly.  
+
+- The application uses http://flex.apache.org/single-mirror-url.cgi to 
determine
+  the preferred mirror url to download Apache Flex SDK binary from.
+  
+- Once the Apache Flex SDK binary file 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 file is a valid 
Apache release and 
+       proceed to unzip the file.  
+       
+- The Adobe AIR SDK will be downloaded and the relevant files are copied to 
the required 
+  locations.
+  
+- 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.0 version, by default, Apache Flex SDK Installer 2.0 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/sdk-installer-config-2.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>
+       
+==========================================================================================
+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' directory in the root.
+            
+2.  In the installer directory, run:
+        ant build [-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.
+               
+2.  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' directory 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.  
\ No newline at end of file

Propchange: dev/flex/installer/2.5/RC3/sources/READme
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.tar.gz.asc
==============================================================================
--- 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.tar.gz.asc
 (added)
+++ 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.tar.gz.asc
 Fri Mar 15 20:04:16 2013
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.17 (MingW32)
+
+iQIcBAABAgAGBQJRQ3vNAAoJEOs8MQlFi8xy5sEP/jH5a74U6zsqLdH7rySMa1MO
+/yP0Dfp06NvetTK7j7hQMYE5T3dfjPzYpq55YCoi/iRW8hfQMugcCXaG6AkjlgYV
+9L4oRLKWYpGsHpW7laD1xZegDsfnPHNYAKZ5qJJalJwqHVXuKoRuMhkaZQRkoXxN
+ZOyvVvd24mMW9djSHWQEvXpD1YR2M1u2A8+S00oHiCTju+IZMMtN4eaYLMBsCxw9
+dveU3LGNmcP2M17bVXxCJhlfrM8TqaYyundKUuGwNOPpr+yKAalbMCPSMxr6xHV2
+KBdaSttbSONqmPdNAE7mO9NftEfu+qnE90eMiIwqrnelq7e2YnUw2+7gzOdOXRbH
+319gDeX8dL++Xv8HMSG4aIu5oJLGHGVz/QTV48/VuGskS9ax6hYZKoSLeoFJ/tVm
+FWwMVXSgZS3i7KvaPhFmxXE/QHFfv95YD+UKfS95NIJ/jXcLWg0mXEH7hf2Pl+aR
+SBRPLoWetilkI9NX5z/c8wjTFq61vQimEczeu4lDk6+gR4vMnHxQHyaf0i7KEhzu
+hnstqVxG5DARzK9KxxKBSK5KBmb+ZoIEyS6JWqn7TOE2UK2sSWOgZsamBQFAC12d
+h7XkU5yUxBKu4N0KNS3jHvlqK2788+kzZhVJOS0jxVdvpBUWHaRKaaC1ivYoE2t4
+n0Q0aGT+Mp68+uC9ieaX
+=mKSe
+-----END PGP SIGNATURE-----

Added: 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.tar.gz.md5
==============================================================================
--- 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.tar.gz.md5
 (added)
+++ 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.tar.gz.md5
 Fri Mar 15 20:04:16 2013
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-2.5.2-src.tar.gz: 
+18 D5 E3 27 8A 93 EE 96  E9 A2 DE D0 6E 09 32 C1

Added: 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.zip
==============================================================================
Binary file - no diff available.

Propchange: 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.zip.asc
==============================================================================
--- 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.zip.asc 
(added)
+++ 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.zip.asc 
Fri Mar 15 20:04:16 2013
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.17 (MingW32)
+
+iQIcBAABAgAGBQJRQ3vLAAoJEOs8MQlFi8xygPIP/ifo2pcfEEecW4zwLJmg5AM2
+knl7e1O9Jxuwa77Vkgwt0OkGOEPQkXa38hjI24ueBZPbZkhHzNxZLdYfshomSbnI
+JLYhE8HHsMwzs9xGCtBKBhYQbG7aNMA13YhPfQdkdh1gD7ZdHVBhGHXc5a38HpJo
+PxWc6cuJ/HkgAQ60b5FE81KI3SeA5zT4m9XWJ6a+1DXp4nIZFN7cuFjwNzamaOCO
+SpO51bELrk9B7Tt9ch04b60roT+OoBdAXRWNtD9vgFgxmMuCFINmcus3Xcusk6Ag
+aAYWlVr4tsZSYjjZFRIEGHgWitRXbQTwQW8jRuVobh4Kz7ymRLJcKzUTYmQ2Yuik
+mRzb+mV8dkwoMVg5E+x+Idoiz18YX7kpHhjZXmVwbkM/jnUuRRdkMUgwfp0+ZpDk
+CX04inPVVFMbt13EQ3d6c+k1yrZu8Yyiz5fPq6eBy0bazPIQXIc1VAXaZ0V/sJwC
+kK1/9ECHFndrr9OvqE/SdMRnUQ3J0Urmiud3THAokyy0sO9OoFpZX7UcCga20qkZ
+drcO0hNXz/j6L8WU9iNTBc2DsdTl++QUQWp7r3T1jYsqejLDnb20RppcQlCHbiP4
+yAy2dvm7TQrIbAsfY9qXBvZvh4T8M1uaLKrCTLBYVDyFd/TYdffUEl03RoiMIROs
+rOAWN0CdyIQcT4/yQyyM
+=Z6L1
+-----END PGP SIGNATURE-----

Added: 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.zip.md5
==============================================================================
--- 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.zip.md5 
(added)
+++ 
dev/flex/installer/2.5/RC3/sources/apache-flex-sdk-installer-2.5.2-src.zip.md5 
Fri Mar 15 20:04:16 2013
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-2.5.2-src.zip: 
+E4 4A 69 E9 89 8C 45 43  15 A4 62 22 68 82 52 06


Reply via email to