Author: fthomas
Date: Thu Mar 14 07:50:02 2013
New Revision: 1556

Log:
First upload of the Apache Flex Installer 2.5 RC2 for Windows

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

Added: dev/flex/installer/2.5/RC2/binaries/READme
==============================================================================
--- dev/flex/installer/2.5/RC2/binaries/READme (added)
+++ dev/flex/installer/2.5/RC2/binaries/READme Thu Mar 14 07:50:02 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/RC2/binaries/READme
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: 
dev/flex/installer/2.5/RC2/binaries/apache-flex-sdk-installer-2.5.0-bin.exe.asc
==============================================================================
--- 
dev/flex/installer/2.5/RC2/binaries/apache-flex-sdk-installer-2.5.0-bin.exe.asc 
(added)
+++ 
dev/flex/installer/2.5/RC2/binaries/apache-flex-sdk-installer-2.5.0-bin.exe.asc 
Thu Mar 14 07:50:02 2013
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.17 (MingW32)
+
+iQIcBAABAgAGBQJRQX+5AAoJEOs8MQlFi8xyhfwP/R3FV959OsSXclVQtLZQOrGC
+exp1oxHAD2jNfwrsihk2G9wFoxdw8U2cQabRiVkldi+3a6UCAYSvk0dP+vnQ5jOL
+8Zba8eEt5Za6QURp84/FRcW4xFAPsvguGAl3/aZ5E0b8AYgwaAE3GQhTT7cyRd79
+JYN2MqDEQQ53WFSFk3/fvBwc91uIuUZUw0G/CjlXLOz+I51FlUS5t9i68rFCpbUm
+6zn0fcS8XVfPD0+7U6ctQvA9cz+dIBuk9nf4Adr33bf4YAYqkVUv98ocGVUkkQy1
+E/UYcg05Fc6de/jw1+CwyDta8MxswvGBjnGcXP87aYTlPsA3kDN5xwPxHXEjEom7
++e8cO0AsehtkCu6U8Ok41V1yXB7BT9gnxvWuFxT+EKJMOsCvEHCtlo9pYFisqpPe
+mDSKYlaJa2Vww2yD4mpFCyzpWn01rfaN8JIzqBsYsWEtM5XuFmfQamnEE4Iy7xxd
+oQWTKDxvGaHflkBNHqtGHH5gqaKGwsjEaQRAzDNcY5eNCGv5G0WeJ83HtWAA4pLC
+6P3k3i8hthAs9aCUG/VokYUCVH1x73kxvS4gcnUCKE0gYGM6biu/ZLpUSbaPdvIy
+wNGOvTY+OL005XWfqkvZErIOTMkHN8cZoPllX1a+takI8lrTuNPxSqkWvir0D6tj
+2zQ9ZSxLWF9bCSN2IlaB
+=9L0l
+-----END PGP SIGNATURE-----

Added: 
dev/flex/installer/2.5/RC2/binaries/apache-flex-sdk-installer-2.5.0-bin.exe.md5
==============================================================================
--- 
dev/flex/installer/2.5/RC2/binaries/apache-flex-sdk-installer-2.5.0-bin.exe.md5 
(added)
+++ 
dev/flex/installer/2.5/RC2/binaries/apache-flex-sdk-installer-2.5.0-bin.exe.md5 
Thu Mar 14 07:50:02 2013
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-2.5.0-bin.exe: 
+8E 66 F5 B0 F6 48 EA 58  0E B1 F4 91 98 C0 CE CE

Added: dev/flex/installer/2.5/RC2/sources/READme
==============================================================================
--- dev/flex/installer/2.5/RC2/sources/READme (added)
+++ dev/flex/installer/2.5/RC2/sources/READme Thu Mar 14 07:50:02 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/RC2/sources/READme
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: 
dev/flex/installer/2.5/RC2/sources/apache-flex-sdk-installer-2.5.0-src.tar.gz.asc
==============================================================================
--- 
dev/flex/installer/2.5/RC2/sources/apache-flex-sdk-installer-2.5.0-src.tar.gz.asc
 (added)
+++ 
dev/flex/installer/2.5/RC2/sources/apache-flex-sdk-installer-2.5.0-src.tar.gz.asc
 Thu Mar 14 07:50:02 2013
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.17 (MingW32)
+
+iQIcBAABAgAGBQJRQX+4AAoJEOs8MQlFi8xyvcsP/jzNeFLtKhaYjBEinty4zNMF
+E4Agwgo+hl6zzusitSd9pAClKrX5nX8KbfyI9jyfsJsPhm4GudFNxnE/WBLORcj3
+eBv3tFUiXD5ESNNvI4/hU12i5P6IeRbMQtPTSQzbrBboBWNO77NqZ9+SMPUAyo08
+r8O9PcXDSBf/CxBNZ5ECRKx41CWmYYCM9T6NfI8yFAmGfh5b2myhUtKlTcMVzqu6
+Rue3pvLowaCf7R76dqcXd7XHD+Fx/5+UdxcT0N37atSofTmc/144Sv4gq3qjGmjq
+9KbiMSmXNtw4hgulvaSQfzWfVdTYG4lWR0XAAWTjJvYvFiVm5czr3lsJsQ+7x1dZ
+zHray3mFBPudFl9sVqF0o1vCFvUDp9wkAc8j7rjMLDgeaSjErymvFRK8/BMqZbQS
+s1DdWH0LNecORaXGvYtEmWayEQjCli6EvQOABkyuaTalGN2yjrPiTMaXMP8IwmVp
+4+6kA1T5YkWDnoW3Q3VhHY0A0vo29IHzjPyl7gkrjR1fhyBMBCBhtiVumxfa2Gjp
+49HErGEOuwJcMgpJGnnCGzY0TgKkygvyAqo2XXnwPEYELF6cT2tOhRSEFM5vJdDm
+Q5Hz+A2gtna/8WvVhm5CZSqmQ23XbvcMcqctcFsl9UY7oHUs5V4lVdb2yxhjTbrh
+3BT1tmtA6M6tMzNNy6D4
+=KoQi
+-----END PGP SIGNATURE-----

Added: 
dev/flex/installer/2.5/RC2/sources/apache-flex-sdk-installer-2.5.0-src.tar.gz.md5
==============================================================================
--- 
dev/flex/installer/2.5/RC2/sources/apache-flex-sdk-installer-2.5.0-src.tar.gz.md5
 (added)
+++ 
dev/flex/installer/2.5/RC2/sources/apache-flex-sdk-installer-2.5.0-src.tar.gz.md5
 Thu Mar 14 07:50:02 2013
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-2.5.0-src.tar.gz: 
+4C B3 16 18 B1 3C B5 72  09 46 E8 A2 7A ED CE 36

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

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

Added: 
dev/flex/installer/2.5/RC2/sources/apache-flex-sdk-installer-2.5.0-src.zip.asc
==============================================================================
--- 
dev/flex/installer/2.5/RC2/sources/apache-flex-sdk-installer-2.5.0-src.zip.asc 
(added)
+++ 
dev/flex/installer/2.5/RC2/sources/apache-flex-sdk-installer-2.5.0-src.zip.asc 
Thu Mar 14 07:50:02 2013
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.17 (MingW32)
+
+iQIcBAABAgAGBQJRQX+2AAoJEOs8MQlFi8xy7fMP/2vNsuINHt/sdd2NtjOFuruH
+JoJkksArknMjDK7fuedW5GCV0dE+8ta0pa70Qz+mvFwzHl1IVtyMhhq0291FOoAZ
+LMnOSX37j+fOpXHzgkM9SV6lABjzFVAB7NSbu5FTqRb1lZ/Ecg+BzOq6y1qTGJEl
+wfNNU3BlxcOVWpR6dTHnaBHmxW/E03mDuNKSue796jHw7iaSYFLfUtDrxSYSD75p
+KgahS+Tj6IZGRxfXshy++gjkWltANXOwhBrpYOZDpg9BWwYQhF7+mJj57wjyPvNB
+Kb0l698FytvsxmbkzhqH21ynirjLdm8tWgwl7wnQ5hlhLF9D1yYI/TmR7wHvHtaW
+poHys+Lp2bW0M69oX/eCIrw5bXPaxkT+rh5YtbIfepgy/ldOXlh41A5egOBbH5Km
+Ttsfsd8orFfGUJCDKRtkqDCKDbDKKda7Oo1lHAhS127RNhUnB7xGddXRb5y1eimw
+C4envTPNmkE2i06qf4Yp+i5DQ/UtV/ru2eAJxK9TSKDXzK/2Ajge38WMom8F05ZI
+cN6ToDTENbN3MPus/Mj2K4+G6fMNzuavJrgTHQnVFnu5QQqlWQIH9Rhk1NJ5u+D6
+ZDXdu9PnKz0MG8CCekN0bnSKLQetXf3whgI8/17ZCussq7hGU9/RpGY2y7LiKKDf
+ESBrf0tYqCXveT6HuWW4
+=QQiO
+-----END PGP SIGNATURE-----

Added: 
dev/flex/installer/2.5/RC2/sources/apache-flex-sdk-installer-2.5.0-src.zip.md5
==============================================================================
--- 
dev/flex/installer/2.5/RC2/sources/apache-flex-sdk-installer-2.5.0-src.zip.md5 
(added)
+++ 
dev/flex/installer/2.5/RC2/sources/apache-flex-sdk-installer-2.5.0-src.zip.md5 
Thu Mar 14 07:50:02 2013
@@ -0,0 +1,2 @@
+release/apache-flex-sdk-installer-2.5.0-src.zip: 
+84 E7 3E BA 55 8F C9 EC  3C 76 C2 80 8C 2D 46 67


Reply via email to