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 2015/04/10 02:03:34 UTC

[1/2] git commit: [flex-utilities] [refs/heads/develop] - add comment so folks don't remove force-linking trick

Repository: flex-utilities
Updated Branches:
  refs/heads/develop 29e04b0bc -> d1de19d7e


add comment so folks don't remove force-linking trick


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/66e127eb
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/66e127eb
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/66e127eb

Branch: refs/heads/develop
Commit: 66e127ebf41988782ccc570ec4be7a54063d2dba
Parents: 29e04b0
Author: Alex Harui <ah...@apache.org>
Authored: Thu Apr 9 16:24:00 2015 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Thu Apr 9 16:24:00 2015 -0700

----------------------------------------------------------------------
 installer/src/InstallApacheFlex.mxml | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/66e127eb/installer/src/InstallApacheFlex.mxml
----------------------------------------------------------------------
diff --git a/installer/src/InstallApacheFlex.mxml b/installer/src/InstallApacheFlex.mxml
index 341f060..0fd98ac 100644
--- a/installer/src/InstallApacheFlex.mxml
+++ b/installer/src/InstallApacheFlex.mxml
@@ -114,6 +114,10 @@ variables are not required because the locations of these pieces are known.
          import mx.rpc.http.HTTPService;
          import mx.utils.StringUtil;
 
+         // This force-links all of the ant task handlers into the Installer.
+         // The Installer doesn't use most of them directly but some script
+         // it runs might.
+         import AntClasses; AntClasses;
          import org.apache.flex.ant.Ant;
          import org.apache.flex.packageflexsdk.model.InstallerComponentVO;
          import org.apache.flex.packageflexsdk.model.OS;


[2/2] git commit: [flex-utilities] [refs/heads/develop] - use a different url for the zip swc until we find a better url

Posted by ah...@apache.org.
use a different url for the zip swc until we find a better url


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/d1de19d7
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/d1de19d7
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/d1de19d7

Branch: refs/heads/develop
Commit: d1de19d7e91991889968f49a00035529c37f1fdd
Parents: 66e127e
Author: Alex Harui <ah...@apache.org>
Authored: Thu Apr 9 17:03:25 2015 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Thu Apr 9 17:03:25 2015 -0700

----------------------------------------------------------------------
 installer/build.xml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/d1de19d7/installer/build.xml
----------------------------------------------------------------------
diff --git a/installer/build.xml b/installer/build.xml
index 6d76076..24288dc 100644
--- a/installer/build.xml
+++ b/installer/build.xml
@@ -68,6 +68,10 @@
     <property name="binary.kit" value="${kit.prefix}-bin"/>
     <property name="LOCAL_CONFIG_FILE" value="${basedir}/src/installer/sdk-installer-config-4.0.xml" />
 
+    <!--<property name="commons.zip" value="http://projects.yoolab.org/maven/content/repositories/releases/org/as3commons/as3commons-zip/1.0.0-alpha.1/as3commons-zip-1.0.0-alpha.1.swc" />-->
+    <!-- use this one for now until we find a better source -->
+    <property name="commons.zip" value="https://github.com/bigosmallm/MakeApacheFlexForFlashBuilder/blob/master/libs/as3commons-zip-1.0.0-alpha.1.swc?raw=true" />
+    
     <!--
         Properties are immutable so value frozen first time property is set.
         If FLEX_HOME is not set with -DFLEX_HOME=/path/to/flex/sdk on the ant command line
@@ -275,10 +279,11 @@
     <target name="get-as3commons.swc" depends="check-as3commons.swc" unless="as3commons.swc.present"
         description="Download as3commons.swc and fail if checksum mismatch.">
         <mkdir dir="${LIBRARY_DIR}"/>
-        <get src="http://projects.yoolab.org/maven/content/repositories/releases/org/as3commons/as3commons-zip/1.0.0-alpha.1/as3commons-zip-1.0.0-alpha.1.swc"
+        <get src="${commons.zip}"
             dest="${LIBRARY_DIR}/as3commons-zip-1.0.0-alpha.1.swc"
             verbose="true"/>
-        <get src="http://projects.yoolab.org/maven/content/repositories/releases/org/as3commons/as3commons-zip/1.0.0-alpha.1/as3commons-zip-1.0.0-alpha.1.swc.md5"
+        <!-- skip checksum until we find a valid file
+        <get src="${commons.zip}.md5"
             dest="${LIBRARY_DIR}/as3commons-zip-1.0.0-alpha.1.swc.md5"
             verbose="true"/>
         <checksum file="${LIBRARY_DIR}/as3commons-zip-1.0.0-alpha.1.swc" algorithm="md5" verifyProperty="isMD5ok"/>
@@ -288,6 +293,7 @@
                 <isfalse value="${isMD5ok}"/>
             </condition>
         </fail>
+         -->
     </target>
 
     <target name="compile" depends="get-as3commons.swc"